HomeSort by relevance Sort by last modified time
    Searched refs:matched (Results 76 - 100 of 286) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 178 matched = search(pattern, s)
179 if not matched:
181 start_match_index = matched.start(0)
182 end_match_index = matched.end(0)
195 # Start with the given row and trim off everything before what should be matched.
221 # Start with the given row and trim off everything past what may be matched.
    [all...]
  /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'
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/backward/v402/content/
shortcut_dict_content.cpp 177 bool matched = true; local
180 matched = false;
184 if (matched) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/content/
shortcut_dict_content.cpp 162 bool matched = true; local
165 matched = false;
169 if (matched) {
  /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];
  /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 142 InternalMmapVector<Suppression *> *matched) {
145 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;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.cpp 224 const bool matched = (currentCodePoints[j] == baseLowerC local
226 if (matched) {
239 const bool matched = (currentCodePoints[j] == baseLowerC local
241 if (matched) {
  /external/lldb/test/
lldbtest.py 170 """Helper function to return the line number of the first matched string."""
    [all...]
  /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_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 359 matched = ProcMaps.MAPS_PATTERN.match(line)
360 if matched:
362 int(matched.group(1), 16), # begin
363 int(matched.group(2), 16), # end
364 matched.group(3), # readable
365 matched.group(4), # writable
366 matched.group(5), # executable
367 matched.group(6), # private
368 int(matched.group(7), 16), # offset
369 matched.group(8), # majo
    [all...]
  /external/libcxx/test/re/re.submatch/re.submatch.op/
compare.pass.cpp 228 sm1.matched = true;
232 sm2.matched = true;
  /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))

Completed in 2392 milliseconds

1 2 34 5 6 7 8 91011>>