HomeSort by: relevance | last modified time | path
    Searched refs:StartsWith (Results 1 - 17 of 17) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
RemarkFormat.cpp 38 .StartsWith("--- ", Format::YAML) // This is only an assumption.
39 .StartsWith(remarks::Magic, Format::YAMLStrTab)
40 .StartsWith(remarks::ContainerMagic, Format::Bitstream)
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmLexer.cpp 35 AllowAtInIdentifier = !StringRef(MAI.getCommentString()).startswith("@");
607 if (Res.startswith("\'\\")) {
881 .StartsWith("call16", {AsmToken::PercentCall16, 7})
882 .StartsWith("call_hi", {AsmToken::PercentCall_Hi, 8})
883 .StartsWith("call_lo", {AsmToken::PercentCall_Lo, 8})
884 .StartsWith("dtprel_hi", {AsmToken::PercentDtprel_Hi, 10})
885 .StartsWith("dtprel_lo", {AsmToken::PercentDtprel_Lo, 10})
886 .StartsWith("got_disp", {AsmToken::PercentGot_Disp, 9})
887 .StartsWith("got_hi", {AsmToken::PercentGot_Hi, 7})
888 .StartsWith("got_lo", {AsmToken::PercentGot_Lo, 7}
    [all...]
WasmAsmParser.cpp 149 .StartsWith(".data", SectionKind::getData())
150 .StartsWith(".tdata", SectionKind::getThreadData())
151 .StartsWith(".tbss", SectionKind::getThreadBSS())
152 .StartsWith(".rodata", SectionKind::getReadOnly())
153 .StartsWith(".text", SectionKind::getText())
154 .StartsWith(".custom_section", SectionKind::getMetadata())
155 .StartsWith(".bss", SectionKind::getBSS())
158 .StartsWith(".init_array", SectionKind::getData())
159 .StartsWith(".debug_", SectionKind::getMetadata())
  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPConstants.h 88 bool StartsWith;
97 #define OMP_ASSUME_CLAUSE(Identifier, StartsWith, HasDirectiveList, \
99 {Identifier, StartsWith, HasDirectiveList, HasExpression},
  /src/external/apache2/llvm/dist/llvm/lib/Support/
Triple.cpp 287 .StartsWith("bpf", BPFArch)
387 (ArchName.startswith("v2") || ArchName.startswith("v3")))
459 .StartsWith("kalimba", Triple::kalimba)
473 if (ArchName.startswith("arm") || ArchName.startswith("thumb") ||
474 ArchName.startswith("aarch64"))
476 if (ArchName.startswith("bpf"))
505 .StartsWith("ananas", Triple::Ananas)
506 .StartsWith("cloudabi", Triple::CloudABI
    [all...]
ARMTargetParser.cpp 233 if (Arch.startswith("armeb") || Arch.startswith("thumbeb") ||
234 Arch.startswith("aarch64_be"))
237 if (Arch.startswith("arm") || Arch.startswith("thumb")) {
244 if (Arch.startswith("aarch64") || Arch.startswith("aarch64_32"))
253 .StartsWith("aarch64", ISAKind::AARCH64)
254 .StartsWith("arm64", ISAKind::AARCH64)
255 .StartsWith("thumb", ISAKind::THUMB
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/AsmParser/
LanaiAsmParser.cpp 1073 (Mnemonic[0] == 's' && !Mnemonic.startswith("sel") &&
1074 !Mnemonic.startswith("st"))) {
1095 if (Mnemonic.startswith("sel") ||
1096 (!Mnemonic.endswith(".f") && !Mnemonic.startswith("st"))) {
1105 if (Mnemonic.startswith("sel")) {
1172 .StartsWith("addc", true)
1173 .StartsWith("add", true)
1174 .StartsWith("and", true)
1175 .StartsWith("sh", true)
1176 .StartsWith("subb", true
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Basic/
SourceManager.cpp 86 .StartsWith(llvm::StringLiteral::withInnerNUL("\x00\x00\xFE\xFF"),
88 .StartsWith(llvm::StringLiteral::withInnerNUL("\xFF\xFE\x00\x00"),
90 .StartsWith("\xFE\xFF", "UTF-16 (BE)")
91 .StartsWith("\xFF\xFE", "UTF-16 (LE)")
92 .StartsWith("\x2B\x2F\x76", "UTF-7")
93 .StartsWith("\xF7\x64\x4C", "UTF-1")
94 .StartsWith("\xDD\x73\x66\x73", "UTF-EBCDIC")
95 .StartsWith("\x0E\xFE\xFF", "SCSU")
96 .StartsWith("\xFB\xEE\x28", "BOCU-1")
97 .StartsWith("\x84\x31\x95\x33", "GB-18030"
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ExprInspectionChecker.cpp 95 .StartsWith("clang_analyzer_explain",
101 .StartsWith("clang_analyzer_dump",
114 .StartsWith("clang_analyzer_isTainted",
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
StringSwitch.h 81 StringSwitch& StartsWith(StringLiteral S, T Value) {
82 if (!Result && Str.startswith(S)) {
  /src/external/apache2/llvm/dist/llvm/tools/llvm-nm/
llvm-nm.cpp 721 if (!Name.startswith("_Z"))
957 if ((*NameOrErr).startswith(".debug"))
978 .StartsWith(".debug", 'N')
979 .StartsWith(".sxdata", 'N')
996 if (NameOrErr->startswith(".idata"))
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseOpenMP.cpp 1556 if (ACMI.StartsWith)
1557 SS.StartsWith(ACMI.Identifier, ACMIdx++);
1603 if (ACMI.StartsWith)
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
BackendUtil.cpp 539 .StartsWith("list=", llvm::BasicBlockSection::List)
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/
gmock-matchers.h 790 // Implements the polymorphic StartsWith(substring) matcher, which
3762 // Property(&Foo::str, StartsWith("hi"))
3820 // ResultOf(f, StartsWith("hi"))
3872 inline PolymorphicMatcher<internal::StartsWithMatcher<std::string> > StartsWith(
3925 StartsWith(const std::wstring& prefix) {
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 96 .StartsWith("\xEF\xBB\xBF", 3) // UTF-8 BOM
2878 if (!StringRef(CurPtr, BufferEnd - CurPtr).startswith("<<<<<<<") &&
2879 !StringRef(CurPtr, BufferEnd - CurPtr).startswith(">>>> "))
  /src/external/apache2/llvm/dist/llvm/lib/Object/
WasmObjectFile.cpp 998 } else if (Sec.Name.startswith("reloc.")) {
1796 .StartsWith("reloc.", WASM_SEC_ORDER_RELOC)
  /src/external/apache2/llvm/dist/llvm/lib/IR/
AutoUpgrade.cpp 97 Name.startswith("sse2.padds.") || // Added in 8.0
98 Name.startswith("sse2.psubs.") || // Added in 8.0
99 Name.startswith("sse2.paddus.") || // Added in 8.0
100 Name.startswith("sse2.psubus.") || // Added in 8.0
101 Name.startswith("avx2.padds.") || // Added in 8.0
102 Name.startswith("avx2.psubs.") || // Added in 8.0
103 Name.startswith("avx2.paddus.") || // Added in 8.0
104 Name.startswith("avx2.psubus.") || // Added in 8.0
105 Name.startswith("avx512.padds.") || // Added in 8.0
106 Name.startswith("avx512.psubs.") || // Added in 8.
    [all...]

Completed in 87 milliseconds