HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 201 - 225 of 795) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/antlr/antlr-3.4/runtime/Python/tests/
t008lexer.py 16 def reportError(self, re):
18 raise re
t009lexer.py 16 def reportError(self, re):
18 raise re
t044trace.py 27 def recover(self, input, re):
50 def recover(self, input, re):
  /external/jmonkeyengine/
Android.mk 15 # stripped out even if they're compiled into the jar. You will need
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Function/
regress-58274.js 161 var re = /\s*function\s+(\S+)\s*\(/;
162 var arr = s.match(re);
  /external/webkit/Tools/QueueStatusServer/model/
queues.py 30 import re namespace
100 _dash_regexp = re.compile("-")
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex.c 36 # define re_set_registers(bu, re, nu, st, en) \
37 __re_set_registers (bu, re, nu, st, en)
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapTempFileLiteral.java 79 // It's probably possible if we're low on storage and the system clears the cache dir.
104 } catch (RuntimeException re) {
106 Log.w(Logging.LOG_TAG, "Failed to remove temp file: " + re.getMessage());
  /external/dbus/test/
unused-code-gc.py 6 import re namespace
92 sym_re = re.compile ('([0-9a-f]+) <([^>]+)>:')
94 ref_re = re.compile (' <([^>]+)> *$')
96 file_re = re.compile ('^(\/[^:].*):[0-9]+$')
98 funcname_re = re.compile ('([^+]+)\+[0-9a-fx]+')
100 dynsym_re = re.compile ('T ([^ \n]+)$')
  /external/oprofile/
opimport_pull 4 import re
85 deleted_pattern = re.compile(" \(deleted\)$");
100 pattern = re.compile("(^raw_samples)(.*)/(.*)$")
  /external/skia/bench/
bench_util.py 7 import re namespace
64 settingsMatch = re.search(settings_re, line)
67 for settingMatch in re.finditer(setting_re, settingsMatch.group(1)):
74 new_bench = re.search(bench_re, line)
80 for new_config in re.finditer(config_re, line):
83 for new_time in re.finditer(time_re, times):
  /external/v8/test/mjsunit/bugs/
bug-617.js 38 var re = /foo/; variable
40 re.exec = make_sure_we_dont_get_here;
42 re("foo");
  /external/v8/test/mjsunit/regress/
regress-227.js 28 var re = /\u23a1|x/; variable
29 var res = re.exec("!");
32 res = re.exec("!x");
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
decoder.py 4 import re namespace
8 FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
60 STRINGCHUNK = re.compile(r'(.*?)(["\\])', FLAGS)
116 WHITESPACE = re.compile(r'\s*', FLAGS)
  /frameworks/base/core/java/android/accessibilityservice/
AccessibilityService.java 437 } catch (RemoteException re) {
438 Log.w(LOG_TAG, "Error while calling performGlobalAction", re);
460 } catch (RemoteException re) {
461 Log.w(LOG_TAG, "Error while getting AccessibilityServiceInfo", re);
493 } catch (RemoteException re) {
494 Log.w(LOG_TAG, "Error while setting AccessibilityServiceInfo", re);
  /packages/apps/Browser/tools/
get_search_engines.py 29 import re namespace
89 str = re.sub(r'\\x([a-fA-F0-9]{1,4})', r'&#x\1;', str)
107 search_obj = re.search(re_exp, self.chrome_data)
128 engine_data_str = re.sub('\"\s+\"', '', engine_data_str)
129 engine_data_str = re.sub('\"\s+L\"', '', engine_data_str)
164 engines_str = re.sub('\/\*.+\*\/', '', engines_str)
165 engines_str = re.sub('\s+', '', engines_str)
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCParser.m     [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCParser.m     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 128 // RE - a simple regular expression class using the POSIX
618 // Defines RE.
622 class RE {
624 // Constructs an RE from a string.
626 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT
630 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT
633 RE(const char* regex) { Init(regex); } // NOLINT
634 ~RE();
639 // FullMatch(str, re) returns true iff regular expression re matche
    [all...]
  /external/chromium/testing/gtest/test/
gtest-port_test.cc 348 // Defines StringTypes as the list of all string types that class RE
359 // Tests RE's implicit constructors.
361 const RE empty(TypeParam(""));
364 const RE simple(TypeParam("hello"));
367 const RE normal(TypeParam(".*(\\w+)"));
371 // Tests that RE's constructors reject invalid regular expressions.
374 const RE invalid(TypeParam("?"));
378 // Tests RE::FullMatch().
380 const RE empty(TypeParam(""));
381 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
  /external/gtest/test/
gtest-port_test.cc 368 // Defines StringTypes as the list of all string types that class RE
379 // Tests RE's implicit constructors.
381 const RE empty(TypeParam(""));
384 const RE simple(TypeParam("hello"));
387 const RE normal(TypeParam(".*(\\w+)"));
391 // Tests that RE's constructors reject invalid regular expressions.
394 const RE invalid(TypeParam("?"));
398 // Tests RE::FullMatch().
400 const RE empty(TypeParam(""));
401 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty))
    [all...]
  /external/chromium/build/util/
lastchange.py 10 import re namespace
137 match = re.search(r'^\w+://.*$', output, re.M)
160 match = re.search(r'\S+$', output)
175 git_re = re.compile(r'^\s*git-svn-id:\s+(\S+)@(\d+)')
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-port.h 96 // RE - a simple regular expression class using the POSIX
331 // Defines RE. Currently only needed for death tests.
335 class RE {
337 // Constructs an RE from a string.
339 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT
343 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT
346 RE(const char* regex) { Init(regex); } // NOLINT
347 ~RE();
352 // Returns true iff str contains regular expression re.
357 static bool PartialMatch(const ::std::string& str, const RE& re)
    [all...]
  /external/icu4c/i18n/
uregex.cpp 84 static UBool validateRE(const RegularExpression *re, UBool requiresText, UErrorCode *status) {
88 if (re == NULL || re->fMagic != REXP_MAGIC) {
92 // !!! Not sure how to update this with the new UText backing, which is stored in re->fMatcher anyway
93 if (requiresText && re->fText == NULL && !re->fOwnsText) {
124 RegularExpression *re = new RegularExpression; local
127 if (re == NULL || refC == NULL || patBuf == NULL) {
129 delete re;
134 re->fPatRefCount = refC
204 RegularExpression *re = new RegularExpression; local
268 RegularExpression *re = (RegularExpression*)re2; local
    [all...]
  /build/tools/
event_log_tags.py 17 import re namespace
68 parts = re.split(r"\s+", line, 2)
97 if not re.match(r"\(.*\)\s*$", description):

Completed in 1497 milliseconds

1 2 3 4 5 6 7 891011>>