HomeSort by: relevance | last modified time | path
    Searched refs:startswith (Results 1 - 25 of 1451) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
Magic.cpp 30 static bool startswith(StringRef Magic, const char (&S)[N]) { function
31 return Magic.startswith(StringRef(S, N - 1));
41 if (startswith(Magic, "\0\0\xFF\xFF")) {
61 if (startswith(Magic, "\0asm"))
68 if (startswith(Magic, "\x01\xDF"))
70 if (startswith(Magic, "\x01\xF7"))
75 if (startswith(Magic, "\xDE\xC0\x17\x0B"))
79 if (startswith(Magic, "BC\xC0\xDE"))
83 if (startswith(Magic, "!<arch>\n") || startswith(Magic, "!<thin>\n")
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/
sort_includes.py 38 if l.startswith('#include'):
44 if look_for_api_header and header.startswith('"'):
48 if (header.startswith('<') or header.startswith('"gtest/') or
49 header.startswith('"isl/') or header.startswith('"json/')):
52 if (header.startswith('"clang/') or header.startswith('"clang-c/') or
53 header.startswith('"polly/')):
56 if (header.startswith('"llvm/') or header.startswith('"llvm-c/'))
    [all...]
chunk-print-before-all.py 27 if line.startswith("*** IR Dump Before "):
32 elif line.startswith("Stack dump:"):
extract_symbols.py 45 if sys.platform.startswith('aix'):
142 elif symbol.startswith('??$'):
147 elif symbol.startswith('??_G') or symbol.startswith('??_E'):
151 elif symbol.startswith('??0?$') or symbol.startswith('??1?$'):
186 if calling_convention_decoration and symbol.startswith('_'):
189 if not symbol.startswith('_') and not symbol.startswith('.'):
211 elif symbol.startswith('_ZNK5clang4Type5getAs')
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
gdbcopyright.py 25 if line.startswith("# Copyright (C) "):
  /src/external/gpl3/gdb.old/dist/gdb/
gdbcopyright.py 25 if line.startswith("# Copyright (C) "):
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/GlobalISel/
CodeExpander.cpp 35 if (Current.startswith("\n")) {
41 if (Current.startswith("\\$") || Current.startswith("\\\\")) {
47 if (Current.startswith("\\")) {
52 if (Current.startswith("${")) {
  /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...]
  /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/
OneTest.py 16 elif not sys.argv[1].startswith("--gtest_filter="):
  /src/external/gpl3/binutils/dist/binutils/
emul_aix.c 94 if (startswith (arg, "-X32_64"))
100 else if (startswith (arg, "-X32"))
106 else if (startswith (arg, "-X64"))
112 else if (startswith (arg, "-g"))
  /src/external/gpl3/binutils.old/dist/binutils/
emul_aix.c 94 if (startswith (arg, "-X32_64"))
100 else if (startswith (arg, "-X32"))
106 else if (startswith (arg, "-X64"))
112 else if (startswith (arg, "-g"))
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CocoaConventions.cpp 29 if (TDName.startswith(Prefix) && TDName.endswith("Ref"))
32 if (TDName.startswith("xpc_"))
46 return Name.startswith(Prefix);
130 if (suffix.startswith("reate")) {
133 else if (suffix.startswith("opy")) {
  /src/external/gpl3/gcc.old/dist/gcc/config/s390/
driver-native.cc 76 if (has_processor == 0 && startswith (buf, "processor"))
135 if (has_features == 0 && startswith (buf, "features"))
151 if (i == 3 && startswith (p, "dfp"))
153 else if (i == 2 && startswith (p, "te"))
155 else if (i == 2 && startswith (p, "vx"))
157 else if (i == 8 && startswith (p, "highgprs"))
  /src/external/gpl3/gcc/dist/gcc/config/s390/
driver-native.cc 76 if (has_processor == 0 && startswith (buf, "processor"))
135 if (has_features == 0 && startswith (buf, "features"))
151 if (i == 3 && startswith (p, "dfp"))
153 else if (i == 2 && startswith (p, "te"))
155 else if (i == 2 && startswith (p, "vx"))
157 else if (i == 8 && startswith (p, "highgprs"))
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
ArgumentsAdjusters.cpp 48 return Arg.startswith(OutputCommand);
52 if (!Arg.startswith("-fcolor-diagnostics") &&
53 !Arg.startswith("-fdiagnostics-color"))
76 if (!Arg.startswith("-o"))
121 if (!UsingClDriver && Arg.startswith("-M"))
125 if (Arg.startswith("/showIncludes") || Arg.startswith("-showIncludes"))
178 llvm::StringRef(Args[I + 1]).startswith("-plugin-arg-") ||
  /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/
OneTest.py 20 elif not sys.argv[1].startswith("--gtest_filter="):
  /src/external/apache2/llvm/dist/llvm/utils/lit/tests/Inputs/googletest-upstream-format/DummySubDir/
OneTest.py 21 elif not sys.argv[1].startswith("--gtest_filter="):
  /src/external/gpl3/gcc.old/dist/contrib/
check-params-in-docs.py 50 if line.startswith(' ' * 2) and not line.startswith(' ' * 8):
63 if line.startswith(token):
70 texi_params = [x for x in texi_params if not x.startswith('aarch64')]
  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/scripts/
unbalanced_allocs.py 33 while line and line.startswith(' #'):
39 if not line.startswith('FREE['):
51 if not line.startswith('MALLOC['):
62 if not line.startswith('MallocFreeTracer: START'):
69 if line.startswith('MallocFreeTracer: STOP'):
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/
Lookup.cpp 101 if (NewName.startswith(NS))
131 assert(QName.startswith("::"));
133 if (Spelling.startswith("::"))
149 if (CurSpelling.startswith("::"))
163 if (!TrimmedQName.startswith(Res->getQualifiedNameAsString()) &&
190 assert(ReplacementString.startswith("::") &&
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/tools/gbench/
util.py 14 _num_magic_bytes = 2 if sys.platform.startswith('win') else 4
36 elif sys.platform.startswith('win'):
96 assert prefix.startswith('--') and prefix.endswith('=')
99 if f.startswith(prefix):
109 assert prefix.startswith('--') and prefix.endswith('=')
110 return [f for f in benchmark_flags if not f.startswith(prefix)]
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/tools/gbench/
util.py 14 _num_magic_bytes = 2 if sys.platform.startswith('win') else 4
34 elif sys.platform.startswith('win'):
93 assert prefix.startswith('--') and prefix.endswith('=')
96 if f.startswith(prefix):
105 assert prefix.startswith('--') and prefix.endswith('=')
106 return [f for f in benchmark_flags if not f.startswith(prefix)]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
ELFAttributes.cpp 26 bool hasTagPrefix = tag.startswith("Tag_");
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUTargetObjectFile.cpp 33 if (SectionName.startswith(".AMDGPU.comment."))
  /src/external/gpl3/binutils/dist/bfd/
cpu-tic4x.c 35 else if (startswith (string, "tms320"))

Completed in 50 milliseconds

1 2 3 4 5 6 7 8 91011>>