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

1 2 3 4 5 6 7 8 91011>>

  /system/core/toolbox/
generate-input.h-labels.py 46 if name.startswith("INPUT_PROP_"):
48 elif name.startswith("EV_"):
50 elif name.startswith("SYN_"):
52 elif name.startswith("KEY_") or name.startswith("BTN_"):
54 elif name.startswith("REL_"):
56 elif name.startswith("ABS_"):
58 elif name.startswith("SW_"):
60 elif name.startswith("MSC_"):
62 elif name.startswith("LED_")
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.general/
p8.cpp 8 constexpr bool startswith(const char *p, const char *q) { function
9 return !*q || (*p == *q && startswith(p + 1, q + 1));
12 return *p && (startswith(p, q) || contains(p + 1, q));
  /ndk/tests/build/flto/
test_config.py 3 if toolchain == 'clang' and abi.startswith('mips'):
  /ndk/tests/build/issue36131-flto-c++11/
test_config.py 3 if toolchain == 'clang' and abi.startswith('mips'):
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/
db.py 44 if __name__.startswith('bsddb3.') :
55 if __name__.startswith('bsddb3.') :
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
db.py 44 if __name__.startswith('bsddb3.') :
55 if __name__.startswith('bsddb3.') :
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
db.py 44 if __name__.startswith('bsddb3.') :
55 if __name__.startswith('bsddb3.') :
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
db.py 44 if __name__.startswith('bsddb3.') :
55 if __name__.startswith('bsddb3.') :
  /external/llvm/utils/
sort_includes.py 38 if l.startswith('#include'):
44 if look_for_api_header and header.startswith('"'):
48 if (header.startswith('<') or header.startswith('"gtest/') or
49 header.startswith('"isl/') or header.startswith('"json/')):
52 if (header.startswith('"clang/') or header.startswith('"clang-c/') or
53 header.startswith('"polly/')):
56 if (header.startswith('"llvm/') or header.startswith('"llvm-c/'))
    [all...]
  /ndk/tests/build/b14811006-GOT_PREL-optimization/
test_config.py 3 if abi.startswith('armeabi'):
  /ndk/tests/build/issue17144-byteswap/
test_config.py 2 if toolchain == 'clang' and abi.startswith('armeabi-v7a'):
  /ndk/tests/device/asan-smoke/
test_config.py 8 if not toolchain.startswith('clang'):
10 if not abi.startswith('armeabi') and not abi == 'x86':
  /external/autotest/client/tools/
scan_results.py 25 if (line.startswith("START") and len(parts) >= 5 and
26 parts[3].startswith("timestamp")):
32 elif (line.startswith("END") and len(parts) >= 5 and
33 parts[3].startswith("timestamp")):
40 if test_name.startswith("kvm."):
46 elif (len(parts) >= 6 and parts[3].startswith("timestamp") and
47 parts[4].startswith("localtime")):
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/
trace_time_unittest.py 40 if not (sys.platform.startswith(trace_time._PLATFORMS['windows'])
41 or sys.platform.startswith(trace_time._PLATFORMS['cygwin'])):
47 if not sys.platform.startswith(trace_time._PLATFORMS['linux']):
53 if not sys.platform.startswith(trace_time._PLATFORMS['mac']):
60 if not (sys.platform.startswith(trace_time._PLATFORMS['windows'])
61 or sys.platform.startswith(trace_time._PLATFORMS['cygwin'])):
71 if not (sys.platform.startswith(trace_time._PLATFORMS['windows'])
72 or sys.platform.startswith(trace_time._PLATFORMS['cygwin'])):
82 if not (sys.platform.startswith(trace_time._PLATFORMS['windows'])
83 or sys.platform.startswith(trace_time._PLATFORMS['cygwin']))
    [all...]
  /external/v8/build/
detect_v8_host_arch.py 51 elif host_arch.startswith('arm'):
57 elif host_arch.startswith('mips'):
  /external/autotest/client/common_lib/
site_packages.py 16 if url.startswith('http://'):
  /external/clang/lib/Basic/
Attributes.cpp 11 if (Name.size() >= 4 && Name.startswith("__") && Name.endswith("__"))
  /external/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/
OneTest 18 elif not sys.argv[1].startswith("--gtest_filter="):
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
literals.py 21 assert all.startswith("\\")
25 if tail.startswith("x"):
41 assert s.startswith("'") or s.startswith('"'), repr(s[:1])
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/pgen2/
literals.py 21 assert all.startswith("\\")
25 if tail.startswith("x"):
41 assert s.startswith("'") or s.startswith('"'), repr(s[:1])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
literals.py 21 assert all.startswith("\\")
25 if tail.startswith("x"):
41 assert s.startswith("'") or s.startswith('"'), repr(s[:1])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
literals.py 21 assert all.startswith("\\")
25 if tail.startswith("x"):
41 assert s.startswith("'") or s.startswith('"'), repr(s[:1])
  /external/clang/lib/Analysis/
CocoaConventions.cpp 30 if (TDName.startswith(Prefix) && TDName.endswith("Ref"))
33 if (TDName.startswith("xpc_"))
47 return Name.startswith(Prefix);
124 if (suffix.startswith("reate")) {
127 else if (suffix.startswith("opy")) {
  /external/v8/tools/
find-commit-for-patch.py 35 if line.startswith("diff --git "):
38 assert words[2].startswith("a/") and len(words[2]) > 2
40 elif line.startswith("index "):
44 if old_hash.startswith("0000000"): continue # Ignore new files.
64 if actual_hash.startswith(expected_hash): matched_files += 1
  /external/webrtc/tools/valgrind-webrtc/memcheck/
PRESUBMIT.py 44 if line.startswith('#') or not line:
69 if not line.startswith('Memcheck:'):
80 if (line.startswith('fun:') or line.startswith('obj:') or
81 line.startswith('Memcheck:') or line == '}' or

Completed in 841 milliseconds

1 2 3 4 5 6 7 8 91011>>