HomeSort by relevance Sort by last modified time
    Searched refs:startswith (Results 26 - 50 of 246) sorted by null

12 3 4 5 6 7 8 910

  /system/extras/tests/sdcard/
plot_sdcard.py 98 if line.startswith('# Kernel:'):
100 elif line.startswith('# Command:'):
105 elif line.startswith('# Iterations'):
107 elif line.startswith('# Fadvise'):
109 elif line.startswith('# Sched'):
149 if line.startswith('# StopWatch'): # Start of a new dataset
159 if line.startswith('#'):
  /external/webkit/Tools/wx/build/
build_utils.py 40 if sys.platform.startswith('win'):
128 if sys.platform.startswith('win'):
134 elif sys.platform.startswith('darwin'):
136 if platform.release().startswith('10'): # Snow Leopard
185 if line.startswith("Revision: "):
  /external/clang/lib/Frontend/
Warnings.cpp 99 if (Opt.startswith("no-")) {
132 if (Opt.startswith("error")) {
160 if (Opt.startswith("fatal-errors")) {
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 103 Name.startswith(".bss.") ||
104 Name.startswith(".gnu.linkonce.b.") ||
105 Name.startswith(".llvm.linkonce.b.") ||
107 Name.startswith(".sbss.") ||
108 Name.startswith(".gnu.linkonce.sb.") ||
109 Name.startswith(".llvm.linkonce.sb."))
113 Name.startswith(".tdata.") ||
114 Name.startswith(".gnu.linkonce.td.") ||
115 Name.startswith(".llvm.linkonce.td."))
119 Name.startswith(".tbss.") |
    [all...]
  /external/v8/test/message/
testcfg.py 46 else: return str.startswith('==') or str.startswith('**')
52 if (not line.startswith('#')) and (not line.strip()):
  /external/webkit/Tools/CodeCoverage/
cov.py 94 if not in_test_code and code.startswith("#ifdef BUILD_UNIT_TESTS"):
96 if in_test_code and code.startswith("#if"):
98 if in_test_code and code.startswith("#endif"):
  /external/webkit/Tools/Scripts/
test-webkitpy 97 if (record.name.startswith("webkitpy.common.system.autoinstall") or
98 record.name.startswith("webkitpy.test")):
100 if record.name.startswith("webkitpy"):
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
diff_parser.py 170 if line.startswith('+'):
173 elif line.startswith('-'):
176 elif line.startswith(' '):
  /build/tools/releasetools/
build_image.py 41 if fs_type.startswith("ext"):
108 if not line or line.startswith("#"):
  /external/webkit/Source/JavaScriptCore/
wscript 53 if sys.platform.startswith('darwin'):
  /external/webkit/Tools/Scripts/webkitpy/common/system/
logutils.py 106 if path.startswith(_webkitpy_dir):
142 if record.name.startswith("webkitpy.thirdparty.autoinstall"):
  /external/webkit/Tools/Scripts/webkitpy/test/
main.py 84 if any([module_path.startswith(package) for package in [
114 if len(sys_argv) > 1 and not sys_argv[-1].startswith("-"):
  /build/tools/
diff_package_overlays.py 53 if not line or line.startswith("#"):
  /dalvik/vm/compiler/template/
gen-template.py 250 if line.startswith("%include"):
268 elif line.startswith("%default"):
278 elif line.startswith("%verify"):
282 elif line.startswith("%break") and sister_list != None:
  /external/clang/utils/C++Tests/LLVM-Code-Symbols/
check-symbols 21 if not ln.startswith(' C')]
  /external/llvm/unittests/VMCore/
VerifierTest.cpp 61 EXPECT_TRUE(StringRef(Error).startswith("Alias cannot have unnamed_addr"));
  /external/webkit/Source/WebKit/chromium/
gyp_webkit 54 if arg.startswith('-I') and len(arg) > 2:
  /external/webkit/Tools/Scripts/webkitpy/common/config/
build.py 127 return match.group("platform") in (target_platform, base_platform) or match.group("platform").startswith("%s-" % target_platform)
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
http_server_base.py 81 if file.startswith(starts_with):
  /frameworks/compile/libbcc/tests/
bccarm 50 if arg.startswith('-'):
  /bionic/libc/tools/
gensyscalls.py 221 param.startswith("int64_t") or param.startswith("uint64_t") or \
222 param.startswith("loff_t") or param.startswith("off64_t") or \
223 param.startswith("long long") or param.startswith("unsigned long long") or
224 param.startswith("signed long long") ):
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 412 if (!String.startswith("rfsl"))
516 if (Name.startswith("lw") || Name.startswith("sw") ||
517 Name.startswith("lh") || Name.startswith("sh") ||
518 Name.startswith("lb") || Name.startswith("sb"))
  /external/markdown/markdown/
blockprocessors.py 44 if line.startswith(' '*markdown.TAB_LENGTH):
56 if lines[i].startswith(' '*markdown.TAB_LENGTH*level):
67 be as simple as ``block.startswith(some_string)`` or a complex regular
121 return block.startswith(' '*markdown.TAB_LENGTH) and \
190 return block.startswith(' '*markdown.TAB_LENGTH)
293 if item.startswith(' '*markdown.TAB_LENGTH):
312 if items[-1].startswith(' '*markdown.TAB_LENGTH):
373 if lines[1].startswith('='):
  /external/chromium/testing/gmock/scripts/
upload.py 477 if host == "localhost" or host.startswith("localhost:"):
539 use_shell = sys.platform.startswith("win")
652 if line.startswith('Index:') or line.startswith('Property changes on:'):
695 if not response_body.startswith("OK"):
718 return mimetype.startswith("image/")
764 if path.startswith("/projects/"):
771 if path.startswith("/repos/"):
798 if line.startswith("Index:") or line.startswith("Property changes on:")
    [all...]
  /external/chromium/testing/gtest/scripts/
upload.py 477 if host == "localhost" or host.startswith("localhost:"):
539 use_shell = sys.platform.startswith("win")
652 if line.startswith('Index:') or line.startswith('Property changes on:'):
695 if not response_body.startswith("OK"):
718 return mimetype.startswith("image/")
764 if path.startswith("/projects/"):
771 if path.startswith("/repos/"):
798 if line.startswith("Index:") or line.startswith("Property changes on:")
    [all...]

Completed in 319 milliseconds

12 3 4 5 6 7 8 910