HomeSort by relevance Sort by last modified time
    Searched refs:matched (Results 51 - 75 of 212) sorted by null

1 23 4 5 6 7 8 9

  /external/chromium_org/tools/find_runtime_symbols/
prepare_symbol_info.py 100 matched = re.match('^(.*)\.maps$', os.path.basename(maps_path))
101 if matched:
102 output_dir_path = matched.group(1) + '.pre'
104 matched = re.match('^/proc/(.*)/maps$', os.path.realpath(maps_path))
105 if matched:
106 output_dir_path = matched.group(1) + '.pre'
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
Dbg.stg 42 -(BOOL) evalPredicate:(NSString *)predicate matched:(BOOL)result;<\n>
106 -(BOOL) evalPredicate:(NSString *)predicate matched:(BOOL)result
108 [debugListener semanticPredicate:predicate matched:result];
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/
v8_types.py 87 matched = re.match(r'([\w\s]+)\[\]', idl_type)
88 return matched and matched.group(1)
137 matched = re.match(r'sequence<([\w\s]+)>', idl_type)
138 return matched and matched.group(1)
  /ndk/sources/host-tools/make-3.81/glob/
fnmatch.c 310 /* `/' cannot be matched. */
330 goto matched;
374 goto matched;
388 goto matched;
398 goto matched;
413 goto matched;
427 matched:
428 /* Skip the rest of the [...] that already matched. */
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
RewriteRuleNodeStream.as 4 /** Queues up nodes matched on left side of -> in a tree parser. This is
  /external/chromium_org/third_party/re2/re2/
onepass.cc 217 // because we use it to tell if we matched.
251 bool matched = false; local
302 matched = true;
330 matched = true;
335 if (!matched)
424 bool matched = false; local
463 if (matched)
537 if (matched) {
545 matched = true;
bitstate.cc 143 bool matched = false; local
268 matched = true;
289 return matched;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_suppressions.cc 137 InternalMmapVector<Suppression *> *matched) {
140 matched->push_back(&suppressions_[i]);
  /external/regex-re2/re2/
onepass.cc 217 // because we use it to tell if we matched.
251 bool matched = false; local
302 matched = true;
330 matched = true;
335 if (!matched)
424 bool matched = false; local
463 if (matched)
537 if (matched) {
545 matched = true;
bitstate.cc 143 bool matched = false; local
268 matched = true;
289 return matched;
  /frameworks/compile/mclinker/include/mcld/Object/
SectionMap.h 80 bool matched(const NamePair& pNamePair,
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.cpp 218 const bool matched = (currentCodePoints[j] == baseLowerC local
220 if (matched) {
233 const bool matched = (currentCodePoints[j] == baseLowerC local
235 if (matched) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/tasm/
tasm.c 265 int i, matched; local
333 matched = 0;
337 matched = 1;
338 if (!matched) {
829 int i, matched; local
834 matched = -1;
840 matched = i;
841 if (matched >= 0 && stdmacs[matched].macros)
842 yasm_preproc_add_standard(cur_preproc, stdmacs[matched].macros)
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.cc 154 bool matched = (0 == first_line.find("#!rtpplay1.0 ")); local
159 matched &= (pos != std::string::npos && pos < first_line.size() - 1);
160 for (++pos; pos < first_line.size() && matched; ++pos) {
161 matched &= (0 != isdigit(first_line[pos]));
164 return matched;
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
rtpdump.cc 191 bool matched = (0 == first_line.find("#!rtpplay1.0 ")); local
196 matched &= (pos != std::string::npos && pos < first_line.size() - 1);
197 for (++pos; pos < first_line.size() && matched; ++pos) {
198 matched &= (0 != isdigit(first_line[pos]));
201 return matched;
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
valparam.c 227 int matched; local
236 matched = 0;
245 matched = 1;
258 matched = 1;
265 if (!matched) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/frontends/yasm/
yasm.c 357 int i, matched; local
439 matched = 0;
443 matched = 1;
444 if (!matched) {
478 matched = 0;
484 matched = 1;
492 if (!matched) {
1208 int i, matched; local
    [all...]
  /external/chromium_org/tools/linux/
procfs.py 344 matched = ProcMaps.MAPS_PATTERN.match(line)
345 if matched:
347 int(matched.group(1), 16), # begin
348 int(matched.group(2), 16), # end
349 matched.group(3), # readable
350 matched.group(4), # writable
351 matched.group(5), # executable
352 matched.group(6), # private
353 int(matched.group(7), 16), # offset
354 matched.group(8), # majo
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.op/
compare.pass.cpp 228 sm1.matched = true;
232 sm2.matched = true;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRDebugEventListener.h 68 /** An input token was consumed; matched by any kind of element.
69 * Trigger after the token was matched by things like match(), matchAny().
74 * Trigger after the token was matched by things like match(), matchAny().
191 * but not matched to anything in grammar. Anything between
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDebugEventListener.h 68 /** An input token was consumed; matched by any kind of element.
69 * Trigger after the token was matched by things like match(), matchAny().
74 * Trigger after the token was matched by things like match(), matchAny().
191 * but not matched to anything in grammar. Anything between
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRDebugEventListener.h 68 /** An input token was consumed; matched by any kind of element.
69 * Trigger after the token was matched by things like match(), matchAny().
74 * Trigger after the token was matched by things like match(), matchAny().
191 * but not matched to anything in grammar. Anything between
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDebugEventListener.h 68 /** An input token was consumed; matched by any kind of element.
69 * Trigger after the token was matched by things like match(), matchAny().
74 * Trigger after the token was matched by things like match(), matchAny().
191 * but not matched to anything in grammar. Anything between
197 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
  /external/chromium_org/tools/deep_memory_profiler/lib/
pageframe.py 90 matched = self._PATH_PATTERN.match(path)
91 if matched:
92 self._pid = int(matched.group(2))
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
HeaderItem.java 75 boolean matched = true;
78 matched = false;
82 if (matched) {

Completed in 1404 milliseconds

1 23 4 5 6 7 8 9