HomeSort by relevance Sort by last modified time
    Searched refs:regex (Results 351 - 375 of 677) sorted by null

<<11121314151617181920>>

  /external/gtest/scripts/
pump.py 171 for (regex, token_type) in token_table:
172 m = regex.search(line)
174 # We found regex in lines
196 # We found a regex in line.
243 def ParseToken(lines, pos, regex, token_type):
245 m = regex.search(line)
261 def Skip(lines, pos, regex):
263 m = re.search(regex, line)
270 def SkipUntil(lines, pos, regex, token_type):
272 m = re.search(regex, line
    [all...]
  /external/guava/guava/src/com/google/common/base/
Splitter.java 30 import java.util.regex.Matcher;
31 import java.util.regex.Pattern;
209 @GwtIncompatible("java.util.regex")
242 * @throws java.util.regex.PatternSyntaxException if {@code separatorPattern}
247 @GwtIncompatible("java.util.regex")
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapText.java 40 import java.util.regex.Matcher;
41 import java.util.regex.Pattern;
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/font/plugins/
BitmapFontLoader.java 59 String regex = "[\\s=]+"; local
64 String[] tokens = line.split(regex);
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
StructuralWhitespaceStripper.java 43 import java.util.regex.Matcher;
44 import java.util.regex.Pattern;
99 * A regex snippet to match sequences of inline whitespace. The easiest way to define this is as
219 // The trailing whitespace regex should never fail to match a string.
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h 119 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
122 // GTEST_USES_SIMPLE_RE - our own simple regex is used;
273 // On some platforms, <regex.h> needs someone to define size_t, and
277 # include <regex.h> // NOLINT
283 // <regex.h> is not available on Windows. Use our own simple regex
289 // <regex.h> may not be available on this platform. Use our own
290 // simple regex implementation instead.
807 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
816 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLIN
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/scripts/
pump.py 171 for (regex, token_type) in token_table:
172 m = regex.search(line)
174 # We found regex in lines
196 # We found a regex in line.
243 def ParseToken(lines, pos, regex, token_type):
245 m = regex.search(line)
261 def Skip(lines, pos, regex):
263 m = re.search(regex, line)
270 def SkipUntil(lines, pos, regex, token_type):
272 m = re.search(regex, line
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 120 // GTEST_USES_POSIX_RE - enhanced POSIX regex is used. Do not confuse with
123 // GTEST_USES_SIMPLE_RE - our own simple regex is used;
276 // On some platforms, <regex.h> needs someone to define size_t, and
280 # include <regex.h> // NOLINT
286 // <regex.h> is not available on Windows. Use our own simple regex
292 // <regex.h> may not be available on this platform. Use our own
293 // simple regex implementation instead.
812 // A simple C++ wrapper for <regex.h>. It uses the POSIX Extended
821 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLIN
    [all...]
  /external/mockito/src/org/mockito/
Matchers.java 732 * @param regex
736 public static String matches(String regex) {
737 return reportMatcher(new Matches(regex)).returnString();
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
PropertyBoxParserImpl.java 29 import java.util.regex.Matcher;
30 import java.util.regex.Pattern;
  /external/skia/bench/
bench_util.py 85 """Parses given bench time line with regex and adds data to the given dic.
146 for regex in [config_re, tile_re]:
147 _ParseAndStoreTimes(regex, time_re, line, current_bench,
  /external/smack/src/org/jivesoftware/smack/
ServerTrustManager.java 33 import java.util.regex.Matcher;
34 import java.util.regex.Pattern;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/
baksmali.java 42 import java.util.regex.Matcher;
43 import java.util.regex.Pattern;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
DeodexUtil.java 35 import java.util.regex.Matcher;
36 import java.util.regex.Pattern;
  /frameworks/base/core/java/android/webkit/
URLUtil.java 20 import java.util.regex.Matcher;
21 import java.util.regex.Pattern;
384 /** Regex used to parse content-disposition headers */
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pDevice.java 23 import java.util.regex.Pattern;
24 import java.util.regex.Matcher;
WifiP2pGroup.java 26 import java.util.regex.Pattern;
27 import java.util.regex.Matcher;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaMmiCode.java 29 import java.util.regex.Pattern;
30 import java.util.regex.Matcher;
  /libcore/luni/src/main/java/java/lang/
HexStringParser.java 20 import java.util.regex.Matcher;
21 import java.util.regex.Pattern;
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 35 import java.util.regex.Matcher;
36 import java.util.regex.Pattern;
  /ndk/sources/cxx-stl/llvm-libc++/android/llvm-libc++/
Android.mk 24 regex.cpp \
  /packages/apps/Mms/src/com/android/mms/util/
SmileyParser.java 20 import java.util.regex.Matcher;
21 import java.util.regex.Pattern;
163 // Build a regex that looks like (:-)|:-(|...), but escaping the smilies
164 // properly so they will be interpreted literally by the regex matcher.
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractDownloadProviderFunctionalTest.java 270 String regex = "^" + expectedPrefix + ".*"; local
271 MoreAsserts.assertMatchesRegex(regex, actual);
  /prebuilts/sdk/17/
uiautomator.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
CompletionProposal.java 47 import java.util.regex.Matcher;
48 import java.util.regex.Pattern;

Completed in 1623 milliseconds

<<11121314151617181920>>