/llvm-project/clang-tools-extra/clangd/unittests/ |
H A D | URITests.cpp | 26 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() 100 AllOf(scheme("file"), authority("au=th"), 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() [all …]
|
/llvm-project/mlir/include/mlir/Dialect/SPIRV/IR/ |
H A D | SPIRVAvailability.td | 59 class MinVersionBase<string name, EnumAttr scheme, I32EnumAttrCase min> 63 let queryFnRetType = "std::optional<" # scheme.returnType # ">"; 68 "$overall = static_cast<" # scheme.returnType # ">(" 72 let instanceType = scheme.cppNamespace # "::" # scheme.enum.className; 74 let instance = scheme.cppNamespace # "::" # scheme.enum.className # "::" # 78 class MaxVersionBase<string name, EnumAttr scheme, I32EnumAttrCase max> 82 let queryFnRetType = "std::optional<" # scheme.returnType # ">"; 87 "$overall = static_cast<" # scheme.returnType # ">(" 91 let instanceType = scheme.cppNamespace # "::" # scheme.enum.className; 93 let instance = scheme.cppNamespace # "::" # scheme.enum.className # "::" #
|
/llvm-project/mlir/utils/vscode/src/MLIR/ |
H A D | bytecodeProvider.ts | 37 vscode.workspace.fs.delete(uri.with({scheme : "file"})); 40 return vscode.workspace.fs.stat(uri.with({scheme : "file"})); 44 vscode.workspace.fs.rename(oldUri.with({scheme : "file"}), 45 newUri.with({scheme : "file"}), options); 48 vscode.workspace.fs.createDirectory(uri.with({scheme : "file"})); 127 await vscode.workspace.fs.writeFile(uri.with({scheme : "file"}), 180 document.uri.with({scheme : "mlir.bytecode-mlir"}),
|
/llvm-project/lldb/tools/lldb-server/ |
H A D | Acceptor.cpp |
|
/llvm-project/lldb/include/lldb/Utility/ |
H A D | UriParser.h | 22 llvm::StringRef scheme; member 28 return port == R.port && scheme == R.scheme && hostname == R.hostname &&
|
/llvm-project/clang/test/Rewriter/ |
H A D | rewrite-property-set-cfstring.mm | 10 @property (retain) NSString *scheme; property 15 @synthesize scheme=_scheme; 18 discoveryInfo.scheme = @"https";
|
H A D | property-dot-syntax.mm | 29 @property (retain) NSString *scheme; property 41 b.scheme = _schemeName; // error because of this line
|
/llvm-project/mlir/test/Integration/Dialect/SparseTensor/CPU/ |
H A D | sparse_storage.mlir | 109 // Inspect storage scheme of Dense. 121 // Inspect storage scheme of CSR. 136 // Inspect storage scheme of DCSR. 152 // Inspect storage scheme of CSC. 166 // Inspect storage scheme of DCSC. 182 // Inspect storage scheme of BlockRow. 196 // Inspect storage scheme of BlockCol.
|
H A D | sparse_flatten.mlir | 39 // since, even though it impacts the sparse storage scheme layout, 60 // actual sparse code, initializes a matching sparse storage scheme
|
/llvm-project/clang/docs/ |
H A D | ControlFlowIntegrity.rst | 80 least one CFI scheme is enabled. 104 This scheme checks that virtual calls take place using a vptr of the correct 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 123 Note that this scheme has not yet been optimized for binary size; an increase 129 This scheme checks that pointer casts are made to an object of the correct 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 [all …]
|
H A D | ControlFlowIntegrityDesign.rst | 11 This scheme works by allocating, for each static type used to make a virtual 39 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. 257 Of course, this alignment scheme works best if the address points are 265 This scheme introduces tradeoffs between decreased space overhead for 286 At a high level, the interleaving scheme consists of three steps: 1) split virtual table groups into 290 The interleaving scheme implemented in LLVM is inspired by [1]_ but has its own 299 The interleaving scheme, however, can only work with individual virtual tables so it must split the… 300 In comparison, the old scheme does not require the splitting but it is more efficient when the comb… 308 This step is common to both the old scheme described above and the interleaving scheme. [all …]
|
/llvm-project/libc/utils/HdrGen/ |
H A D | README.md |
|
/llvm-project/llvm/docs/CommandGuide/ |
H A D | llvm-bcanalyzer.rst | 198 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/mlir/include/mlir/Dialect/SparseTensor/IR/ |
H A D | SparseTensorTypes.td | 30 let summary = "Structured metadata for sparse tensor low-level storage scheme"; 33 Values with storage_specifier types represent aggregated storage scheme 42 // A storage specifier that can be used to store storage scheme metadata from CSR matrix. 63 // fields that are irrelavant to sparse tensor storage scheme.
|
/llvm-project/lldb/source/Utility/ |
H A D | UriParser.cpp | 22 OS << U.scheme << "://[" << U.hostname << ']'; in operator <<() 37 ret.scheme = uri.substr(0, pos); in Parse()
|
/llvm-project/mlir/lib/Tools/lsp-server-support/ |
H A D | Protocol.cpp | 128 static bool isStructurallyValidScheme(StringRef scheme) { in isStructurallyValidScheme() argument 129 if (scheme.empty()) in isStructurallyValidScheme() 131 if (!llvm::isAlpha(scheme[0])) in isStructurallyValidScheme() 133 return llvm::all_of(llvm::drop_begin(scheme), [](char c) { in isStructurallyValidScheme() 139 StringRef scheme) { in uriFromAbsolutePath() argument 153 std::string uri = scheme.str() + ":"; in uriFromAbsolutePath() 233 StringRef scheme) { in fromFile() argument 235 uriFromAbsolutePath(absoluteFilepath, scheme); in fromFile() 241 StringRef URIForFile::scheme() const { return uri().split(':').first; } in scheme() function in URIForFile 243 void URIForFile::registerSupportedScheme(StringRef scheme) { in registerSupportedScheme() argument [all …]
|
/llvm-project/llvm/test/Transforms/RewriteStatepointsForGC/ |
H A D | gc-relocate-creation.ll | 6 ; The old scheme to create a gc.relocate of ptr addrspace(1) 8 ; The new scheme will create all gc.relocate to ptr addrspace(1) type and
|
/llvm-project/lldb/source/Core/ |
H A D | Mangled.cpp | 219 ManglingScheme scheme = GetManglingScheme(m_mangled.GetStringRef()); in GetRichManglingInfo() 220 if (skip_mangled_name && skip_mangled_name(m_mangled.GetStringRef(), scheme)) in GetRichManglingInfo() 223 switch (scheme) { in GetRichManglingInfo() 262 // Rich demangling scheme is not supported in GetRichManglingInfo() 389 // Itanium scheme, and defined in a compilation unit within the same module as 217 ManglingScheme scheme = GetManglingScheme(m_mangled.GetStringRef()); GetRichManglingInfo() local
|
/llvm-project/lldb/source/Plugins/Platform/Android/ |
H A D | PlatformAndroidRemoteGDBServer.cpp | 130 if (parsed_url->scheme == "unix-connect") in ConnectRemote() 132 else if (parsed_url->scheme == "unix-abstract-connect") in ConnectRemote()
|
/llvm-project/clang-tools-extra/clangd/test/ |
H A D | protocol.test | 1 # 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/mlir/lib/ExecutionEngine/SparseTensor/ |
H A D | CMakeLists.txt | 6 # Consequently, we avoid using the "mlir_xxx_utils" naming scheme, since
|
/llvm-project/mlir/test/Integration/Dialect/Vector/CPU/ |
H A D | sparse-saxpy-jagged-matvec.mlir | 22 // 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 D | sparse-dot-matvec.mlir | 22 // 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/polly/www/ |
H A D | menu.css | 24 * Color scheme
|
/llvm-project/llvm/test/Transforms/Attributor/ |
H A D | noundef.ll | 65 ; try to come up with a different scheme to verify the `noundef` is dropped if 132 ; try to come up with a different scheme to verify the `noundef` is dropped if
|