Home
last modified time | relevance | path

Searched refs:startswith (Results 1 – 25 of 1096) sorted by relevance

12345678910>>...44

/external/llvm/lib/IR/
DAutoUpgrade.cpp71 if (Name.size() <= 8 || !Name.startswith("llvm.")) in UpgradeIntrinsicFunction1()
78 if (Name.startswith("arm.neon.vclz")) { in UpgradeIntrinsicFunction1()
91 if (Name.startswith("arm.neon.vcnt")) { in UpgradeIntrinsicFunction1()
137 if (Name.startswith("ctlz.") && F->arg_size() == 1) { in UpgradeIntrinsicFunction1()
143 if (Name.startswith("cttz.") && F->arg_size() == 1) { in UpgradeIntrinsicFunction1()
153 if (Name.startswith("masked.load.")) { in UpgradeIntrinsicFunction1()
163 if (Name.startswith("masked.store.")) { in UpgradeIntrinsicFunction1()
180 if (F->arg_size() == 2 && Name.startswith("objectsize.")) { in UpgradeIntrinsicFunction1()
198 bool IsX86 = Name.startswith("x86."); in UpgradeIntrinsicFunction1()
203 (Name.startswith("sse2.pcmpeq.") || in UpgradeIntrinsicFunction1()
[all …]
/external/llvm/utils/
Dsort_includes.py38 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/')):
66 if l.startswith('//') or l.startswith('#define') or l.startswith('#ifndef'):
Dextract_symbols.py133 elif symbol.startswith('??$'):
138 elif symbol.startswith('??_G') or symbol.startswith('??_E'):
142 elif symbol.startswith('??0?$') or symbol.startswith('??1?$'):
177 if calling_convention_decoration and symbol.startswith('_'):
180 if not symbol.startswith('_') and not symbol.startswith('.'):
240 assert arg.startswith('I'), arg
254 elif tmp.startswith('I'):
257 elif tmp.startswith('N'):
260 elif tmp.startswith('L') or tmp.startswith('X'):
263 elif tmp.startswith('E'):
[all …]
/external/swiftshader/third_party/LLVM/lib/Support/
DTriple.cpp293 ArchName.startswith("armv") || in ParseArch()
297 ArchName.startswith("thumbv")) in ParseArch()
299 else if (ArchName.startswith("alpha")) in ParseArch()
349 if (OSName.startswith("auroraux")) in ParseOS()
351 else if (OSName.startswith("cygwin")) in ParseOS()
353 else if (OSName.startswith("darwin")) in ParseOS()
355 else if (OSName.startswith("dragonfly")) in ParseOS()
357 else if (OSName.startswith("freebsd")) in ParseOS()
359 else if (OSName.startswith("ios")) in ParseOS()
361 else if (OSName.startswith("kfreebsd")) in ParseOS()
[all …]
/external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
Dtrace_time_unittest.py40 if not (sys.platform.startswith(trace_time._PLATFORMS['windows'])
41 or sys.platform.startswith(trace_time._PLATFORMS['cygwin'])):
48 if not sys.platform.startswith(trace_time._PLATFORMS['linux']):
54 if not sys.platform.startswith(trace_time._PLATFORMS['mac']):
61 if not (sys.platform.startswith(trace_time._PLATFORMS['windows'])
62 or sys.platform.startswith(trace_time._PLATFORMS['cygwin'])):
72 if not (sys.platform.startswith(trace_time._PLATFORMS['windows'])
73 or sys.platform.startswith(trace_time._PLATFORMS['cygwin'])):
83 if not (sys.platform.startswith(trace_time._PLATFORMS['windows'])
84 or sys.platform.startswith(trace_time._PLATFORMS['cygwin'])):
[all …]
Dtrace_time.py76 if plat.startswith(key):
167 if plat.startswith(_PLATFORMS['cygwin'])
204 if plat.startswith(_PLATFORMS['mac']):
207 elif (plat.startswith(_PLATFORMS['linux'])
208 or plat.startswith(_PLATFORMS['freebsd'])
209 or plat.startswith(_PLATFORMS['bsd'])
210 or plat.startswith(_PLATFORMS['sunos'])):
213 elif (plat.startswith(_PLATFORMS['windows'])
214 or plat.startswith(_PLATFORMS['cygwin'])):
/external/swiftshader/third_party/LLVM/lib/VMCore/
DAutoUpgrade.cpp37 if (Name.size() <= 8 || !Name.startswith("llvm.")) in UpgradeIntrinsicFunction1()
47 if (Name.startswith("atomic.cmp.swap") || in UpgradeIntrinsicFunction1()
48 Name.startswith("atomic.swap") || in UpgradeIntrinsicFunction1()
49 Name.startswith("atomic.load.add") || in UpgradeIntrinsicFunction1()
50 Name.startswith("atomic.load.sub") || in UpgradeIntrinsicFunction1()
51 Name.startswith("atomic.load.and") || in UpgradeIntrinsicFunction1()
52 Name.startswith("atomic.load.nand") || in UpgradeIntrinsicFunction1()
53 Name.startswith("atomic.load.or") || in UpgradeIntrinsicFunction1()
54 Name.startswith("atomic.load.xor") || in UpgradeIntrinsicFunction1()
55 Name.startswith("atomic.load.max") || in UpgradeIntrinsicFunction1()
[all …]
/external/v8/tools/
Dobjdump-v840 if arg.startswith("--start-address="):
42 if arg.startswith("--stop-address="):
54 return stripped.startswith("--") or stripped.startswith(";;")
69 if line.startswith("0x"):
Dfind-commit-for-patch.py35 if line.startswith("diff --git "):
38 assert words[2].startswith("a/") and len(words[2]) > 2
40 elif line.startswith("index "):
44 if old_hash.startswith("0000000"): continue # Ignore new files.
64 if actual_hash.startswith(expected_hash): matched_files += 1
/external/google-benchmark/tools/gbench/
Dutil.py14 _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)]
/external/libyuv/files/tools_libyuv/valgrind/memcheck/
DPRESUBMIT.py44 if line.startswith('#') or not line:
69 if not line.startswith('Memcheck:'):
80 if (line.startswith('fun:') or line.startswith('obj:') or
81 line.startswith('Memcheck:') or line == '}' or
/external/webrtc/tools/valgrind-webrtc/memcheck/
DPRESUBMIT.py44 if line.startswith('#') or not line:
69 if not line.startswith('Memcheck:'):
80 if (line.startswith('fun:') or line.startswith('obj:') or
81 line.startswith('Memcheck:') or line == '}' or
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldChecker.cpp123 if (Expr.startswith("<<") || Expr.startswith(">>")) in getTokenForError()
158 if (Expr.startswith("<<")) in parseBinOpToken()
160 if (Expr.startswith(">>")) in parseBinOpToken()
223 if (!Expr.startswith("(")) in evalDecodeOperand()
234 if (!RemainingExpr.startswith(",")) in evalDecodeOperand()
244 if (!RemainingExpr.startswith(")")) in evalDecodeOperand()
291 if (!Expr.startswith("(")) in evalNextPC()
302 if (!RemainingExpr.startswith(")")) in evalNextPC()
329 if (!Expr.startswith("(")) in evalStubAddr()
340 if (!RemainingExpr.startswith(",")) in evalStubAddr()
[all …]
/external/llvm/tools/llvm-cxxdump/
Dllvm-cxxdump.cpp212 if (SymName.startswith("??_7")) { in dumpCXXData()
220 else if (SymName.startswith("??_8")) { in dumpCXXData()
227 else if (SymName.startswith("??_R4")) { in dumpCXXData()
236 else if (SymName.startswith("??_R3")) { in dumpCXXData()
245 else if (SymName.startswith("??_R2")) { in dumpCXXData()
252 else if (SymName.startswith("??_R1")) { in dumpCXXData()
261 else if (SymName.startswith("??_R0")) { in dumpCXXData()
274 else if (SymName.startswith("_TI") || SymName.startswith("__TI")) { in dumpCXXData()
282 else if (SymName.startswith("_CTA") || SymName.startswith("__CTA")) { in dumpCXXData()
291 else if (SymName.startswith("_CT") || SymName.startswith("__CT")) { in dumpCXXData()
[all …]
/external/python/cpython2/Lib/
DHTMLParser.py158 startswith = rawdata.startswith
159 if startswith('<', i):
162 elif startswith("</", i):
164 elif startswith("<!--", i):
166 elif startswith("<?", i):
168 elif startswith("<!", i):
187 elif startswith("&#", i):
193 if not startswith(';', k-1):
202 elif startswith('&', i):
208 if not startswith(';', k-1):
[all …]
/external/clang/utils/perf-training/
Dperf-helper.py65 first_cmd = next(arg for arg in args if not arg.startswith("--"))
121 ln.startswith('Configured with:') or
122 ln.startswith('Target:') or
123 ln.startswith('Thread model:') or
124 ln.startswith('InstalledDir:') or
125 ln.startswith('LLVM Profile Note') or
148 first_cmd = next(arg for arg in args if not arg.startswith("--"))
174 if not s.startswith(symbol):
188 if not ln.startswith("dtrace-"):
192 if ln.startswith("dtrace-TS: "):
[all …]
/external/clang/utils/
DCmpDriver82 return (filename.startswith('/tmp/', 1) or
83 filename.startswith('/var/', 1))
101 ln.startswith('Target: ') or
102 ln.startswith('Configured with: ') or
103 ln.startswith('Thread model: ') or
104 ln.startswith('gcc version') or
105 ln.startswith('clang version')):
107 elif ln.strip().startswith('"'):
/external/clang/lib/Analysis/
DCocoaConventions.cpp30 if (TDName.startswith(Prefix) && TDName.endswith("Ref")) in isRefType()
33 if (TDName.startswith("xpc_")) in isRefType()
47 return Name.startswith(Prefix); in isRefType()
124 if (suffix.startswith("reate")) { in followsCreateRule()
127 else if (suffix.startswith("opy")) { in followsCreateRule()
/external/tpm2/generator/
Dtpm_table.py177 if not alg_type.startswith('!'):
487 if new_value.startswith('$!ALG'):
490 elif new_value.startswith('$'):
492 elif new_value.startswith('#'):
513 if new_value.startswith('{'):
517 elif new_value.startswith('+'):
519 elif new_value.startswith('#'):
521 elif new_value.startswith('$'):
551 if name.startswith('TPM_'):
641 if type_name.startswith('TPMI_'):
[all …]
/external/clang/docs/tools/
Ddump_format_style.py31 if s.startswith('\n'):
120 if line.startswith('///'):
127 if line.startswith('///'):
129 elif line.startswith('enum'):
133 elif line.startswith('struct'):
146 if line.startswith('///'):
153 if line.startswith('///'):
159 if line.startswith('///'):
168 if line.startswith('///'):
/external/llvm/lib/Passes/
DPassBuilder.cpp268 if (Name.startswith("default") || Name.startswith("lto")) in isModulePassName()
322 if (Name.startswith("default") || Name.startswith("lto")) { in parseModulePassName()
459 if (PipelineText.startswith("loop(")) { in parseLoopPassPipeline()
498 if (PipelineText.startswith("function(")) { in parseFunctionPassPipeline()
512 } else if (PipelineText.startswith("loop(")) { in parseFunctionPassPipeline()
551 if (PipelineText.startswith("cgscc(")) { in parseCGSCCPassPipeline()
565 } else if (PipelineText.startswith("function(")) { in parseCGSCCPassPipeline()
618 if (PipelineText.startswith("module(")) { in parseModulePassPipeline()
632 } else if (PipelineText.startswith("cgscc(")) { in parseModulePassPipeline()
647 } else if (PipelineText.startswith("function(")) { in parseModulePassPipeline()
[all …]
/external/python/cpython2/Lib/lib2to3/pgen2/
Dliterals.py21 assert all.startswith("\\")
25 if tail.startswith("x"):
41 assert s.startswith("'") or s.startswith('"'), repr(s[:1])
/external/python/cpython2/Lib/test/
Dtest_repr.py126 self.assertTrue(s.startswith("<class "))
132 self.assertTrue(repr(fp).startswith(
135 self.assertTrue(repr(fp).startswith(
139 self.assertTrue(repr(lambda x: x).startswith(
148 self.assertTrue(repr(''.split).startswith(
179 self.assertTrue(repr(x).startswith('<read-only buffer for 0x'))
203 self.assertTrue(repr(x).startswith('<staticmethod object at 0x'))
205 self.assertTrue(repr(x).startswith('<classmethod object at 0x'))
284 self.assertTrue(repr(bar.bar).startswith(
294 self.assertTrue(repr(ibaz).startswith(
[all …]
/external/trappy/trappy/
Dsystrace.py37 if line.startswith("<!-- BEGIN TRACE -->") or \
38 line.startswith("<title>Android System Trace</title>"):
41 if line.startswith(' <script class="trace-data"') or \
42 line.startswith(" var linuxPerfData"):
/external/tpm2/
Dparsep328 if buffer[i].startswith('#include'):
30 if buffer[i].startswith(
31 '#ifdef TPM_CC') and buffer[-1].startswith(
40 if line == '' and text[-2].startswith(' ') and text[-5] == '':

12345678910>>...44