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

<<11121314151617181920>>

  /external/qemu/
gen-skin.py 9 import sys, os, string, re namespace
  /external/regex-re2/re2/
prefilter.h 77 static Info* BuildInfo(Regexp* re);
  /external/v8/test/mjsunit/
ascii-regexp-subject.js 40 function repeatRegexp(re) {
42 re.test(s);
regexp-captures.js 28 var re = /^(((N({)?)|(R)|(U)|(V)|(B)|(H)|(n((n)|(r)|(v)|(h))?)|(r(r)?)|(v)|(b((n)|(b))?)|(h))|((Y)|(A)|(E)|(o(u)?)|(p(u)?)|(q(u)?)|(s)|(t)|(u)|(w)|(x(u)?)|(y)|(z)|(a((T)|(A)|(L))?)|(c)|(e)|(f(u)?)|(g(u)?)|(i)|(j)|(l)|(m(u)?)))+/; variable
29 var r = new RegExp(re)
testcfg.py 31 import re namespace
34 FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)")
35 FILES_PATTERN = re.compile(r"//\s+Files:(.*)")
36 SELF_SCRIPT_PATTERN = re.compile(r"//\s+Env: TEST_FILE_NAME")
string-external-cached.js 63 var re = /(A|B)/;
78 assertEquals(["A", "A"], re.exec(ascii));
79 assertEquals(["B", "B"], re.exec(ascii_slice));
81 assertEquals(["A", "A"], re.exec(twobyte));
82 assertEquals(["B", "B"], re.exec(twobyte_slice));
  /external/v8/test/preparser/
strict-octal-indirect-regexp.js 32 var re = RegExp("Hello\\040World");
33 return re;
strict-octal-regexp.js 32 var re = /hello\040world/;
33 return re;
  /external/webkit/LayoutTests/fast/url/script-tests/
ipv4.js 62 // Old trunctations tests. They're all "BROKEN" now.
97 // It appears that we're supposed to apply a default canonicalization.
  /external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
react-to-vsprops-changes.py 5 import re namespace
  /frameworks/base/core/java/android/accessibilityservice/
UiTestAutomationBridge.java 196 } catch (RemoteException re) {
197 throw new IllegalStateException("Cound not register UiAutomationService.", re);
237 } catch (RemoteException re) {
238 Log.e(LOG_TAG, "Error while unregistering UiTestAutomationService", re);
  /ndk/sources/host-tools/sed-4.2.1/sed/
regexp.c 54 errcode = regncomp(&new_regex->pattern, new_regex->re, new_regex->sz,
105 error = re_compile_pattern (new_regex->re, new_regex->sz,
147 /* // matches the last RE */
158 memcpy (new_regex->re, get_buffer(b), re_len);
164 new_regex->sz = normalize_text(new_regex->re, re_len, TEXT_REGEX);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
AbstractContactsProvider.java 166 } catch (RuntimeException re) {
168 throw re;
208 } catch (RuntimeException re) {
210 throw re;
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 21 import re namespace
55 # That re.compile raises SyntaxError was determined empirically.
59 object_re = re.compile(object_regexp)
63 name_re = re.compile (name_regexp)
68 subname_re = re.compile(subname_regexp)
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 21 import re namespace
55 # That re.compile raises SyntaxError was determined empirically.
59 object_re = re.compile(object_regexp)
63 name_re = re.compile (name_regexp)
68 subname_re = re.compile(subname_regexp)
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
tst-rxspencer.c 217 regex_t re; local
221 n = regcomp (&re, pattern, cflags);
251 regerror (n, &re, buf, sizeof (buf));
258 regfree (&re);
271 if (regexec (&re, string, 10, rm, eflags))
273 regfree (&re);
280 regfree (&re);
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h 147 // RE - a simple regular expression class using the POSIX
789 // Defines RE.
793 class GTEST_API_ RE {
797 RE(const RE& other) { Init(other.pattern()); }
799 // Constructs an RE from a string.
800 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT
804 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT
808 RE(const char* regex) { Init(regex); } // NOLINT
809 ~RE();
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarEventModel.java 150 ReminderEntry re = (ReminderEntry) obj; local
152 if (re.mMinutes != mMinutes) {
159 return re.mMethod == mMethod ||
160 (re.mMethod == Reminders.METHOD_DEFAULT && mMethod == Reminders.METHOD_ALERT) ||
161 (re.mMethod == Reminders.METHOD_ALERT && mMethod == Reminders.METHOD_DEFAULT);
173 public int compareTo(ReminderEntry re) {
174 if (re.mMinutes != mMinutes) {
175 return re.mMinutes - mMinutes;
177 if (re.mMethod != mMethod) {
178 return mMethod - re.mMethod
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
b.c 63 int rtok; /* next token in current re */
66 static uschar *prestr; /* current position in current re */
67 static uschar *lastre; /* origin of last re */
85 if (setvec == 0) { /* first time through any RE */
137 f->accept = poscnt-1; /* penter has computed number of positions in re */
140 if ((f->posns[0] = (int *) calloc(1, *(f->re[0].lfollow)*sizeof(int))) == NULL)
158 k = *(f->re[0].lfollow);
163 (f->posns[2])[i] = (f->re[0].lfollow)[i];
347 f->re[info(v)].ltype = type(v);
348 f->re[info(v)].lval.np = right(v)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 179 catch ( RecognitionException re )
181 ReportError(re);
182 Recover(input,re);
398 catch ( RecognitionException re )
400 ReportError(re);
401 Recover(input,re);
701 catch ( RecognitionException re )
703 ReportError(re);
704 Recover(input,re);
776 // This re-reads a sub-AST of our input AST
    [all...]
ProfileTreeGrammar.cs 184 catch ( RecognitionException re )
186 ReportError(re);
187 Recover(input,re);
403 catch ( RecognitionException re )
405 ReportError(re);
406 Recover(input,re);
706 catch ( RecognitionException re )
708 ReportError(re);
709 Recover(input,re);
781 // This re-reads a sub-AST of our input AST
    [all...]
DebugGrammarParser.cs 228 catch ( RecognitionException re )
230 ReportError(re);
231 Recover(input,re);
232 retval.tree = (CommonTree)adaptor.ErrorNode(input, retval.start, input.LT(-1), re);
515 catch ( RecognitionException re )
517 ReportError(re);
518 Recover(input,re);
519 retval.tree = (CommonTree)adaptor.ErrorNode(input, retval.start, input.LT(-1), re);
667 catch ( RecognitionException re )
669 ReportError(re);
    [all...]
ProfileGrammarParser.cs 232 catch ( RecognitionException re )
234 ReportError(re);
235 Recover(input,re);
236 retval.tree = (CommonTree)adaptor.ErrorNode(input, retval.start, input.LT(-1), re);
519 catch ( RecognitionException re )
521 ReportError(re);
522 Recover(input,re);
523 retval.tree = (CommonTree)adaptor.ErrorNode(input, retval.start, input.LT(-1), re);
671 catch ( RecognitionException re )
673 ReportError(re);
    [all...]
  /external/chromium/third_party/libevent/
event_rpcgen.py 9 import re namespace
19 white = re.compile(r'^\s+')
20 cppcomment = re.compile(r'\/\/.*$')
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/net/buildbot/
buildbot.py 38 import re namespace
116 file_name_regexp = re.compile(r"r(?P<revision>\d+) \((?P<build_number>\d+)\)")
187 # the red build we're worried about. We assume that any
304 if not re.match('\D', revision_string) \
310 builder['is_green'] = not re.search('fail', cell.renderContents()) or \
311 not not re.search('lost', cell.renderContents())
314 link_match = re.match(status_link_regexp, status_link['href'])
329 match = re.match("(?P<pending_builds>\d) pending", activity_lines[-1])
346 if re.match(name_regexp, builder_name):
412 file_rows = soup.find('table').findAll('tr', {'class': re.compile(r'\b(?:directory|file)\b')}
    [all...]

Completed in 555 milliseconds

<<11121314151617181920>>