HomeSort by relevance Sort by last modified time
    Searched refs:compile (Results 276 - 300 of 480) sorted by null

<<11121314151617181920

  /build/tools/droiddoc/src/
LinkReference.java 58 = Pattern.compile("^<a href=\"([^\"]*)\">([^<]*)</a>[ \n\r\t]*$",
65 = Pattern.compile("^\"([^\"]*)\"[ \n\r\t]*$");
SampleTagInfo.java 54 static final Pattern TEXT = Pattern.compile(
  /build/tools/
warn.py 515 i['compiledpatterns'].append(re.compile(pat))
525 warningpattern = re.compile('.* warning:.*')
    [all...]
  /external/protobuf/python/google/protobuf/
text_format.py 302 _WHITESPACE = re.compile('(\\s|(#.*$))+', re.MULTILINE)
303 _TOKEN = re.compile(
308 _IDENTIFIER = re.compile('\w+')
313 _FLOAT_INFINITY = re.compile('-?inf(inity)?f?', re.IGNORECASE)
314 _FLOAT_NAN = re.compile("nanf?", re.IGNORECASE)
664 _CUNESCAPE_HEX = re.compile('\\\\x([0-9a-fA-F]{2}|[0-9a-f-A-F])')
  /libcore/luni/src/test/java/tests/SQLite/
DatabaseTest.java     [all...]
  /ndk/toolchains/arm-linux-androideabi-4.4.3/
setup.mk 75 # When building for debug, compile everything as arm.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java 75 private static final Pattern RES_XML_FILE_REGEX = Pattern.compile(
377 private final Pattern mPathRegex = Pattern.compile(
  /cts/tests/tests/webkit/src/android/webkit/cts/
CookieManagerTest.java 131 final Pattern pat = Pattern.compile("count=(\\d+)");
  /cts/tools/host/src/com/android/cts/
CommandParser.java 107 Pattern p = Pattern.compile(COMMAND_PARSE_EXPRESSION);
  /cts/tools/vm-tests/src/util/build/
BuildDalvikSuite.java 661 Pattern p = Pattern.compile("@uses\\s+(.*)\\s+", Pattern.MULTILINE);
755 Pattern p = Pattern.compile(commentPattern, Pattern.DOTALL);
762 Matcher titleM = Pattern.compile("@title (.*)", Pattern.DOTALL)
774 Matcher constraintM = Pattern.compile("@constraint (.*)").matcher(
  /dalvik/vm/compiler/template/
gen-template.py 154 opcode_re = re.compile(r"^JIT_TEMPLATE\((\w+)\)", re.DOTALL)
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssService.java 208 Pattern p = Pattern.compile(patt);
  /development/scripts/app_engine_server/gae_shell/
shell.py 217 # log and compile the statement up front
220 compiled = compile(statement, '<string>', 'single')
  /development/testrunner/test_defs/
test_walker.py 239 re_package = re.compile(r'package\s+(.*);')
  /development/tools/idegen/src/
Configuration.java 260 patterns.add(Pattern.compile(trimmed));
  /external/guava/src/com/google/common/base/
Splitter.java 191 * Splitter.on(Pattern.compile("\r?\n")).split(entireFile)} splits a string
227 * equivalent to {@code Splitter.on(Pattern.compile(pattern))}.
238 return on(Pattern.compile(separatorPattern));
  /external/icu4c/samples/ugrep/
ugrep.cpp 106 RegexPattern *rePat = RegexPattern::compile(pattern, parseErr, status);
  /external/iproute2/examples/
cbq.init-v0.7.3 63 # - exposed "compile" command
176 # use "compile" command which will output "tc" commands required to build
177 # your configuration. Bear in mind that "compile" does not check if the "tc"
655 if [ "$1" = "compile" ]; then
698 ############################### START/COMPILE ###############################
701 start|compile)
708 ### If we are in compile/nocache/logging mode, don't bother with cache
709 if [ "$1" != "compile" -a "$2" != "nocache" -a -z "$CBQ_DEBUG" ]; then
719 ### compile the config if the cache is invalid
721 $0 compile > $CBQ_CACHE |
    [all...]
  /external/openssl/crypto/des/
des-lib.com 28 $! Specify either DEBUG or NODEBUG as P2 to compile with or without
31 $! Specify which compiler at P3 to try to compile under.
204 $! Check To See If The File We Want To Compile Actually Exists.
223 $! Compile The File.
252 $! Compile The DESTEST Program.
264 $! Check To See If The File We Want To Compile Actually Exists.
287 $! Compile The DESTEST Program.
300 $! Compile The SPEED Program.
312 $! Check To See If The File We Want To Compile Actually Exists.
335 $! Compile The SPEED Program
    [all...]
  /external/speex/libspeex/
arch.h 50 #error You cannot compile as floating point and fixed point at the same time
  /external/stlport/
configure 39 --without-stlport compile without STLport
  /external/webkit/WebKitTools/Scripts/
validate-committer-lists 163 line_regexp = re.compile("^(?P<author>.+)@\S+ (?P<timestamp>\d+)$")
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/
alloca.c 48 -- must know STACK_DIRECTION at compile-time
100 #define STACK_DIR STACK_DIRECTION /* Known at compile-time. */
  /frameworks/base/core/java/android/speech/srec/
Recognizer.java 43 * <li>Compile the <code>Recognizer.Grammar</code>, if needed.
68 * grammar.compile();
210 * Compile all slots.
212 public void compile() { method in class:Recognizer.Grammar
  /frameworks/base/core/java/android/webkit/
URLUtil.java 385 Pattern.compile("attachment;\\s*filename\\s*=\\s*(\"?)([^\"]*)\\1\\s*$",

Completed in 1298 milliseconds

<<11121314151617181920