Searched refs:QuotingType (Results 1 – 17 of 17) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | YAMLTraits.h | 124 enum class QuotingType { None, Single, Double }; enum 279 using Signature_mustQuote = QuotingType (*)(StringRef); 509 inline QuotingType needsQuotes(StringRef S) { 511 return QuotingType::Single; 513 return QuotingType::Single; 515 return QuotingType::Single; 517 return QuotingType::Single; 519 return QuotingType::Single; 1348 void scalarString(StringRef &, QuotingType) override; 1426 static QuotingType mustQuote(StringRef) { return QuotingType::None; } [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
D | YAMLTraits.cpp | 334 void Input::scalarString(StringRef &S, QuotingType) { in scalarString() argument 342 void Input::blockScalarString(StringRef &S) { scalarString(S, QuotingType::None); } in blockScalarString() 621 void Output::scalarString(StringRef &S, QuotingType MustQuote) { in scalarString() 629 if (MustQuote == QuotingType::None) { in scalarString() 640 const char *const Quote = MustQuote == QuotingType::Single ? "'" : "\""; in scalarString() 646 if (MustQuote == QuotingType::Double) { in scalarString()
|
D | Statistic.cpp | 214 assert(yaml::needsQuotes(Stat->getDebugType()) == yaml::QuotingType::None && in PrintStatisticsJSON() 216 assert(yaml::needsQuotes(Stat->getName()) == yaml::QuotingType::None && in PrintStatisticsJSON()
|
D | Timer.cpp | 380 assert(yaml::needsQuotes(Name) == yaml::QuotingType::None && in printJSONValue() 382 assert(yaml::needsQuotes(R.Name) == yaml::QuotingType::None && in printJSONValue()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/ |
D | DebugMap.h | 242 static QuotingType mustQuote(StringRef) { return QuotingType::Single; } in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/ |
D | CodeViewYAMLTypeHashing.h | 59 LLVM_YAML_DECLARE_SCALAR_TRAITS(CodeViewYAML::GlobalHash, QuotingType::None)
|
D | CodeViewYAMLTypes.h | 63 LLVM_YAML_DECLARE_SCALAR_TRAITS(codeview::GUID, QuotingType::Single)
|
D | YAML.h | 110 static QuotingType mustQuote(StringRef S) { return needsQuotes(S); }
|
D | MachOYAML.h | 264 static QuotingType mustQuote(StringRef S); in LLVM_YAML_IS_SEQUENCE_VECTOR() 274 static QuotingType mustQuote(StringRef S); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-exegesis/lib/ |
D | BenchmarkResult.cpp | 111 static QuotingType mustQuote(StringRef) { return QuotingType::Single; } in mustQuote()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | MIRYamlMapping.h | 59 static QuotingType mustQuote(StringRef S) { return needsQuotes(S); } 76 static QuotingType mustQuote(StringRef S) { return needsQuotes(S); } 123 static QuotingType mustQuote(StringRef Scalar) {
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLSymbols.cpp | 46 LLVM_YAML_DECLARE_SCALAR_TRAITS(APSInt, QuotingType::None) in LLVM_YAML_IS_SEQUENCE_VECTOR() 47 LLVM_YAML_DECLARE_SCALAR_TRAITS(TypeIndex, QuotingType::None) in LLVM_YAML_IS_SEQUENCE_VECTOR() 66 LLVM_YAML_DECLARE_SCALAR_TRAITS(TypeName, QuotingType::Single) in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
D | MachOYAML.cpp | 55 QuotingType ScalarTraits<char_16>::mustQuote(StringRef S) { in mustQuote() 80 QuotingType ScalarTraits<uuid_t>::mustQuote(StringRef S) { in mustQuote()
|
D | CodeViewYAMLTypes.cpp | 51 LLVM_YAML_DECLARE_SCALAR_TRAITS(TypeIndex, QuotingType::None) 52 LLVM_YAML_DECLARE_SCALAR_TRAITS(APSInt, QuotingType::None)
|
D | CodeViewYAMLDebugSections.cpp | 69 LLVM_YAML_DECLARE_SCALAR_TRAITS(HexFormattedString, QuotingType::None)
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/ |
D | YAMLIOTest.cpp | 936 static QuotingType mustQuote(StringRef) { return QuotingType::Single; } in mustQuote() 1140 static QuotingType mustQuote(StringRef) { return QuotingType::None; } in mustQuote() 1151 static QuotingType mustQuote(StringRef S) { in mustQuote() 2310 static QuotingType mustQuote(StringRef S) { return QuotingType::None; } in mustQuote()
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | YamlIO.rst | 469 static QuotingType mustQuote(StringRef) { return QuotingType::Single; }
|