Home
last modified time | relevance | path

Searched refs:startswith (Results 1 - 25 of 954) sorted by relevance

12345678910>>...39

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DAutoUpgrade.cpp82 Name.startswith("sse2.padds.") || // Added in 8.0 in ShouldUpgradeX86Intrinsic()
83 Name.startswith("sse2.psubs.") || // Added in 8.0 in ShouldUpgradeX86Intrinsic()
84 Name.startswith("sse2.paddus.") || // Added in 8.0 in ShouldUpgradeX86Intrinsic()
85 Name.startswith("sse2.psubus.") || // Added in 8.0 in ShouldUpgradeX86Intrinsic()
86 Name.startswith("avx2.padds.") || // Added in 8.0 in ShouldUpgradeX86Intrinsic()
87 Name.startswith("avx2.psubs.") || // Added in 8.0 in ShouldUpgradeX86Intrinsic()
88 Name.startswith("avx2.paddus.") || // Added in 8.0 in ShouldUpgradeX86Intrinsic()
89 Name.startswith("avx2.psubus.") || // Added in 8.0 in ShouldUpgradeX86Intrinsic()
90 Name.startswith("avx512.padds.") || // Added in 8.0 in ShouldUpgradeX86Intrinsic()
91 Name.startswith("avx51 in ShouldUpgradeX86Intrinsic()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
H A DMagic.cpp29 static bool startswith(StringRef Magic, const char (&S)[N]) { in startswith() function
30 return Magic.startswith(StringRef(S, N - 1)); in startswith()
40 if (startswith(Magic, "\0\0\xFF\xFF")) { in identify_magic()
60 if (startswith(Magic, "\0asm")) in identify_magic()
67 if (startswith(Magic, "\x01\xDF")) in identify_magic()
69 if (startswith(Magic, "\x01\xF7")) in identify_magic()
74 if (startswith(Magic, "\xDE\xC0\x17\x0B")) in identify_magic()
78 if (startswith(Magic, "BC\xC0\xDE")) in identify_magic()
82 if (startswith(Magic, "!<arch>\n") || startswith(Magi in identify_magic()
[all...]
/third_party/mesa3d/src/freedreno/decode/
H A Dcrashdec.c169 startswith(const char *line, const char *start) in startswith() function
229 if (startswith(line, " - id:")) { in decode_ringbuffer()
232 } else if (startswith(line, " iova:")) { in decode_ringbuffer()
234 } else if (startswith(line, " rptr:")) { in decode_ringbuffer()
236 } else if (startswith(line, " wptr:")) { in decode_ringbuffer()
238 } else if (startswith(line, " size:")) { in decode_ringbuffer()
240 } else if (startswith(line, " data: !!ascii85 |")) { in decode_ringbuffer()
262 if (startswith(line, " iova:")) { in decode_gmu_log()
264 } else if (startswith(line, " size:")) { in decode_gmu_log()
266 } else if (startswith(lin in decode_gmu_log()
[all...]
/third_party/node/deps/v8/tools/testrunner/local/
H A Dutils.py61 if line.startswith('#'): continue
103 facilities = "".join(x for x in cpuinfo_list if x.startswith("facilities"))
121 if at_platform.startswith('power6'):
123 elif at_platform.startswith('power7'):
125 elif at_platform.startswith('power8'):
127 elif at_platform.startswith('power9'):
129 elif at_platform.startswith('power10'):
165 not arch.startswith(machine))
173 if machine.startswith('arm'):
/third_party/libabigail/
H A Dgen-changelog.py35 lines = [x.strip() for x in lines if x.strip() and not x.startswith('git-svn-id')]
38 if l.startswith('* '):
43 subject_line_index = 0 if lines[1].startswith('*') else 1;
47 if lines[i].startswith('*'):
55 if fields[2].startswith('+') or fields[2].startswith('-'):
78 if l.startswith('Signed-off-by:'):
101 if lin.startswith("--START-COMMIT--"):
113 elif lin.startswith("--END-COMMIT--"):
/third_party/cups-filters/filter/foomatic-rip/
H A Dpostscript.c43 if (startswith(line, "%%BeginFeature:")) in line_type()
47 if (!startswith(p, "%%")) in line_type()
51 if (startswith(p, "FoomaticRIPOptionSetting:")) in line_type()
391 if ((line->data[0] == '%' && startswith(line->data, "%!PS-Adobe-")) || in _print_ps()
392 (line->data[1] == '%' && startswith(line->data, "%!PS-Adobe-"))) in _print_ps()
419 if (startswith(line->data, "%")) { in _print_ps()
420 if (startswith(line->data, "%%BeginDocument")) { in _print_ps()
427 else if (nestinglevel > 0 && startswith(line->data, "%%EndDocument")) { in _print_ps()
432 else if (nestinglevel == 0 && startswith(line->data, "%%Creator")) { in _print_ps()
450 else if (nestinglevel == 0 && startswith(lin in _print_ps()
[all...]
/third_party/python/Objects/
H A Dtypeslots.py16 if member.startswith("tp_"):
18 elif member.startswith("am_"):
21 elif member.startswith("nb_"):
24 elif member.startswith("mp_"):
27 elif member.startswith("sq_"):
30 elif member.startswith("bf_"):
/third_party/python/Tools/scripts/
H A Drun_tests.py18 return arg.startswith('-j') or arg.startswith('--multiprocess')
22 return arg.startswith('-u') or arg.startswith('--use')
25 return arg.startswith('-p') or arg.startswith('--python')
49 if not name.startswith(('PYTHON', '_PYTHON')) or name in keep
/third_party/python/Lib/email/mime/
H A Dimage.py74 if h.startswith(b'\211PNG\r\n\032\n'):
95 if h.startswith(b'\001\332'):
126 if h.startswith(b'\x59\xA6\x6A\x95'):
133 if h.startswith(b'#define '):
139 if h.startswith(b'BM'):
145 if h.startswith(b'RIFF') and h[8:12] == b'WEBP':
151 if h.startswith(b'\x76\x2f\x31\x01'):
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
H A 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 evalStubOrGOTAddr()
[all...]
/third_party/node/tools/
H A Dmkssldef.py16 while filenames and filenames[0].startswith('-'):
19 elif option.startswith('-C'): categories += option[2:].split(',')
20 elif option.startswith('-D'): defines += option[2:].split(',')
21 elif option.startswith('-X'): excludes += option[2:].split(',')
22 elif option.startswith('-B'): bases += option[2:].split(',')
38 if expr.startswith('!'): return not expr[1:] in rules
/third_party/python/Lib/
H A Dimghdr.py52 if h.startswith(b'\211PNG\r\n\032\n'):
73 if h.startswith(b'\001\332'):
104 if h.startswith(b'\x59\xA6\x6A\x95'):
111 if h.startswith(b'#define '):
117 if h.startswith(b'BM'):
123 if h.startswith(b'RIFF') and h[8:12] == b'WEBP':
129 if h.startswith(b'\x76\x2f\x31\x01'):
/third_party/node/deps/v8/tools/
H A 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"):
H A Dfind-commit-for-patch.py38 if line.startswith("diff --git "):
41 assert words[2].startswith("a/") and len(words[2]) > 2
43 elif line.startswith("index "):
47 if old_hash.startswith("0000000"): continue # Ignore new files.
67 if actual_hash.startswith(expected_hash): matched_files += 1
/third_party/gn/build/
H A Dgen.py34 if self._platform.startswith('linux'):
36 elif self._platform.startswith('darwin'):
38 elif self._platform.startswith('mingw'):
40 elif self._platform.startswith('msys'):
42 elif self._platform.startswith('win'):
44 elif self._platform.startswith('aix'):
46 elif self._platform.startswith('fuchsia'):
48 elif self._platform.startswith('freebsd'):
50 elif self._platform.startswith('netbsd'):
52 elif self._platform.startswith('openbs
[all...]
/third_party/mbedtls/tests/scripts/
H A Dset_psa_test_dependencies.py96 if dep.startswith('!'):
102 if dep.startswith('PSA_WANT_ECC_'):
104 return dep.startswith('PSA_WANT_')
129 if symbol.startswith('PSA_ALG_CATEGORY_') or \
130 symbol.startswith('PSA_KEY_TYPE_CATEGORY_'):
147 arguments[-1].startswith('PSA_ERROR_') and \
151 arguments[-1].startswith('PSA_ERROR_'):
/third_party/nghttp2/
H A Dhelp2rst.py92 if line.startswith(' ') and in_arg:
93 if not line.startswith(arg_indent):
116 if line.startswith(' <'):
126 if line.startswith(' ('):
136 if line.startswith(' -'):
150 if not line.startswith(' ') and line.endswith(':'):
178 if text.strip().startswith('Default: '):
/third_party/python/PC/layout/support/
H A Dfilesets.py19 elif p.startswith("*"):
31 or any(map(bn.startswith, self._prefixes))
47 if p.startswith("*."):
49 elif p.startswith("*"):
53 elif p.startswith("."):
65 or any(map(bn.startswith, self._prefixes))
/third_party/node/deps/v8/tools/testrunner/outproc/
H A Dmessage.py30 if line.startswith("#") or not line.strip():
63 string.startswith("==") or
64 string.startswith("**") or
65 string.startswith("ANDROID") or
67 string.startswith('WARNING: linker:')
/third_party/node/tools/gyp/pylib/gyp/
H A Dwin_tool.py145 not line.startswith(" Creating library ")
146 and not line.startswith("Generating code")
147 and not line.startswith("Finished generating code")
307 processing = {os.path.basename(x) for x in lines if x.startswith(prefixes)}
309 if not line.startswith(prefixes) and line not in processing:
322 not line.startswith("Copyright (C) Microsoft Corporation")
323 and not line.startswith("Microsoft (R) Macro Assembler")
324 and not line.startswith(" Assembling: ")
340 not line.startswith("Microsoft (R) Windows (R) Resource Compiler")
341 and not line.startswith("Copyrigh
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dwin_tool.py145 not line.startswith(" Creating library ")
146 and not line.startswith("Generating code")
147 and not line.startswith("Finished generating code")
306 processing = {os.path.basename(x) for x in lines if x.startswith(prefixes)}
308 if not line.startswith(prefixes) and line not in processing:
321 not line.startswith("Copyright (C) Microsoft Corporation")
322 and not line.startswith("Microsoft (R) Macro Assembler")
323 and not line.startswith(" Assembling: ")
339 not line.startswith("Microsoft (R) Windows (R) Resource Compiler")
340 and not line.startswith("Copyrigh
[all...]
/third_party/skia/tools/
H A Dbloaty_treemap.py76 if filepath.startswith("[") or symbol.startswith("["):
80 while filepath.startswith("../"):
84 if filepath.startswith("/"):
/third_party/python/Lib/html/
H A Dparser.py167 startswith = rawdata.startswith
168 if startswith('<', i):
171 elif startswith("</", i):
173 elif startswith("<!--", i):
175 elif startswith("<?", i):
177 elif startswith("<!", i):
199 elif startswith("&#", i):
205 if not startswith(';', k-1):
214 elif startswith('
[all...]
/third_party/python/Lib/lib2to3/pgen2/
H A Dliterals.py21 assert all.startswith("\\")
25 if tail.startswith("x"):
41 assert s.startswith("'") or s.startswith('"'), repr(s[:1])
/third_party/benchmark/tools/gbench/
H A Dutil.py16 _num_magic_bytes = 2 if sys.platform.startswith('win') else 4
38 elif sys.platform.startswith('win'):
98 assert prefix.startswith('--') and prefix.endswith('=')
101 if f.startswith(prefix):
111 assert prefix.startswith('--') and prefix.endswith('=')
112 return [f for f in benchmark_flags if not f.startswith(prefix)]

Completed in 11 milliseconds

12345678910>>...39