HomeSort by relevance Sort by last modified time
    Searched refs:compile (Results 401 - 425 of 869) sorted by null

<<11121314151617181920>>

  /external/guava/guava/src/com/google/common/net/
HostAndPort.java 136 private static final Pattern BRACKET_PATTERN = Pattern.compile("^\\[(.*:.*)\\](?::(\\d*))?$");
  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
StringUtil.java 25 Pattern pttn = Pattern.compile(delimiter);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
TextHtmlFunction.java 56 Pattern.compile("(" + EMAIL_REGEXP + ")|(" + WITH_SCHEME_REGEXP + ")|("
  /external/libcap-ng/libcap-ng-0.7/
compile 83 # Adjust compile command to suit cl
97 # configure might choose to run compile as 'compile cc -o foo foo.c'.
204 Usage: compile [--help] [--version] PROGRAM [ARGS]
218 echo "compile $scriptversion"
236 # configure might choose to run compile as 'compile cc -o foo foo.c'.
289 # Run the compile.
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberUtil.java 213 Pattern.compile("[\\d]+(?:[~\u2053\u223C\uFF5E][\\d]+)?");
230 static final Pattern PLUS_CHARS_PATTERN = Pattern.compile("[" + PLUS_CHARS + "]+");
231 private static final Pattern SEPARATOR_PATTERN = Pattern.compile("[" + VALID_PUNCTUATION + "]+");
232 private static final Pattern CAPTURING_DIGIT_PATTERN = Pattern.compile("(" + DIGITS + ")");
241 private static final Pattern VALID_START_CHAR_PATTERN = Pattern.compile(VALID_START_CHAR);
249 static final Pattern SECOND_NUMBER_START_PATTERN = Pattern.compile(SECOND_NUMBER_START);
255 static final Pattern UNWANTED_END_CHAR_PATTERN = Pattern.compile(UNWANTED_END_CHARS);
259 private static final Pattern VALID_ALPHA_PHONE_PATTERN = Pattern.compile("(?:.*?[A-Za-z]){3}.*");
333 Pattern.compile("(?:" + EXTN_PATTERNS_FOR_PARSING + ")$", REGEX_FLAGS);
338 Pattern.compile(VALID_PHONE_NUMBER + "(?:" + EXTN_PATTERNS_FOR_PARSING + ")?", REGEX_FLAGS)
    [all...]
  /external/markdown/markdown/extensions/
codehilite.py 150 c = re.compile(r'''
toc.py 35 header_rgx = re.compile("[Hh][123456]")
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessage.java 159 .compile("; *charset *= *([^;\"]*|\"([^\"]|\\\\\")*\")(;|$)");
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
AttrResourceLoader.java 27 XPathExpression stringsXPath = XPathFactory.newInstance().newXPath().compile("/resources/declare-styleable/attr/enum");
  /external/smack/src/com/kenai/jbosh/
ComposableBody.java 61 Pattern.compile("<" + "(?:(?:[^:\t\n\r >]+:)|(?:\\{[^\\}>]*?}))?"
  /external/smack/src/org/jivesoftware/smack/proxy/
HTTPProxySocketFactory.java 170 = Pattern.compile("HTTP/\\S+\\s(\\d+)\\s(.*)\\s*");
  /external/srec/srec/Grammar/include/
SR_Grammar.h 95 ESR_ReturnCode(*compile)(struct SR_Grammar_t* self); member in struct:SR_Grammar_t
261 * - Compile from expressions (not supported by SREC) or load pre-compiled grammars
  /external/srec/srec/Grammar/src/
SR_Grammar.c 35 return self->compile(self);
  /external/v8/test/message/
testcfg.py 33 FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)")
  /external/v8/test/mjsunit/
constant-folding.js 29 // The code generator now handles compile-time constants specially.
30 // Test the code generated when operands are known at compile time
  /external/webkit/Source/JavaScriptCore/runtime/
RegExpPrototype.cpp 53 putDirectFunctionWithoutTransition(exec, new (exec) JSFunction(exec, globalObject, functionStructure, 2, exec->propertyNames().compile, regExpProtoFuncCompile), DontEnum);
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
Compiler.cpp 104 bool TCompiler::compile(const char* const shaderStrings[], function in class:TCompiler
123 // We preserve symbols at the built-in level from compile-to-compile.
ShaderLang.cpp 141 // Do an actual compile on the given strings. The result is left
142 // in the given compile object.
164 bool success = compiler->compile(shaderStrings, numStrings, compileOptions);