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

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
ModeTest.java 34 p = Pattern.compile("([a-z]+)[0-9]+");
41 p = Pattern.compile("([a-z]+)[0-9]+", Pattern.CASE_INSENSITIVE);
50 p = Pattern.compile("(?i)([a-z]+)[0-9]+");
62 p = Pattern.compile("^foo");
72 p = Pattern.compile("foo$");
82 p = Pattern.compile("^foo([0-9]*)", Pattern.MULTILINE);
91 p = Pattern.compile("foo([0-9]*)$", Pattern.MULTILINE);
100 p = Pattern.compile("(?m)^foo([0-9]*)");
108 p = Pattern.compile("(?m)foo([0-9]*)$");
  /external/qemu/distrib/sdl-1.2.15/build-scripts/
makedep.sh 54 \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@
60 \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@
66 \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@
72 \$(LIBTOOL) --tag=CC --mode=compile \$(auxdir)/strip_fPIC.sh \$(NASM) -I\$(srcdir)/src/hermes/ $src -o \$@
78 \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@
84 \$(LIBTOOL) --tag=RC --mode=compile \$(WINDRES) $src -o \$@
  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
PackageTest.java 24 Pattern.compile("^.*Allowing.*cmp=com\\.android\\.cts\\.monkey/\\.MonkeyActivity.*$",
28 Pattern.compile("^.*Allowing.*cmp=com\\.android\\.cts\\.monkey2/\\.ChimpActivity.*$",
  /development/samples/AndroidBeamDemo/
Android.mk 6 # Only compile source java files in this apk.
  /development/samples/BackupRestore/
Android.mk 6 # Only compile source java files in this apk.
  /development/samples/BasicGLSurfaceView/
Android.mk 6 # Only compile source java files in this apk.
  /development/samples/BusinessCard/
Android.mk 6 # Only compile source java files in this apk.
  /device/generic/mini-emulator-armv7-a-neon/
BoardConfig.mk 3 # Product-specific compile-time definitions.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
build.properties 25 jars.compile.order = performanceui.jar
  /external/v8/tools/
run-valgrind.py 60 LEAK_LINE_MATCHER = re.compile(LEAK_RE)
61 LEAK_OKAY_MATCHER = re.compile(r"lost: 0 bytes in 0 blocks")
  /external/webkit/Tools/QueueStatusServer/filters/
webkit_extras.py 36 bug_regexp = re.compile(r"bug (?P<bug_id>\d+)")
37 patch_regexp = re.compile(r"patch (?P<patch_id>\d+)")
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
deps.py 46 pattern = re.compile(self._variable_regexp % name)
53 pattern = re.compile(self._variable_regexp % name)
  /frameworks/base/tests/HugeBackup/
Android.mk 6 # Only compile source java files in this apk.
  /libcore/benchmarks/src/benchmarks/regression/
StringSplitBenchmark.java 42 Pattern p = Pattern.compile(",");
49 Pattern p = Pattern.compile("\\.");
  /ndk/sources/host-tools/sed-4.2.1/sed/
Makefile.am 6 sed_SOURCES = sed.c compile.c execute.c regexp.c fmt.c mbcs.c utils.c
  /packages/apps/Tag/
Android.mk 8 # Only compile source java files in this apk.
  /external/libcap-ng/libcap-ng-0.7/
py-compile 2 # py-compile - Compile a Python program
35 me=py-compile
66 Usage: py-compile [--help] [--version] [--basedir DIR] [--destdir DIR] FILES..."
68 Byte compile some python scripts FILES. Use --destdir to specify any
74 py-compile --destdir /tmp/pkg-root --basedir /usr/share/test test.py test2.py
112 # byte compile but not go into the compiled file.
133 py_compile.compile(filepath, filepath + 'c', path)
150 py_compile.compile(filepath, filepath + 'o', path)
  /external/llvm/utils/
DSAclean.py 23 if re.compile("label(\s*)=(\s*)\"\s%tmp(.\w*)*(\s*)\"").search(buffer):
DSAextract.py 49 regexp_list.append(re.compile(name))
52 nodeexp = re.compile('Node')
54 arrowexp = re.compile('->')
  /external/openfst/src/include/fst/extensions/far/
farlib.h 25 #include <fst/extensions/far/compile-strings.h>
  /external/skia/tools/copyright/
fileparser.py 27 self._copyright_pattern = re.compile('copyright', re.IGNORECASE)
28 self._attribute_pattern = re.compile(
74 self._comment_pattern = re.compile('/\*.*?\*/', re.DOTALL)
  /external/smali/smali/
build.gradle 68 compile project(':util')
69 compile project(':dexlib')
70 compile 'org.antlr:antlr-runtime:3.2'
71 compile 'commons-cli:commons-cli:1.2'
72 compile 'com.google.guava:guava:13.0.1'
126 from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
RegexFileFilter.java 62 this.pattern = Pattern.compile(pattern);
80 this.pattern = Pattern.compile(pattern, flags);
94 this.pattern = Pattern.compile(pattern, flags);
  /libcore/luni/src/main/java/java/util/regex/
Pattern.java 27 * with the same regular expression, it may be more efficient to compile it once and reuse it.
38 * Pattern p = Pattern.compile("Hello, (\\S+)");
340 * Returns the regular expression supplied to {@code compile}.
352 * Returns the flags supplied to {@code compile}.
373 public static Pattern compile(String regularExpression, int flags) throws PatternSyntaxException { method in class:Pattern
378 * Equivalent to {@code Pattern.compile(pattern, 0)}.
380 public static Pattern compile(String pattern) { method in class:Pattern
390 compile(); method
393 private void compile() throws PatternSyntaxException { method in class:Pattern
412 * Equivalent to {@code Pattern.compile(regularExpression).matcher(input).matches()}
452 compile(); method
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/io/
TextGraphReader.java 170 final Pattern commandPattern = Pattern.compile("@[a-zA-Z]+");
171 final Pattern curlyClosePattern = Pattern.compile("\\}");
172 final Pattern curlyOpenPattern = Pattern.compile("\\{");
173 final Pattern ignorePattern = Pattern.compile("(\\s+|//[^\\n]*\\n)+");
174 final Pattern packageNamePattern = Pattern.compile("[a-zA-Z\\.]+");
175 final Pattern libraryNamePattern = Pattern.compile("[a-zA-Z\\./:]+");
176 final Pattern portPattern = Pattern.compile("\\[[a-zA-Z0-9\\-_]+\\]");
177 final Pattern rightArrowPattern = Pattern.compile("=>");
178 final Pattern semicolonPattern = Pattern.compile(";");
179 final Pattern wordPattern = Pattern.compile("[a-zA-Z0-9\\-_]+")
    [all...]

Completed in 2751 milliseconds

12 3 4 5 6 7 8 91011>>