/external/compiler-rt/lib/tsan/rtl/ |
tsan_interface_ann.cc | 164 static void CollectMatchedBenignRaces(Vector<ExpectRace> *matched, 173 for (; i < matched->Size(); i++) { 174 ExpectRace *race0 = &(*matched)[i]; 182 if (i == matched->Size()) 183 matched->PushBack(*race); 199 Printf("ThreadSanitizer: Matched %d \"benign\" races (pid=%d):\n",
|
/external/compiler-rt/lib/lsan/ |
lsan_common.cc | 314 InternalMmapVector<Suppression *> matched(1); 315 suppression_ctx->GetMatched(&matched); 316 if (!matched.size()) 322 for (uptr i = 0; i < matched.size(); i++) 323 Printf("%7zu %10zu %s\n", static_cast<uptr>(matched[i]->hit_count), 324 matched[i]->weight, matched[i]->templ);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
elementsPanel.css | 289 .styles-section.matched-styles .properties { 343 .styles-section.matched-styles .properties li { 364 .styles-section.matched-styles .properties li.parent .expand-element { 377 .styles-section.matched-styles .properties li.parent .expand-element { 382 .styles-section.matched-styles .properties li.parent .expand-element { 386 .styles-section.matched-styles .properties li.parent.expanded .expand-element { 395 .styles-section.matched-styles:not(.read-only):hover .properties .enabled-button { 399 .styles-section.matched-styles:not(.read-only) .properties li.disabled .enabled-button { 416 .styles-section.matched-styles .properties ol.expanded {
|
/external/chromium_org/third_party/mesa/src/src/egl/main/ |
eglconfig.c | 433 EGLBoolean matched = EGL_TRUE; local 449 matched = EGL_FALSE; 453 matched = EGL_FALSE; 457 matched = EGL_FALSE; 467 if (!matched) { 480 return matched; 723 /* get the number of matched configs */ 735 /* get the matched configs */
|
/external/mesa3d/src/egl/main/ |
eglconfig.c | 433 EGLBoolean matched = EGL_TRUE; local 449 matched = EGL_FALSE; 453 matched = EGL_FALSE; 457 matched = EGL_FALSE; 467 if (!matched) { 480 return matched; 723 /* get the number of matched configs */ 735 /* get the matched configs */
|
/frameworks/base/services/java/com/android/server/ |
LockSettingsService.java | 311 final boolean matched = Arrays.equals(stored, hash); 312 if (matched && !TextUtils.isEmpty(pattern)) { 315 return matched; 339 final boolean matched = Arrays.equals(stored, hash); 340 if (matched && !TextUtils.isEmpty(password)) { 343 return matched;
|
/build/tools/ |
java-layers.py | 109 matched = 0 113 if x > matched: 114 matched = x
|
/external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/browser/sync/ |
SyncTestUtil.java | 133 * @return whether the stats matched up before the timeout 154 boolean matched = false; 156 matched = CriteriaHelper.pollForCriteria(statChecker, UI_TIMEOUT_MS, CHECK_INTERVAL_MS); 161 return matched;
|
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/ |
profiler.js | 102 var matched = find(current); 103 if (matched) 104 previous = matched; 110 var matched = find(current); 111 if (matched) 112 previous.push(matched);
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRDebugEventProxy.h | 93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRDebugEventProxy.h | 93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRDebugEventProxy.h | 93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRDebugEventProxy.h | 93 - (void) semanticPredicate:(NSString *)predicate matched:(BOOL)result;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/ |
regex_grep_matcher.h | 62 { _M_results.at(__i).matched = __is_matched; }
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/ |
regex_grep_matcher.h | 62 { _M_results.at(__i).matched = __is_matched; }
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
regex_grep_matcher.h | 62 { _M_results.at(__i).matched = __is_matched; }
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
regex_grep_matcher.h | 62 { _M_results.at(__i).matched = __is_matched; }
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/ |
regex_grep_matcher.h | 62 { _M_results.at(__i).matched = __is_matched; }
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/ |
regex_grep_matcher.h | 62 { _M_results.at(__i).matched = __is_matched; }
|
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/ |
regex_grep_matcher.h | 68 { _M_results.at(__i).matched = __is_matched; }
|
/external/chromium/chrome/browser/renderer_host/ |
gtk_key_bindings_handler.cc | 38 bool matched = !edit_commands_.empty(); local 41 return matched;
|
/external/chromium_org/content/browser/renderer_host/ |
gtk_key_bindings_handler.cc | 40 bool matched = !edit_commands_.empty(); local 43 return matched;
|
/external/markdown/markdown/ |
treeprocessors.py | 93 data, matched, startIndex = self.__applyPattern( 96 if not matched:
|
/art/tools/ |
cpplint.py | 374 matched = _RE_SUPPRESSION.search(raw_line) 375 if matched: 376 category = matched.group(1) [all...] |
/external/libvpx/libvpx/tools/ |
cpplint.py | 373 matched = _RE_SUPPRESSION.search(raw_line) 374 if matched: 375 category = matched.group(1) [all...] |