Home
last modified time | relevance | path

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

12345678910>>...22

/external/selinux/python/sepolicy/sepolicy/
D__init__.py365 if dest.endswith("_t"):
432 if i['target'].endswith("_t"):
460 if p.endswith("(/.*)?"):
482 if exe.endswith("_exec_t") and exe not in exclude_list:
492 if exe.endswith("_exec_t") and exe not in exclude_list:
904 if f.endswith("_var_run_t"):
906 if f.endswith("_pid_t"):
908 if f.endswith("_var_lib_t"):
910 if f.endswith("_var_t"):
912 if f.endswith("_var_spool_t"):
[all …]
/external/llvm/unittests/Support/
DTypeNameTest.cpp33 EXPECT_TRUE(S1Name.endswith("::N1::S1")) << S1Name.str(); in TEST()
34 EXPECT_TRUE(C1Name.endswith("::N1::C1")) << C1Name.str(); in TEST()
35 EXPECT_TRUE(U1Name.endswith("::N1::U1")) << U1Name.str(); in TEST()
37 EXPECT_TRUE(S2Name.endswith("S2")) << S2Name.str(); in TEST()
39 EXPECT_TRUE(S2Name.endswith("::S2")) << S2Name.str(); in TEST()
/external/autotest/client/tests/bonnie/
Dbonnie.py12 if size.endswith('G') or size.endswith('g'):
15 if size.endswith('M') or size.endswith('m'):
19 if chunk.endswith('K') or chunk.endswith('k'):
/external/python/cpython2/Mac/
DExtras.install.py16 if name.endswith('~'): return 0
17 if name.endswith('.BAK'): return 0
18 if name.endswith('.pyc'): return 0
19 if name.endswith('.pyo'): return 0
20 if name.endswith('.orig'): return 0
/external/v8/
Dgenmakefiles.py56 sources = [x for x in target['sources'] if x.endswith('.cc')]
90 sources = [x for x in target['sources'] if x.endswith('.cc')]
103 arm_src = [x for x in condition[1]['sources'] if x.endswith('.cc')]
105 arm64_src = [x for x in condition[1]['sources'] if x.endswith('.cc')]
107 x86_src = [x for x in condition[1]['sources'] if x.endswith('.cc')]
110 mips_src = [x for x in condition[1]['sources'] if x.endswith('.cc')]
113 mips64_src = [x for x in condition[1]['sources'] if x.endswith('.cc')]
115 x86_64_src = [x for x in condition[1]['sources'] if x.endswith('.cc')]
239 sources = [x for x in target['sources'] if x.endswith('.cc')]
287 sources = [x for x in target['sources'] if x.endswith('.cc')]
/external/mesa3d/src/compiler/nir/
Dnir_constant_expressions.py7 if type_.endswith("8"):
9 elif type_.endswith("16"):
11 elif type_.endswith("32"):
13 elif type_.endswith("64"):
/external/deqp/scripts/src_util/
Dcheck_whitespace.py31 if line.endswith(" \n") or line.endswith("\t\n"):
37 if line.endswith("\r") or line.endswith("\r\n"):
/external/skia/
DPRESUBMIT.py93 if affected_file_path.endswith('.py'):
120 if affected_file_path.endswith('.cpp') or affected_file_path.endswith('.h'):
191 if (not f.LocalPath().endswith('.gn') and
192 not f.LocalPath().endswith('.gni')):
209 sources = lambda x: (x.LocalPath().endswith('.h') or
210 x.LocalPath().endswith('.py') or
211 x.LocalPath().endswith('.sh') or
212 x.LocalPath().endswith('.m') or
213 x.LocalPath().endswith('.mm') or
214 x.LocalPath().endswith('.go') or
[all …]
/external/python/cpython2/Tools/scripts/
Dpysource.py51 return fullpath.endswith(".py") or fullpath.endswith(".pyw")
66 if fullpath.endswith(".py") or fullpath.endswith(".pyw"):
Dpatchcheck.py97 for path in (x for x in file_paths if x.endswith('.py')):
158 python_files = [fn for fn in file_paths if fn.endswith('.py')]
159 c_files = [fn for fn in file_paths if fn.endswith(('.c', '.h'))]
161 fn.endswith(('.rst', '.inc'))]
/external/protobuf/python/
Dsetup.py115 if filepath.endswith("_pb2.py") or filepath.endswith(".pyc") or \
116 filepath.endswith(".so") or filepath.endswith(".o") or \
117 filepath.endswith('google/protobuf/compiler/__init__.py') or \
118 filepath.endswith('google/protobuf/util/__init__.py'):
/external/skia/tools/copyright/
Dfileparser.py14 if (filepath.endswith('.cpp') or
15 filepath.endswith('.h') or
16 filepath.endswith('.c')):
/external/sl4a/Docs/
Dgenerate_api_reference_md.py114 if f.endswith('Facade.java'):
141 if not line.endswith(')'):
146 if not line.endswith('{'):
156 if line.endswith(')'):
166 if line.endswith('{'):
/external/chromium-trace/catapult/systrace/profile_chrome/
Dprofiler_unittest.py29 self.assertTrue(result.endswith('.html'))
40 self.assertFalse(result.endswith('.html'))
54 self.assertTrue(result.endswith('.zip'))
/external/python/cpython2/Lib/lib2to3/tests/
Dpytree_idempotency.py43 if fn.endswith(".pyc"):
45 if not fn.endswith(".py"):
60 if not name.endswith(".py"):
/external/autotest/client/site_tests/logging_UdevCrash/
Dlogging_UdevCrash.py25 if filename.endswith('meta'):
29 if filename.endswith('.log.gz'):
31 elif filename.endswith('.log'):
/external/boringssl/src/util/bot/
Dextract.py61 if info.filename.endswith('/'):
115 if archive.endswith('.zip'):
117 elif archive.endswith('.tar.gz'):
119 elif archive.endswith('.tar.bz2'):
/external/markdown/markdown/extensions/
Dtables.py42 if c.startswith(':') and c.endswith(':'):
46 elif c.endswith(':'):
81 if row.endswith('|'):
/external/v8/tools/
Dpresubmit.py218 return name.endswith('.cc') or name.endswith('.h')
311 if name.endswith(ext):
389 if ' \n' in contents or contents.endswith(' '):
393 if not contents.endswith(' '):
404 if not contents.endswith('\n') or contents.endswith('\n\n'):
460 if (lines[i].endswith(",") and len(lines[i + 1]) > 0 and
/external/python/cpython2/Lib/email/
Dquoprimime.py210 if line.endswith(CRLF):
252 if lines[lineno].endswith(CRLF) or lines[lineno][-1] in CRLF:
310 if not encoded.endswith(eol) and decoded.endswith(eol):
/external/python/cpython2/PC/VS9.0/
Drmpyc.py12 if name.endswith('.pyc'):
15 elif name.endswith('.pyo'):
/external/python/cpython2/PCbuild/
Drmpyc.py12 if name.endswith('.pyc'):
15 elif name.endswith('.pyo'):
/external/python/cpython2/PC/VC6/
Drmpyc.py12 if name.endswith('.pyc'):
15 elif name.endswith('.pyo'):
/external/python/cpython2/PC/VS8.0/
Drmpyc.py12 if name.endswith('.pyc'):
15 elif name.endswith('.pyo'):
/external/python/cpython2/PC/VS7.1/
Drmpyc.py12 if name.endswith('.pyc'):
15 elif name.endswith('.pyo'):

12345678910>>...22