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

12 3 4 5 6 7 8 91011>>

  /development/samples/BusinessCard/
Android.mk 6 # Only compile source java files in this apk.
  /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.
  /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/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('->')
  /packages/apps/Email/emailcommon/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);
  /external/guava/src/com/google/common/base/
CaseFormat.java 34 LOWER_HYPHEN(Pattern.compile("[-]"), "-"),
39 LOWER_UNDERSCORE(Pattern.compile("[_]"), "_"),
44 LOWER_CAMEL(Pattern.compile("[A-Z]"), ""),
49 UPPER_CAMEL(Pattern.compile("[A-Z]"), ""),
54 UPPER_UNDERSCORE(Pattern.compile("[_]"), "_");
  /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+)");
333 * Returns the regular expression supplied to {@code compile}.
345 * Returns the flags supplied to {@code compile}.
366 public static Pattern compile(String regularExpression, int flags) throws PatternSyntaxException { method in class:Pattern
371 * Equivalent to {@code Pattern.compile(pattern, 0)}.
373 public static Pattern compile(String pattern) { method in class:Pattern
383 compile(); method
386 private void compile() throws PatternSyntaxException { method in class:Pattern
405 * Equivalent to {@code Pattern.compile(regularExpression).matcher(input).matches()}
445 compile(); method
    [all...]
  /system/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...]
  /external/clang/test/Parser/
MicrosoftExtensions.cpp 185 this wont compile.
188 this wont compile.
202 this wont compile.
206 this wont compile.
223 this wont compile.
227 this wont compile.
  /packages/providers/CalendarProvider/
maketests.py 35 DTSTART_TZID = re.compile("DTSTART;TZID=(.*):(.*)")
36 DTSTART = re.compile("DTSTART:(.*)")
37 DURATION = re.compile("DURATION:(.*)")
38 RRULE = re.compile("RRULE:(.*)")
39 TIME = re.compile("(....)-(..)-(..)T(..):(..):(..)....([+-])(..):(..)")
40 TIMEZ = re.compile("(....)-(..)-(..)T(..):(..):(..)....Z")
  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
ReplaceTest.java 35 Pattern p = Pattern.compile(pattern);
51 p = Pattern.compile(pattern);
61 p = Pattern.compile(pattern);
  /external/pcre/
makevp.bat 2 :: PH 19-03-07 renamed !compile.txt and !linklib.txt as makevp-compile.txt and
4 :: PH 26-03-07 re-renamed !compile.txt and !linklib.txt as makevp-c.txt and
18 REM This file has been modified and extended to compile with newer PCRE releases
44 REM compile and link the PCRE library into lib: option -B for ASM compile works too
  /libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
ReplaceTest.java 32 Pattern p = Pattern.compile(pattern);
48 p = Pattern.compile(pattern);
58 p = Pattern.compile(pattern);
  /dalvik/dx/src/com/android/dx/command/grep/
Main.java 31 int count = new Grep(dex, Pattern.compile(pattern), new PrintWriter(System.out)).grep();
  /external/easymock/src/org/easymock/internal/matchers/
Find.java 35 && Pattern.compile(regex).matcher((String) actual).find();
  /external/guava/src/com/google/common/io/
PatternFilenameFilter.java 43 this(Pattern.compile(patternStr));
  /external/webkit/Tools/gdb/
webkit.py 254 (re.compile("^WTF::Vector<.*>$"), WTFVectorPrinter),
255 (re.compile("^WTF::AtomicString$"), WTFAtomicStringPrinter),
256 (re.compile("^WTF::CString$"), WTFCStringPrinter),
257 (re.compile("^WTF::String$"), WTFStringPrinter),
258 (re.compile("^WebCore::KURLGooglePrivate$"), WebCoreKURLGooglePrivatePrinter),
259 (re.compile("^WebCore::QualifiedName$"), WebCoreQualifiedNamePrinter),
260 (re.compile("^JSC::UString$"), JSCUStringPrinter),
261 (re.compile("^JSC::Identifier$"), JSCIdentifierPrinter),
262 (re.compile("^JSC::JSString$"), JSCJSStringPrinter),
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/build/
BaseBuilderTest.java 27 Pattern p = Pattern.compile( "^(.+):(\\d+):\\s(.+)$"); //$NON-NLS-1$
  /development/apps/BuildWidget/
Android.mk 6 # Only compile source java files in this apk.
  /development/samples/ActionBarCompat/
Android.mk 6 # Only compile source java files in this apk.

Completed in 1761 milliseconds

12 3 4 5 6 7 8 91011>>