Home
last modified time | relevance | path

Searched refs:endswith (Results 1 – 25 of 140) sorted by relevance

123456

/external/skia/
DPRESUBMIT.py32 sources = lambda x: (x.LocalPath().endswith('.h') or
33 x.LocalPath().endswith('.gypi') or
34 x.LocalPath().endswith('.gyp') or
35 x.LocalPath().endswith('.py') or
36 x.LocalPath().endswith('.sh') or
37 x.LocalPath().endswith('.cpp'))
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
Dchromium_linux_unittest.py56 self.assertTrue(port.baseline_path().endswith('chromium-linux'))
57 self.assertTrue(port.baseline_search_path()[0].endswith('chromium-linux'))
59 self.assertTrue(port.baseline_path().endswith('chromium-linux-x86_64'))
60 self.assertTrue(port.baseline_search_path()[0].endswith('chromium-linux-x86_64'))
61 self.assertTrue(port.baseline_search_path()[1].endswith('chromium-linux'))
Dconfig_unittest.py84 self.assertTrue(c.build_directory(None).endswith('WebKitBuild'))
87 self.assertTrue(c.build_directory(None).endswith('WebKitBuild'))
90 self.assertTrue(c.build_directory('Release').endswith('/Release'))
91 self.assertTrue(c.build_directory('Debug').endswith('/Debug'))
Dtest_files.py110 if (filename.endswith('-expected.html') or
111 filename.endswith('-expected-mismatch.html')):
Ddryrun.py124 driver_input.filename.endswith('-expected.html')):
129 elif driver_input.filename.endswith('-expected-mismatch.html'):
Dchromium_unittest.py163 self.assertTrue(port._path_to_image_diff().endswith(
166 self.assertTrue(port._path_to_image_diff().endswith(
169 self.assertTrue(port._path_to_image_diff().endswith(
/external/webkit/Source/WebCore/WebCore.gyp/scripts/
Daction_makenames.py122 elif inputBasename.endswith('TagNames.in') \
123 or inputBasename.endswith('tags.in'):
126 elif inputBasename.endswith('AttributeNames.in') \
127 or inputBasename.endswith('attrs.in'):
/external/skia/tools/copyright/
Dfileparser.py14 if (filepath.endswith('.cpp') or
15 filepath.endswith('.h') or
16 filepath.endswith('.c')):
/external/llvm/lib/IR/
DAutoUpgrade.cpp217 if (Name.endswith("ub")) in UpgradeIntrinsicCall()
219 else if (Name.endswith("uw")) in UpgradeIntrinsicCall()
221 else if (Name.endswith("ud")) in UpgradeIntrinsicCall()
223 else if (Name.endswith("uq")) in UpgradeIntrinsicCall()
225 else if (Name.endswith("b")) in UpgradeIntrinsicCall()
227 else if (Name.endswith("w")) in UpgradeIntrinsicCall()
229 else if (Name.endswith("d")) in UpgradeIntrinsicCall()
231 else if (Name.endswith("q")) in UpgradeIntrinsicCall()
/external/markdown/markdown/extensions/
Dtables.py42 if c.startswith(':') and c.endswith(':'):
46 elif c.endswith(':'):
81 if row.endswith('|'):
/external/icu4c/test/depstest/
Ddependencies.py46 if name.endswith(".o"):
53 if "/" in name or name.endswith(".o"):
58 if "/" in name or not name.endswith(".o"):
129 if line.startswith('"') and line.endswith('"') and '"' not in symbol:
/external/webkit/Source/WebKit/chromium/scripts/
Dgenerate_devtools_html.py38 if (file_name.endswith('.js')):
40 elif (file_name.endswith('.css')):
Dgenerate_devtools_grd.py110 if not filename.endswith('.png') and not filename.endswith('.gif'):
/external/v8/tools/
Dpresubmit.py213 return name.endswith('.cc') or name.endswith('.h')
291 if name.endswith(ext):
327 if ' \n' in contents or contents.endswith(' '):
331 if not contents.endswith(' '):
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
Djavascriptlintrules.py101 if identifier.endswith('_') and not identifier.endswith('__'):
116 elif not identifier.endswith('__'):
119 if piece.endswith('_'):
125 if piece.endswith('_'):
138 if (flag.type.endswith('=') and
144 elif (not flag.type.endswith('=') and
Dcheckerbase.py176 if filename.endswith('.html') or filename.endswith('.htm'):
199 if filename.endswith(limited_doc_filename):
Decmalintrules.py175 type.endswith('|null') or type.startswith('null|')):
525 if not (end_string.endswith('.') or end_string.endswith('?') or
526 end_string.endswith('!')):
530 while desc_str.endswith('>'):
576 identifier.endswith('.prototype') and not
586 if identifier.endswith('_') and not identifier.endswith('__'):
/external/webkit/Tools/Scripts/webkitpy/common/net/
Dtestoutputset.py81 if output_file.name().endswith('.checksum'):
83 elif output_file.name().endswith('.txt'):
85 elif output_file.name().endswith('.png'):
/external/protobuf/python/
Dsetup.py93 if filepath.endswith("_pb2.py") or filepath.endswith(".pyc"):
/external/clang/tools/scan-build/
Dset-xcode-analyzer24 if f.endswith(".xcspec") and f.startswith("Clang LLVM"):
85 if not path.endswith("clang"):
/external/v8/test/es5conform/
Dtestcfg.py46 return self.filename.endswith('-n.js')
90 if file.endswith('.js'):
/external/webkit/Tools/Scripts/
Dcheck-inspector-strings60 return file_path.endswith(".js") and (not file_path.endswith("InjectedScript.js"))
Dtest-webkitpy130 if file_name.endswith(".pyc") and file_name[:-1] not in file_names:
243 if module_name.endswith("QueueStatusServer"):
/external/v8/test/mozilla/
Dtestcfg.py66 return self.filename.endswith('-n.js')
118 if (not file in FRAMEWORK) and file.endswith('.js'):
/external/webkit/Tools/CodeCoverage/
Dcov.py165 if info.endswith("-"):
169 if info.endswith("#"):

123456