Home
last modified time | relevance | path

Searched refs:scheme (Results 1 – 25 of 108) sorted by relevance

12345

/llvm-project-15.0.7/clang-tools-extra/clangd/unittests/
H A DURITests.cpp26 MATCHER_P(scheme, S, "") { return arg.scheme() == S; }
55 EXPECT_EQ(parseOrDie("s%2b://%3a/%3").scheme(), "s+"); in TEST()
97 AllOf(scheme("file"), authority("auth"), body("/x/y/z"))); in TEST()
103 AllOf(scheme("file"), authority(""), body("/(x)/y/\\ z"))); in TEST()
105 AllOf(scheme("file"), authority(""), body("/x/y/z"))); in TEST()
107 AllOf(scheme("file"), authority(""), body(""))); in TEST()
109 AllOf(scheme("file"), authority(""), body("/x/y/z%2"))); in TEST()
111 AllOf(scheme("http"), authority("llvm.org"), body(""))); in TEST()
113 AllOf(scheme("http"), authority("llvm.org"), body("/"))); in TEST()
115 AllOf(scheme("http"), authority("llvm.org"), body("/D"))); in TEST()
[all …]
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVAvailability.td59 class MinVersionBase<string name, I32EnumAttr scheme, I32EnumAttrCase min>
63 let queryFnRetType = "llvm::Optional<" # scheme.returnType # ">";
68 "$overall = static_cast<" # scheme.returnType # ">("
72 let instanceType = scheme.cppNamespace # "::" # scheme.className;
74 let instance = scheme.cppNamespace # "::" # scheme.className # "::" #
78 class MaxVersionBase<string name, I32EnumAttr scheme, I32EnumAttrCase max>
82 let queryFnRetType = "llvm::Optional<" # scheme.returnType # ">";
87 "$overall = static_cast<" # scheme.returnType # ">("
91 let instanceType = scheme.cppNamespace # "::" # scheme.className;
93 let instance = scheme.cppNamespace # "::" # scheme.className # "::" #
/llvm-project-15.0.7/lldb/tools/lldb-server/
H A DAcceptor.cpp38 bool FindProtocolByScheme(const char *scheme, in FindProtocolByScheme() argument
41 if (!strcmp(s.m_scheme, scheme)) { in FindProtocolByScheme()
89 if (!FindProtocolByScheme(res->scheme.str().c_str(), socket_protocol)) in Create()
91 res->scheme.str().c_str()); in Create()
93 name = name.drop_front(res->scheme.size() + strlen("://")); in Create()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DUriParser.h18 llvm::StringRef scheme; member
24 return port == R.port && scheme == R.scheme && hostname == R.hostname &&
/llvm-project-15.0.7/clang/test/Rewriter/
H A Drewrite-property-set-cfstring.mm11 @property (retain) NSString *scheme; property
16 @synthesize scheme=_scheme;
19 discoveryInfo.scheme = @"https";
H A Dproperty-dot-syntax.mm31 @property (retain) NSString *scheme; property
43 b.scheme = _schemeName; // error because of this line
/llvm-project-15.0.7/libc/utils/HdrGen/
H A DREADME.md3 LLVM libc uses a header generation scheme to generate public as well as internal
5 which drives this header generation scheme.
/llvm-project-15.0.7/clang/docs/
H A DControlFlowIntegrity.rst80 least one CFI scheme is enabled.
107 This CFI scheme can be enabled on its own using ``-fsanitize=cfi-vcall``.
109 For this scheme to work, all translation units containing the definition
156 For this scheme to work, all translation units containing the definition
165 This scheme checks that non-virtual calls take place using an object of
169 polymorphic class type. This CFI scheme can be enabled on its own using
172 For this scheme to work, all translation units containing the definition
220 This scheme is currently supported on a limited set of targets: x86,
275 This scheme does have its own caveats, however. It does end up breaking
312 This scheme checks that indirect calls via a member function pointer
[all …]
H A DControlFlowIntegrityDesign.rst39 The scheme will cause the virtual tables for A, B and C to be laid out
102 The scheme as described above is the fully general variant of the scheme.
308 This step is common to both the old scheme described above and the interleaving scheme.
341 This step is where the interleaving scheme deviates from the old scheme. Instead of laying out
355 Note that the interleaving scheme in the CFI implementation guarantees both properties above wherea…
544 In the monolithic scheme a call site is instrumented as
552 In the cross-DSO scheme it becomes
763 or call the slow path function (cross-DSO scheme).
783 // (monolithic binary scheme).
785 // (cross-DSO scheme).
[all …]
/llvm-project-15.0.7/mlir/test/Integration/Dialect/SparseTensor/CPU/
H A Dsparse_storage.mlir85 // Inspect storage scheme of Dense.
98 // Inspect storage scheme of CSR.
119 // Inspect storage scheme of DCSR.
150 // Inspect storage scheme of CSC.
171 // Inspect storage scheme of DCSC.
202 // Inspect storage scheme of BlockRow.
226 // Inspect storage scheme of BlockCol.
H A Dsparse_flatten.mlir23 // since, even though it impacts the sparse storage scheme layout,
40 // actual sparse code, initializes a matching sparse storage scheme
/llvm-project-15.0.7/llvm/docs/CommandGuide/
H A Dllvm-bcanalyzer.rst198 encoding scheme.
203 scheme.
208 the Variable Bit Rate encoding scheme.
214 scheme.
218 The total number of bytes saved by using the Variable Bit Rate encoding scheme.
278 integers that use the Variable Bit Rate encoding scheme.
284 Bit Rate encoding scheme.
289 Rate encoding scheme. The percentage is relative to # of VBR Expanded Bytes.
/llvm-project-15.0.7/lldb/source/Utility/
H A DUriParser.cpp21 OS << U.scheme << "://[" << U.hostname << ']'; in operator <<()
36 ret.scheme = uri.substr(0, pos); in Parse()
/llvm-project-15.0.7/libc/docs/
H A Dredirectors.rst8 functions from another fully functional libc implementation. Such a scheme can
13 scheme presented is limited to ELF platforms.
18 The highlevel scheme is as below:
/llvm-project-15.0.7/llvm/test/Transforms/RewriteStatepointsForGC/
H A Dgc-relocate-creation.ll7 ; The old scheme to create a gc.relocate of <2 x i32 addrspace(1)*> addrspace(1)*
9 ; The new scheme will create all gc.relocate to i8 addrspace(1)* type and
/llvm-project-15.0.7/lldb/source/Core/
H A DMangled.cpp205 ManglingScheme scheme = GetManglingScheme(m_mangled.GetStringRef()); in GetRichManglingInfo() local
206 if (skip_mangled_name && skip_mangled_name(m_mangled.GetStringRef(), scheme)) in GetRichManglingInfo()
209 switch (scheme) { in GetRichManglingInfo()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/Android/
H A DPlatformAndroidRemoteGDBServer.cpp124 if (parsed_url->scheme == "unix-connect") in ConnectRemote()
126 else if (parsed_url->scheme == "unix-abstract-connect") in ConnectRemote()
/llvm-project-15.0.7/mlir/utils/vscode/src/
H A DmlirContext.ts37 if (document.uri.scheme !== 'file') {
266 {scheme : 'file', language : languageName, pattern : selectorPattern}
/llvm-project-15.0.7/clang-tools-extra/clangd/test/
H A Dprotocol.test1 # RUN: not clangd -pretty -sync -enable-test-uri-scheme < %s | FileCheck -strict-whitespace %s
2 # RUN: not clangd -pretty -sync -enable-test-uri-scheme < %s 2>&1 | FileCheck -check-prefix=STDERR …
/llvm-project-15.0.7/mlir/test/Integration/Dialect/Vector/CPU/
H A Dtest-sparse-saxpy-jagged-matvec.mlir22 // The sparse storage scheme used is an extended column scheme (also referred
24 // the general sparse row-wise scheme (also called compressed row storage),
H A Dtest-sparse-dot-matvec.mlir22 // The sparse storage scheme used is an extended column scheme (also referred
24 // the general sparse row-wise scheme (also called compressed row storage),
/llvm-project-15.0.7/polly/www/
H A Dmenu.css24 * Color scheme
/llvm-project-15.0.7/llvm/test/Transforms/Attributor/
H A Dnoundef.ll67 ; try to come up with a different scheme to verify the `noundef` is dropped if
124 ; try to come up with a different scheme to verify the `noundef` is dropped if
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DURI.h33 llvm::StringRef scheme() const { return Scheme; } in scheme() function
/llvm-project-15.0.7/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp146 llvm::StringRef scheme; in Connect() local
147 std::tie(scheme, path) = path.split("://"); in Connect()
152 llvm::StringRef, socket_id_callback_type, Status *)>(scheme) in Connect()

12345