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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/
PRESUBMIT.py 11 return path.endswith('.js') or path.endswith('.py')
14 return (path.endswith('check_chromevox.py') or
15 path.endswith('jscompilerwrapper.py') or
16 path.endswith('jsbundler.py'))
  /external/lldb/test/unittest2/
__main__.py 4 if sys.argv[0].endswith("__main__.py"):
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
ninja_test.py 22 endswith('.exe'))
24 endswith('.dll'))
26 endswith('.lib'))
39 endswith('.so'))
41 endswith('.a'))
  /external/chromium_org/chrome/browser/resources/chromeos/braille_ime/
PRESUBMIT.py 9 return path.endswith('.js') or path.endswith('check_braille_ime.py')
  /external/clang/lib/Basic/
Attributes.cpp 11 if (Name.size() >= 4 && Name.startswith("__") && Name.endswith("__"))
  /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/chromium_org/third_party/skia/tools/copyright/
fileparser.py 14 if (filepath.endswith('.cpp') or
15 filepath.endswith('.h') or
16 filepath.endswith('.c')):
  /external/chromium_org/third_party/yasm/source/patched-yasm/Mkfiles/vc9/
vc98_swap.py 44 if os.getcwd().endswith('Mkfiles\\vc9') :
47 if file.endswith(".sln") :
49 if file.endswith(".vcproj") :
  /external/chromium_org/tools/
boilerplate.py 59 if filename.endswith('.h'):
61 elif filename.endswith('.cc') or filename.endswith('.mm'):
  /external/chromium_org/third_party/skia/platform_tools/android/gyp_gen/
gypd_parser.py 38 if lowercase_source.endswith('.h'):
41 if lowercase_source.endswith('gypi'):
52 if lib.endswith('.a'):
73 assert(sub_path.endswith('.gyp'))
106 if rel_include.endswith('/'):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
linux_unittest.py 53 self.assertTrue(port.baseline_path().endswith('linux-x86'))
54 self.assertTrue(port.baseline_search_path()[0].endswith('linux-x86'))
55 self.assertTrue(port.baseline_search_path()[1].endswith('linux'))
57 self.assertTrue(port.baseline_path().endswith('linux'))
58 self.assertTrue(port.baseline_search_path()[0].endswith('linux'))
104 self.assertTrue(self.make_port()._path_to_driver().endswith('content_shell'))
105 self.assertTrue(self.make_port(options=MockOptions(driver_name='OtherDriver'))._path_to_driver().endswith('OtherDriver'))
  /external/chromium_org/build/android/gyp/
jarjar_resources.py 26 if src.endswith('**'):
32 if dest.endswith('@0'):
34 elif dest.endswith('@1'):
43 if old.endswith('**') and old[:-2] in class_name:
45 if '*' not in old and class_name.endswith(old):
71 return filter(lambda n: n.endswith('.xml'), names)
  /external/chromium_org/build/linux/unbundle/
remove_bundled_libraries.py 68 if f.endswith('.gyp') or f.endswith('.gypi'):
75 if f.endswith('.isolate'):
  /external/chromium_org/base/
PRESUBMIT.py 18 not f.LocalPath().endswith('_unittest.mm') and
19 not f.LocalPath().endswith('mac/sdk_forward_declarations.h')):
  /external/chromium_org/build/secondary/tools/grit/
stamp_grit_sources.py 22 if f.endswith('.py') and not f.endswith('_unittest.py')]
  /external/chromium_org/chrome/common/extensions/docs/server2/
path_util.py 17 return path in ('', '.', '..') or path.endswith('/') or path.endswith('/..')
43 if path.endswith('/'):
54 if names and not path.endswith('/'):
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
generate_devtools_html.py 38 if (resource_path.endswith('.js')):
40 elif (resource_path.endswith('.css')):
  /external/chromium_org/build/android/pylib/host_driven/
setup.py 27 return [os.path.join(root, f) for f in files if f.endswith('Test.py')]
64 if (root.endswith('host_driven_tests') or
65 root.endswith('pythonDrivenTests') or
66 (is_official_build and (root.endswith('pythonDrivenTests/official') or
67 root.endswith('host_driven_tests/official')))):
  /external/chromium_org/third_party/skia/
PRESUBMIT.py 69 if affected_file_path.endswith('.py'):
80 sources = lambda x: (x.LocalPath().endswith('.h') or
81 x.LocalPath().endswith('.gypi') or
82 x.LocalPath().endswith('.gyp') or
83 x.LocalPath().endswith('.py') or
84 x.LocalPath().endswith('.sh') or
85 x.LocalPath().endswith('.cpp'))
  /external/chromium_org/third_party/markdown/extensions/
tables.py 77 if c.startswith(':') and c.endswith(':'):
81 elif c.endswith(':'):
116 if row.endswith('|'):
  /external/chromium_org/tools/profile_chrome/
profiler_unittest.py 51 self.assertTrue(result.endswith('.html'))
60 self.assertFalse(result.endswith('.html'))
71 self.assertTrue(result.endswith('.zip'))
  /external/markdown/markdown/extensions/
tables.py 42 if c.startswith(':') and c.endswith(':'):
46 elif c.endswith(':'):
81 if row.endswith('|'):
  /external/chromium_org/build/android/pylib/gtest/
test_package.py 93 if test_case.endswith('.'):
  /external/chromium_org/chrome/app/
PRESUBMIT.py 22 filename_filter = lambda x: x.LocalPath().endswith('.grd')
  /external/chromium_org/net/websockets/
PRESUBMIT.py 37 lambda af: af.LocalPath().endswith('/README'))

Completed in 528 milliseconds

1 2 3 4 5 6 7 8 91011>>