Home
last modified time | relevance | path

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

12345678910>>...26

/external/llvm/utils/
Dsort_includes.py37 if l.startswith('#include'):
43 if look_for_api_header and header.startswith('"'):
47 if header.startswith('<') or header.startswith('"gtest/'):
50 if (header.startswith('"llvm/') or header.startswith('"llvm-c/') or
51 header.startswith('"clang/') or header.startswith('"clang-c/')):
61 if l.startswith('//') or l.startswith('#define') or l.startswith('#ifndef'):
/external/llvm/lib/IR/
DAutoUpgrade.cpp49 if (Name.size() <= 8 || !Name.startswith("llvm.")) in UpgradeIntrinsicFunction1()
56 if (Name.startswith("arm.neon.vclz")) { in UpgradeIntrinsicFunction1()
69 if (Name.startswith("arm.neon.vcnt")) { in UpgradeIntrinsicFunction1()
77 if (Name.startswith("ctlz.") && F->arg_size() == 1) { in UpgradeIntrinsicFunction1()
83 if (Name.startswith("cttz.") && F->arg_size() == 1) { in UpgradeIntrinsicFunction1()
92 if (Name.startswith("x86.sse2.pcmpeq.") || in UpgradeIntrinsicFunction1()
93 Name.startswith("x86.sse2.pcmpgt.") || in UpgradeIntrinsicFunction1()
94 Name.startswith("x86.avx2.pcmpeq.") || in UpgradeIntrinsicFunction1()
95 Name.startswith("x86.avx2.pcmpgt.") || in UpgradeIntrinsicFunction1()
96 Name.startswith("x86.avx.vpermil.") || in UpgradeIntrinsicFunction1()
[all …]
/external/chromium_org/tools/git/
Dgit-diff-ide.py51 if (line.startswith('diff ') or
52 line.startswith('index ') or
53 line.startswith('--- ')):
59 if line.startswith('+++ '):
69 if line.startswith('@@ '):
84 if line.startswith(' ') or line.startswith('+'):
/external/chromium_org/tools/deep_memory_profiler/lib/
Dpageframe.py51 if encoded_pfn.startswith('<'):
138 if line.startswith('GLOBAL_STATS:') or line.startswith('STACKTRACES:'):
140 elif line.startswith('PF: '):
152 elif line.startswith('PageSize: '):
154 elif line.startswith('PFN: '):
156 elif line.startswith('PageFrame: '):
158 elif line.startswith('Time: '):
160 elif line.startswith('CommandLine: '):
162 elif line.startswith('Reason: '):
Ddump.py158 if line and not line.startswith('#')]
193 lambda n: not self._lines[n].startswith(headers))
198 if self._lines[ln].startswith('heap profile: '):
246 if self._lines[ln].startswith('Time:'):
256 elif self._lines[ln].startswith('Reason:'):
258 elif self._lines[ln].startswith('PageSize: '):
260 elif self._lines[ln].startswith('CommandLine:'):
262 elif (self._lines[ln].startswith('PageFrame: ') or
263 self._lines[ln].startswith('PFN: ')):
264 if self._lines[ln].startswith('PageFrame: '):
[all …]
/external/chromium_org/printing/
Dcups_config_helper.py37 if flag.startswith('-l'):
39 elif (flag.startswith('-L') or flag.startswith('-Wl,')):
41 elif (flag.startswith('-I') or flag.startswith('-D')):
/external/chromium_org/tools/
Dsort-headers.py45 if line.startswith(prefix):
52 if line.startswith('<windows.h>'): # Must be before e.g. shellapi.h
54 if line.startswith('<atlbase.h>'): # Must be before atlapp.h.
56 if line.startswith('<unknwn.h>'): # Must be before e.g. intshcut.h
60 if line.startswith('<'):
71 return line.startswith('#include ') or line.startswith('#import ')
/external/chromium_org/v8/test/webkit/
Dtestcfg.py49 for dotted in [x for x in dirs if x.startswith('.')]:
105 return (string.startswith("==") or string.startswith("**") or
106 string.startswith("ANDROID") or
108 string.startswith("DEBUG MODE ENABLED") or
109 string.startswith("tools/nacl-run.py") or
123 if line.startswith("#") or not line.strip(): continue
138 if line.startswith("=="):
/external/chromium_org/v8/test/message/
Dtestcfg.py48 for dotted in [x for x in dirs if x.startswith('.')]:
78 return (string.startswith("==") or string.startswith("**") or
79 string.startswith("ANDROID") or
81 string.startswith("DEBUG MODE ENABLED") or
82 string.startswith("tools/nacl-run.py") or
93 if line.startswith("#") or not line.strip(): continue
/external/chromium_org/tools/valgrind/memcheck/
DPRESUBMIT.py28 if line.startswith('#') or not line:
53 if not line.startswith('Memcheck:'):
64 if (line.startswith('fun:') or line.startswith('obj:') or
65 line.startswith('Memcheck:') or line == '}' or
/external/chromium_org/chrome/test/functional/
Dpyauto_functional.py52 if sys.platform == 'cygwin' or sys.platform.startswith('win'):
55 elif sys.platform.startswith('darwin'):
59 elif sys.platform.startswith('linux'):
70 if sys.platform.startswith('linux') and os.path.isfile(lsb_release):
90 if sys.platform.startswith('darwin') and sys.maxint > 2**32:
/external/chromium_org/media/tools/layout_tests/
Dtest_expectations.py70 if line.startswith('#'):
105 if (m.startswith(WEBKIT_BUG_PREFIX) or
106 m.startswith(CHROMIUM_BUG_PREFIX) or
107 m.startswith(V8_BUG_PREFIX) or
108 m.startswith(NAMED_BUG_PREFIX)):
/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/clang/utils/
DCmpDriver77 return (filename.startswith('/tmp/', 1) or
78 filename.startswith('/var/', 1))
96 ln.startswith('Target: ') or
97 ln.startswith('Configured with: ') or
98 ln.startswith('Thread model: ') or
99 ln.startswith('gcc version') or
100 ln.startswith('clang version')):
102 elif ln.strip().startswith('"'):
/external/chromium_org/v8/test/benchmarks/
Dtestcfg.py110 if testcase.path.startswith("kraken"):
113 elif testcase.path.startswith("octane"):
116 if testcase.path.startswith("octane/gbemu"):
118 elif testcase.path.startswith("octane/typescript"):
122 elif testcase.path.startswith("octane/zlib"):
125 elif testcase.path.startswith("sunspider"):
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
Dfilter.py43 if not (rule.startswith('+') or rule.startswith('-')):
48 if category.startswith(rule[1:]):
113 if not category.startswith(rule[1:]):
115 should_check = rule.startswith('+')
/external/chromium_org/tools/gyp/pylib/gyp/
Dwin_tool.py116 if not line.startswith(' Creating library '):
242 processing = set(os.path.basename(x) for x in lines if x.startswith(prefix))
244 if not line.startswith(prefix) and line not in processing:
258 if (not line.startswith('Copyright (C) Microsoft Corporation') and
259 not line.startswith('Microsoft (R) Macro Assembler') and
260 not line.startswith(' Assembling: ') and
273 if (not line.startswith('Microsoft (R) Windows (R) Resource Compiler') and
274 not line.startswith('Copyright (C) Microsoft Corporation') and
/external/chromium_org/build/android/pylib/
Dsystem_properties.py34 return (key.startswith('ro.boot.') or
35 key.startswith('ro.build.') or
36 key.startswith('ro.product.'))
/external/clang/lib/Tooling/
DArgumentsAdjusters.cpp32 if (!Arg.startswith("-fcolor-diagnostics") && in Adjust()
33 !Arg.startswith("-fdiagnostics-color")) in Adjust()
45 if(!Arg.startswith("-o")) in Adjust()
/external/markdown/markdown/extensions/
Dtables.py37 if header[0].startswith('|'):
42 if c.startswith(':') and c.endswith(':'):
44 elif c.startswith(':'):
79 if row.startswith('|'):
/external/icu4c/test/depstest/
Ddependencies.py79 if not line.startswith(" "): return line
99 if not line.startswith(" "): return line
124 if not line.startswith(" "): return line
129 if line.startswith('"') and line.endswith('"') and '"' not in symbol:
147 if line.startswith("library: "):
156 elif line.startswith("group: "):
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
Dnetlog_profiler.py19 return not browser_type.startswith('cros')
23 if browser_type.startswith('android'):
32 if i.startswith(self._NET_LOG_ARG):
/external/chromium_org/chrome/common/extensions/docs/server2/
Dlink_converter.py36 if (not link.startswith('property-') and
37 not link.startswith('type-') and
38 not link.startswith('method-') and
39 not link.startswith('event-')):
/external/chromium_org/tools/valgrind/
Dcommon.py100 return sys.platform.startswith('linux')
104 return sys.platform.startswith('darwin')
108 return sys.platform == 'cygwin' or sys.platform.startswith('win')
123 elif sys.platform.startswith('win'):
220 if sys.platform.startswith("cygwin"):
/external/chromium_org/tools/telemetry/telemetry/core/platform/
Dmac_platform_backend.py102 if os_version.startswith('9.'):
104 if os_version.startswith('10.'):
106 if os_version.startswith('11.'):
108 if os_version.startswith('12.'):

12345678910>>...26