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

<<11121314151617181920>>

  /external/javassist/src/main/javassist/
CtNewConstructor.java 69 CtMember obj = compiler.compile(src);
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
AsYouTypeFormatter.java 61 private static final Pattern CHARACTER_CLASS_PATTERN = Pattern.compile("\\[([^\\[\\]])*\\]");
67 private static final Pattern STANDALONE_DIGIT_PATTERN = Pattern.compile("\\d(?=[^,}][^,}])");
75 Pattern.compile("[" + PhoneNumberUtil.VALID_PUNCTUATION + "]*" +
86 private Pattern digitPattern = Pattern.compile(digitPlaceholder);
PhoneNumberUtil.java 188 Pattern.compile("[\\d]+(?:[~\u2053\u223C\uFF5E][\\d]+)?");
205 static final Pattern PLUS_CHARS_PATTERN = Pattern.compile("[" + PLUS_CHARS + "]+");
206 private static final Pattern SEPARATOR_PATTERN = Pattern.compile("[" + VALID_PUNCTUATION + "]+");
207 private static final Pattern CAPTURING_DIGIT_PATTERN = Pattern.compile("(" + DIGITS + ")");
216 private static final Pattern VALID_START_CHAR_PATTERN = Pattern.compile(VALID_START_CHAR);
224 static final Pattern SECOND_NUMBER_START_PATTERN = Pattern.compile(SECOND_NUMBER_START);
230 static final Pattern UNWANTED_END_CHAR_PATTERN = Pattern.compile(UNWANTED_END_CHARS);
234 private static final Pattern VALID_ALPHA_PHONE_PATTERN = Pattern.compile("(?:.*?[A-Za-z]){3}.*");
300 Pattern.compile("(?:" + EXTN_PATTERNS_FOR_PARSING + ")$", REGEX_FLAGS);
305 Pattern.compile(VALID_PHONE_NUMBER + "(?:" + EXTN_PATTERNS_FOR_PARSING + ")?", REGEX_FLAGS)
    [all...]
  /external/llvm/tools/lto/
lto.cpp 293 return cg->compile(length, sLastErrorString);
  /external/llvm/utils/
check-each-file 128 echo Trying to compile $f with native gcc and rebuild $program
findmisopt 77 # optimizations that opt -std-compile-opts and gccld run, in the same order.
78 opt_switches=`llvm-as < /dev/null -o - | opt -std-compile-opts -disable-output -debug-pass=Arguments 2>&1 | sed 's/Pass Arguments: //'`
  /external/markdown/markdown/extensions/
def_list.py 29 RE = re.compile(r'(^|\n)[ ]{0,3}:[ ]{1,3}(.*?)(\n|$)')
  /external/webkit/Source/JavaScriptCore/runtime/
Executable.cpp 127 m_jitCodeForCall = JIT::compile(scopeChainNode->globalData, m_evalCodeBlock.get());
185 m_jitCodeForCall = JIT::compile(scopeChainNode->globalData, m_programCodeBlock.get());
267 m_jitCodeForCall = JIT::compile(scopeChainNode->globalData, m_codeBlockForCall.get(), &m_jitCodeForCallWithArityCheck);
313 m_jitCodeForConstruct = JIT::compile(scopeChainNode->globalData, m_codeBlockForConstruct.get(), &m_jitCodeForConstructWithArityCheck);
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_derivedsourcesallinone.py 52 conditionalPattern = re.compile('interface[\s]*\[[^\]]*Conditional=([\_0-9a-zA-Z&|]*)')
  /external/webkit/Tools/Scripts/
print-vse-failure-logs 94 output_window_table = soup.find(text=re.compile("Output Window")).findParent("table")
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
diff_parser_unittest.py 131 p = re.compile(r' ([a|b])/')
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
test_expectations.py 62 self._output_regex = re.compile('Line:(?P<line>\d+)\s*(?P<message>.+)')
  /frameworks/base/core/java/android/content/
UriMatcher.java 192 static final Pattern PATH_SPLIT_PATTERN = Pattern.compile("/");
  /frameworks/base/core/java/android/net/
WebAddress.java 54 static Pattern sAddressPattern = Pattern.compile(
  /frameworks/compile/libbcc/lib/ExecutionEngine/
Compiler.h 62 // If given, this will be the name of the target triple to compile for.
154 int compile(bool compileOnly);
  /frameworks/ex/common/java/com/android/common/
Rfc822Validator.java 49 Pattern.compile("[^\\s@]+@([^\\s@\\.]+\\.)+[a-zA-z][a-zA-Z][a-zA-Z]*");
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java 55 private static final Pattern PATTERN_START_OF_LINE = Pattern.compile("(?m)^");
56 private static final Pattern PATTERN_ENDLINE_CRLF = Pattern.compile("\r\n");
67 private static final Pattern BODY_PATTERN = Pattern.compile(
74 Pattern.compile("\\r?\\n");
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ProfileAwareUriMatcher.java 35 private static final Pattern PATH_SPLIT_PATTERN = Pattern.compile("/");
  /sdk/chimpchat/src/com/android/chimpchat/adb/
AdbBackend.java 86 Pattern pattern = Pattern.compile(deviceIdRegex);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
FileListingService.java 35 Pattern.compile(".*\\.apk", Pattern.CASE_INSENSITIVE); //$NON-NLS-1$
42 private final static Pattern sPmPattern = Pattern.compile("^package:(.+?)=(.+)$"); //$NON-NLS-1$
99 private static Pattern sLsPattern = Pattern.compile(
112 private final static Pattern sEscapePattern = Pattern.compile(
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventLogParser.java 59 private final static Pattern PATTERN_SIMPLE_TAG = Pattern.compile(
61 private final static Pattern PATTERN_TAG_WITH_DESC = Pattern.compile(
63 private final static Pattern PATTERN_DESCRIPTION = Pattern.compile(
66 private final static Pattern TEXT_LOG_LINE = Pattern.compile(
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/
VersionCheck.java 50 private final static Pattern sPluginVersionPattern = Pattern.compile(
  /sdk/ide_common/src/com/android/ide/common/resources/configuration/
VersionQualifier.java 29 private final static Pattern sCountryCodePattern = Pattern.compile("^v(\\d+)$");//$NON-NLS-1$
  /system/core/libcutils/
private.h 150 you may need to compile with "-DHAVE_STDINT_H".
  /build/target/board/generic/
BoardConfig.mk 3 # Product-specific compile-time definitions.

Completed in 974 milliseconds

<<11121314151617181920>>