HomeSort by relevance Sort by last modified time
    Searched refs:endswith (Results 1 - 25 of 160) sorted by null

1 2 3 4 5 6 7

  /external/skia/
PRESUBMIT.py 32 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'))
  /bionic/libc/tools/
generate-NOTICE.py 19 if path.endswith(".mk") or path.endswith(".py") or path.endswith(".pyc") or path.endswith(".txt") or path.endswith(".3"):
21 if path.endswith("/notice") or path.endswith("/readme") or path.endswith("/caveats"):
23 if path.endswith("/tzdata") or path.endswith("/zoneinfo/generate")
    [all...]
  /external/skia/tools/copyright/
fileparser.py 14 if (filepath.endswith('.cpp') or
15 filepath.endswith('.h') or
16 filepath.endswith('.c')):
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
chromium_linux_unittest.py 56 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'))
test_files.py 110 if (filename.endswith('-expected.html') or
111 filename.endswith('-expected-mismatch.html')):
dryrun.py 124 driver_input.filename.endswith('-expected.html')):
129 elif driver_input.filename.endswith('-expected-mismatch.html'):
config_unittest.py 84 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'))
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_makenames.py 122 elif inputBasename.endswith('TagNames.in') \
123 or inputBasename.endswith('tags.in'):
126 elif inputBasename.endswith('AttributeNames.in') \
127 or inputBasename.endswith('attrs.in'):
  /external/webkit/Source/WebKit/chromium/scripts/
generate_devtools_html.py 38 if (file_name.endswith('.js')):
40 elif (file_name.endswith('.css')):
generate_devtools_grd.py 110 if not filename.endswith('.png') and not filename.endswith('.gif'):
  /external/markdown/markdown/extensions/
tables.py 42 if c.startswith(':') and c.endswith(':'):
46 elif c.endswith(':'):
81 if row.endswith('|'):
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
common.py 46 if not lines[line_number].endswith("\r"):
  /build/tools/
post_process_props.py 72 if filename.endswith("/build.prop"):
74 elif filename.endswith("/default.prop"):
  /external/webkit/Tools/Scripts/webkitpy/common/net/
testoutputset.py 81 if output_file.name().endswith('.checksum'):
83 elif output_file.name().endswith('.txt'):
85 elif output_file.name().endswith('.png'):
  /external/llvm/lib/IR/
AutoUpgrade.cpp 217 if (Name.endswith("ub"))
219 else if (Name.endswith("uw"))
221 else if (Name.endswith("ud"))
223 else if (Name.endswith("uq"))
225 else if (Name.endswith("b"))
227 else if (Name.endswith("w"))
229 else if (Name.endswith("d"))
231 else if (Name.endswith("q"))
  /external/protobuf/python/
setup.py 93 if filepath.endswith("_pb2.py") or filepath.endswith(".pyc"):
  /external/v8/test/es5conform/
testcfg.py 46 return self.filename.endswith('-n.js')
90 if file.endswith('.js'):
  /bootable/recovery/tools/ota/
convert-to-bmp.py 13 if not outfile.endswith(".bmp"):
  /external/clang/lib/StaticAnalyzer/Core/
CheckerContext.cpp 84 if (FName.startswith("__") && FName.endswith("_chk") &&
  /external/icu4c/test/depstest/
dependencies.py 46 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/llvm/docs/
conf.py 224 if not name.endswith('.rst') or name in ('index.rst',):
  /external/v8/tools/
presubmit.py 213 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/clang/tools/scan-build/
set-xcode-analyzer 24 if f.endswith(".xcspec") and f.startswith("Clang LLVM"):
85 if not path.endswith("clang"):
  /external/llvm/include/llvm/ADT/
SmallString.h 137 /// endswith - Check if this string ends with the given \p Suffix.
138 bool endswith(StringRef Suffix) const { function in class:llvm::SmallString
139 return str().endswith(Suffix);
  /external/v8/test/mozilla/
testcfg.py 66 return self.filename.endswith('-n.js')
118 if (not file in FRAMEWORK) and file.endswith('.js'):

Completed in 1048 milliseconds

1 2 3 4 5 6 7