HomeSort by relevance Sort by last modified time
    Searched refs:Pattern (Results 501 - 525 of 688) sorted by null

<<2122232425262728

  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/processing/
ScopedException.java 31 import java.util.regex.Pattern;
  /libcore/jsr166-tests/src/test/java/jsr166/
JSR166TestCase.java 57 import java.util.regex.Pattern;
211 private static final Pattern methodFilter = methodFilter();
213 private static Pattern methodFilter() {
215 return (regex == null) ? null : Pattern.compile(regex);
254 // Matcher matcher = Pattern.compile("model name\\s*: (.*)")
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java 52 import java.util.regex.Pattern;
83 private static final Pattern mBlankLinePattern = Pattern.compile("^\\s*$[\n\r]",
84 Pattern.MULTILINE);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
traffic.h 72 PVOID Pattern;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
re.py 21 the pattern and the strings being processed can contain null bytes and
56 (?(id/name)yes|no) Matches yes pattern if the group with id/name matched,
57 the (optional) no pattern otherwise.
78 match Match a regular expression pattern to the beginning of a string.
79 search Search a string for the presence of a pattern.
80 sub Substitute occurrences of a pattern found in a string.
82 split Split a string by the occurrences of a pattern.
83 findall Find all occurrences of a pattern in a string.
85 compile Compile a pattern into a RegexObject.
126 DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilatio
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
re.py 21 the pattern and the strings being processed can contain null bytes and
56 (?(id/name)yes|no) Matches yes pattern if the group with id/name matched,
57 the (optional) no pattern otherwise.
78 match Match a regular expression pattern to the beginning of a string.
79 search Search a string for the presence of a pattern.
80 sub Substitute occurrences of a pattern found in a string.
82 split Split a string by the occurrences of a pattern.
83 findall Find all occurrences of a pattern in a string.
85 compile Compile a pattern into a RegexObject.
126 DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilatio
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
re.py 21 the pattern and the strings being processed can contain null bytes and
56 (?(id/name)yes|no) Matches yes pattern if the group with id/name matched,
57 the (optional) no pattern otherwise.
78 match Match a regular expression pattern to the beginning of a string.
79 search Search a string for the presence of a pattern.
80 sub Substitute occurrences of a pattern found in a string.
82 split Split a string by the occurrences of a pattern.
83 findall Find all occurrences of a pattern in a string.
85 compile Compile a pattern into a RegexObject.
126 DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilatio
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
re.py 21 the pattern and the strings being processed can contain null bytes and
56 (?(id/name)yes|no) Matches yes pattern if the group with id/name matched,
57 the (optional) no pattern otherwise.
78 match Match a regular expression pattern to the beginning of a string.
79 search Search a string for the presence of a pattern.
80 sub Substitute occurrences of a pattern found in a string.
82 split Split a string by the occurrences of a pattern.
83 findall Find all occurrences of a pattern in a string.
85 compile Compile a pattern into a RegexObject.
126 DEBUG = sre_compile.SRE_FLAG_DEBUG # dump pattern after compilatio
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
WifiScanningServiceTest.java 70 import java.util.regex.Pattern;
302 Pattern logLineRegex = Pattern.compile("^.+" + type + ": ClientInfo\\[uid=\\d+\\],Id=" +
303 id + ".*$", Pattern.MULTILINE);
312 Pattern logLineRegex = Pattern.compile("^.+" + callback + ": ClientInfo\\[uid=\\d+\\],Id=" +
313 id + extraPattern + "$", Pattern.MULTILINE);
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
TextUtilsTest.java 49 import java.util.regex.Pattern;
    [all...]
  /external/llvm/lib/CodeGen/
TargetInstrInfo.cpp 634 // 3. Pre-screen pattern candidates here: if an operand of the previous
636 // that pattern.
664 MachineCombinerPattern Pattern,
675 // operands may be commuted. Each row corresponds to a pattern value,
685 switch (Pattern) {
747 MachineInstr &Root, MachineCombinerPattern Pattern,
753 // Select the previous instruction in the sequence based on the input pattern.
755 switch (Pattern) {
768 assert(Prev && "Unknown pattern for machine combiner");
770 reassociateOps(Root, *Prev, Pattern, InsInstrs, DelInstrs, InstIdxForVirtReg)
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas     [all...]
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 80 import java.util.regex.Pattern;
    [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 44 import java.util.regex.Pattern;
84 private static final Pattern GLOBAL_PHONE_NUMBER_PATTERN =
85 Pattern.compile("[\\+]?[0-9.-]+");
851 Pattern p = Pattern.compile("(^[#*])(.*)([#*])(.*)(#)$");
877 p = Pattern.compile("(^[#*])(.*)([#*])(.*)");
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/cldr/
TestCLDRVsICU.java 28 import java.util.regex.Pattern;
98 return Pattern.compile(getEnvironmentString(key, defaultValue)).matcher("");
515 String pattern = "";
524 pattern = attributeValue;
534 SimpleDateFormat field = new SimpleDateFormat(pattern, locale);
544 + "\n\tField: " + pattern
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/cldr/
TestCLDRVsICU.java 27 import java.util.regex.Pattern;
94 return Pattern.compile(getEnvironmentString(key, defaultValue)).matcher("");
511 String pattern = "";
520 pattern = attributeValue;
530 SimpleDateFormat field = new SimpleDateFormat(pattern, locale);
540 + "\n\tField: " + pattern
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h     [all...]
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipHelper.java 33 import java.util.regex.Pattern;
238 String replaceStr = Pattern.quote(userProfile.getUserName() + "@");
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
PhoneCallDetailsHelperTest.java 40 import java.util.regex.Pattern;
422 Matcher matcher = Pattern.compile("(.*) (\\u2022) (\\d{2}:\\d{2})").matcher(
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
DatabaseWrapper.java 39 import java.util.regex.Pattern;
217 if (!Pattern.matches(mExplainQueryPlanRegexp, sql)) {
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i 384 class Pattern;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiResourceAttributeNode.java 73 import java.util.regex.Pattern;
317 Matcher m = Pattern.compile(".*?([a-z]+)/.*").matcher(prefix); //$NON-NLS-1$
  /build/kati/
eval.cc 254 Pattern(g_flags.ignore_optional_include_pattern).Match(fname)) {
  /external/clang/include/clang/Sema/
Template.h 515 void InstantiateEnumDefinition(EnumDecl *Enum, EnumDecl *Pattern);
  /external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java 21 import static java.util.regex.Pattern.quote;

Completed in 1291 milliseconds

<<2122232425262728