HomeSort by relevance Sort by last modified time
    Searched refs:compile (Results 176 - 200 of 696) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/luni/src/main/java/java/util/
Scanner.java 66 .compile("\\p{javaWhitespace}+");
69 private static final Pattern BOOLEAN_PATTERN = Pattern.compile(
83 LINE_TERMINATOR = Pattern.compile(NL);
84 MULTI_LINE_TERMINATOR = Pattern.compile("(" + NL + ")+");
85 LINE_PATTERN = Pattern.compile(".*(" + NL + ")|.+(" + NL + ")?");
89 private static final Pattern ANY_PATTERN = Pattern.compile("(?s).*");
410 * {@code findInLine(Pattern.compile(pattern))}.
422 return findInLine(Pattern.compile(pattern));
435 * <code>findWithinHorizon(Pattern.compile("\\p{Digit}{3}"), 2)</code>
437 * <code>findWithinHorizon(Pattern.compile("\\p{Digit}{3}"), 3)</code
    [all...]
  /external/icu4c/i18n/unicode/
regex.h 106 * created using the factory method <code>compile()</code>.
166 * object. These compile methods, rather than the constructors, are the usual
188 static RegexPattern * U_EXPORT2 compile( const UnicodeString &regex,
195 * object. These compile methods, rather than the constructors, are the usual
219 static RegexPattern * U_EXPORT2 compile( UText *regex,
225 * object using the specified match mode flags. These compile methods,
247 static RegexPattern * U_EXPORT2 compile( const UnicodeString &regex,
255 * object using the specified match mode flags. These compile methods,
279 static RegexPattern * U_EXPORT2 compile( UText *regex,
287 * object using the specified match mode flags. These compile methods
    [all...]
  /ndk/build/core/
ndk-common.sh 377 # check that we can compile a trivial C program with this compiler
387 compile
393 compile
397 compile
410 compile
449 # try to compile the current source file in $TMPC into an object
452 compile () function
480 # perform a simple compile / link / run of the source file in $TMPC
484 compile
486 echo "Failure to compile test program
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
EmulatorConsole.java 71 private final static Pattern RE_KO = Pattern.compile("KO:\\s+(.*)"); //$NON-NLS-1$
162 private final static Pattern sEmulatorRegexp = Pattern.compile(Device.RE_EMULATOR_SN);
163 private final static Pattern sVoiceStatusRegexp = Pattern.compile(
165 private final static Pattern sDataStatusRegexp = Pattern.compile(
167 private final static Pattern sDownloadSpeedRegexp = Pattern.compile(
169 private final static Pattern sMinLatencyRegexp = Pattern.compile(
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
SysinfoPanel.java 343 Pattern p = Pattern.compile("([\\d\\.]+)\\s*([a-z]+)");
375 Pattern lockPattern = Pattern.compile("Wake lock (\\S+): (.+) partial");
376 Pattern totalPattern = Pattern.compile("Total: (.+) uptime");
416 .compile("(\\d+) alarms: Intent .*\\.([^. ]+) flags");
442 .compile("(\\S+): (\\S+)% = (.+)% user . (.+)% kernel");
490 Pattern valuePattern = Pattern.compile("(\\d+) kB");
  /external/javassist/src/main/javassist/
CtField.java 161 CtMember obj = compiler.compile(src);
813 abstract int compile(CtClass type, String name, Bytecode code, method in class:CtField.Initializer
829 int compile(CtClass type, String name, Bytecode code, method in class:CtField.CodeInitializer0
929 int compile(CtClass type, String name, Bytecode code, method in class:CtField.ParamInitializer
994 int compile(CtClass type, String name, Bytecode code, method in class:CtField.NewInitializer
1090 int compile(CtClass type, String name, Bytecode code, method in class:CtField.MethodInitializer
1165 int compile(CtClass type, String name, Bytecode code, method in class:CtField.IntInitializer
1198 int compile(CtClass type, String name, Bytecode code, method in class:CtField.LongInitializer
1234 int compile(CtClass type, String name, Bytecode code, method in class:CtField.FloatInitializer
1270 int compile(CtClass type, String name, Bytecode code, method in class:CtField.DoubleInitializer
1301 int compile(CtClass type, String name, Bytecode code, method in class:CtField.StringInitializer
1341 int compile(CtClass type, String name, Bytecode code, method in class:CtField.ArrayInitializer
1371 int compile(CtClass type, String name, Bytecode code, method in class:CtField.MultiArrayInitializer
    [all...]
  /build/tools/
adbs 25 trace_line = re.compile("(.*)(\#[0-9]+) (..) ([0-9a-f]{8}) ([^\r\n \t]*)")
100 func_regexp = re.compile("(^.*\<)(.*)(\+.*\>:$)")
  /cts/tests/appsecurity-tests/
Android.mk 21 # Only compile source java files in this apk.
  /cts/tools/dex-tools/test/dex/reader/util/
JavaSourceToDexUtil.java 93 CompilationTask compile = javac.getTask(null, xfm, diacol, Arrays local
95 boolean success = compile.call();
  /cts/tools/tradefed-host/
Android.mk 19 # Only compile source java files in this lib.
  /cts/tools/tradefed-host/tests/
Android.mk 19 # Only compile source java files in this lib.
  /development/samples/AccelerometerPlay/
Android.mk 21 # Only compile source java files in this apk.
  /development/samples/BrowserPlugin/
Android.mk 33 # TODO: doesn't compile with this set
  /development/tools/emulator/test-apps/ConnectivityTest/
Android.mk 20 # Only compile source java files in this apk.
  /development/tools/emulator/test-apps/GpsLocationTest/
Android.mk 20 # Only compile source java files in this apk.
  /development/tools/hosttestlib/
Android.mk 19 # Only compile source java files in this lib.
  /development/tools/idegen/src/
Eclipse.java 54 patterns.add(Pattern.compile("^(?!out/)"));
58 patterns.add(Pattern.compile(".*"));
  /device/samsung/crespo4g/
BoardConfig.mk 17 # Product-specific compile-time definitions.
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
FilterExprWalker.java 76 m_expr = compiler.compile(opPos);
86 m_expr = compiler.compile(opPos + 2);
  /external/chromium/testing/gtest/scripts/
fuse_gtest_files.py 71 INCLUDE_GTEST_FILE_REGEX = re.compile(r'^\s*#\s*include\s*"(gtest/.+)"')
74 INCLUDE_SRC_FILE_REGEX = re.compile(r'^\s*#\s*include\s*"(src/.+)"')
  /external/clang/utils/
SummarizeErrors 27 kDiagnosticRE = re.compile(': (error|warning): (.*)')
28 kAssertionRE = re.compile('Assertion failed: (.*, function .*, file .*, line [0-9]+\\.)')
  /external/doclava/src/com/google/doclava/
AttrTagInfo.java 28 private static final Pattern TEXT = Pattern.compile("(\\S+)\\s*(.*)", Pattern.DOTALL);
29 private static final Pattern NAME_TEXT = Pattern.compile("(\\S+)(.*)", Pattern.DOTALL);
DocFile.java 27 private static final Pattern LINE = Pattern.compile("(.*)[\r]?\n", Pattern.MULTILINE);
28 private static final Pattern PROP = Pattern.compile("([^=]+)=(.*)");
  /external/freetype/
Android.mk 11 # compile in ARM mode, since the glyph loader/renderer is a hotspot
  /external/gtest/scripts/
fuse_gtest_files.py 67 INCLUDE_GTEST_FILE_REGEX = re.compile(r'^\s*#\s*include\s*<(gtest/.+)>')
70 INCLUDE_SRC_FILE_REGEX = re.compile(r'^\s*#\s*include\s*"(src/.+)"')

Completed in 1063 milliseconds

1 2 3 4 5 6 78 91011>>