| /external/guava/guava/src/com/google/common/collect/ |
| ComputingConcurrentHashMap.java | 79 outer: while (true) { 164 continue outer; local
|
| /external/guava/guava/src/com/google/common/primitives/ |
| Doubles.java | 175 outer: 179 continue outer; local
|
| Ints.java | 190 outer: 194 continue outer; local
|
| Longs.java | 157 outer: 161 continue outer; local
|
| /external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/ |
| Ints.java | 189 outer: 193 continue outer; local
|
| /external/skia/src/core/ |
| SkRecorder.cpp | 156 void SkRecorder::onDrawDRRect(const SkRRect& outer, const SkRRect& inner, const SkPaint& paint) { 157 APPEND(DrawDRRect, paint, outer, inner);
|
| /external/skia/src/effects/ |
| SkAlphaThresholdFilter.cpp | 269 SkScalar outer = buffer.readScalar(); local 272 return SkAlphaThresholdFilter::Create(rgn, inner, outer, common.getInput(0)); 409 str->appendf("inner: %f outer: %f", fInnerThreshold, fOuterThreshold);
|
| /external/skia/src/ports/ |
| SkRemotableFontMgr_win_dw.cpp | 266 FontFallbackRenderer(const SkRemotableFontMgr_DirectWrite* outer, UINT32 character) 267 : fRefCount(1), fOuter(SkSafeRef(outer)), fCharacter(character) {
|
| /external/skia/tools/android/ |
| SkAndroidSDKCanvas.cpp | 170 void SkAndroidSDKCanvas::onDrawDRRect(const SkRRect& outer, 174 fProxyTarget->drawDRRect(outer, inner, filteredPaint);
|
| /external/v8/src/ast/ |
| scopes.cc | 223 // Reconstruct the outer scope chain from a closure's context chain. 323 // Add this scope as a new inner scope of the outer scope. 370 // Remove this scope from outer scope. 389 void Scope::ReplaceOuterScope(Scope* outer) { 390 DCHECK_NOT_NULL(outer); 393 DCHECK(!outer->already_resolved()); 396 outer->AddInnerScope(this); 397 outer_scope_ = outer; 754 Scope* outer = outer_scope_; local 755 if (outer == NULL) return true [all...] |
| /external/v8/test/cctest/ |
| types-fuzz.h | 196 TypeHandle Context(TypeHandle outer) { 197 return Type::Context(outer, region_);
|
| /external/v8/test/mjsunit/ |
| debug-liveedit-3.js | 33 // and must be recompiled because it uses variable from outer scope.
|
| debug-liveedit-4.js | 33 // and must be recompiled because it uses variable from outer scope.
|
| debug-scopes.js | 514 // Simple closure formed by returning an inner function referering the outer 538 // Simple closure formed by returning an inner function referering the outer 565 // Simple closure formed by returning an inner function referering the outer 566 // functions arguments. Using all arguments and locals from the outer function 594 // Simple closure formed by returning an inner function referering the outer 595 // functions arguments. Using all arguments and locals from the outer function 625 // Simple closure formed by returning an inner function referering the outer 627 // (including the inner function itself) from the outer function becomes part of
|
| /packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
| FilenameUtils.java | 313 outer: 330 continue outer; local [all...] |
| /art/runtime/base/ |
| timing_logger_test.cc | 103 const char* outersplit = "Outer Split"; 109 TimingLogger::ScopedTiming outer(outersplit, &logger); 137 const char* outersplit = "Outer Split";
|
| /external/clang/test/SemaCXX/ |
| enable_if.cpp | 139 template <typename T> void outer() { function
|
| /external/eigen/Eigen/src/Core/ |
| Ref.h | 28 * but accept a variable outer stride (leading dimension). 45 * the possibility to have a constant space inbetween each column, i.e.: the inner stride mmust be equal to 1, but the outer-stride (or leading dimension), 142 return StrideType::OuterStrideAtCompileTime != 0 ? m_stride.outer()
|
| /external/skia/include/core/ |
| SkDevice.h | 190 virtual void drawDRRect(const SkDraw&, const SkRRect& outer,
|
| /external/skia/tests/ |
| MathTest.cpp | 283 for (int outer = 0; outer < 100; outer++) { 284 rand.setSeed(outer);
|
| /external/v8/test/mjsunit/bugs/harmony/ |
| debug-blockscopes.js | 188 // Simple closure formed by returning an inner function referering to an outer 189 // block local variable and an outer function's parameter. Due to VM
|
| /external/webrtc/webrtc/common_audio/signal_processing/ |
| filter_ar_fast_q12_armv7.S | 28 @ r4: Iteration counter for the outer loop.
|
| /external/v8/test/cctest/compiler/ |
| test-loop-analysis.cc | 173 // This loop should be nested inside all the outer loops. 175 LoopTree::Loop* outer = tree->ContainingLoop(outer_header); local 176 CHECK(tree->Contains(outer, header)); 508 // Two loops nested in an outer loop. 726 // outer loop. 961 Node* outer = nullptr; local 979 if (outer != nullptr) { 981 outer->ReplaceInput(1, exit); 983 // outer loop. 987 outer = loop [all...] |
| /system/connectivity/shill/ |
| metrics.cc | 537 const string& outer) { 538 if (outer == kEapMethodPEAP) { 540 } else if (outer == kEapMethodTLS) { 542 } else if (outer == kEapMethodTTLS) { 544 } else if (outer == kEapMethodLEAP) { [all...] |
| /external/skia/src/gpu/ |
| SkGpuDevice.cpp | 575 SkTCopyOnFirstWrite<SkRRect> inner(origInner), outer(origOuter); 581 if (!origOuter.transform(viewMatrix, outer.writable())) { 605 SkAutoTUnref<GrFragmentProcessor> outerEffect(GrRRectEffect::Create(outerEdgeType, *outer)); 613 SkRect bounds = outer->getBounds(); 623 void SkGpuDevice::drawDRRect(const SkDraw& draw, const SkRRect& outer, 630 if (outer.isEmpty()) { 635 return this->drawRRect(draw, outer, paint); 641 if (this->drawFilledDRRect(*draw.fMatrix, outer, inner, paint)) { 648 path.addRRect(outer); [all...] |