HomeSort by relevance Sort by last modified time
    Searched refs:outer (Results 201 - 225 of 408) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/services/java/com/android/server/wm/
ScreenRotationAnimation.java 545 Rect outer = new Rect(-mOriginalWidth*1, -mOriginalHeight*1, local
548 mCustomBlackFrame = new BlackFrame(session, outer, inner, FREEZE_LAYER + 3,
575 final Rect outer; local
581 outer = mCurrentDisplayRect;
584 outer = new Rect(-mOriginalWidth*1, -mOriginalHeight*1,
588 mExitingBlackFrame = new BlackFrame(session, outer, inner, FREEZE_LAYER + 2,
608 Rect outer = new Rect(-finalWidth*1, -finalHeight*1, local
611 mEnteringBlackFrame = new BlackFrame(session, outer, inner, FREEZE_LAYER,
    [all...]
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Transport.java 294 outer: while (!mQuitting) {
342 break outer; // malformed stream local
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
except.h 127 struct eh_region_d *outer; variable in typeref:struct:eh_region_d
323 r = r->outer;
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
except.h 127 struct eh_region_d *outer; variable in typeref:struct:eh_region_d
323 r = r->outer;
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
except.h 127 struct eh_region_d *outer; variable in typeref:struct:eh_region_d
323 r = r->outer;
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
except.h 127 struct eh_region_d *outer; variable in typeref:struct:eh_region_d
323 r = r->outer;
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityObject.cpp 759 const AccessibilityObject* outer = objects[i]; local
762 ScrollableArea* scrollableArea = outer->getScrollableAreaIfScrollable();
770 if (!outer->isAccessibilityScrollView())
783 outer->scrollTo(IntPoint(desiredX, desiredY));
785 if (outer->isAccessibilityScrollView() && !inner->isAccessibilityScrollView()) {
786 // If outer object we just scrolled is a scroll view (main window or iframe) but the
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
bencher 213 $outer=4
270 puts "--outer <n> Set the number of runtime invocations for each benchmark."
271 puts " Default is #{$outer}."
    [all...]
  /art/runtime/base/
timing_logger_test.cc 100 const char* outersplit = "Outer Split";
107 base::TimingLogger::ScopedSplit outer(outersplit, &timings);
133 const char* outersplit = "Outer Split";
  /external/chromium_org/v8/src/
lithium.h 521 LEnvironment* outer,
537 outer_(outer),
551 LEnvironment* outer() const { return outer_; } function in class:v8::internal::LEnvironment
701 // Iterator for non-null, non-constant operands incl. outer environments.
725 current_iterator_ = ShallowIterator(current_iterator_.env()->outer());
scopes.cc 219 // Reconstruct the outer scope chain from a closure's context chain.
321 // Add this scope as a new inner scope of the outer scope.
374 // Remove this scope from outer scope.
688 Scope* outer = outer_scope_; local
689 if (outer == NULL) return true;
690 // Note that the outer context may be trivial in general, but the current
691 // scope may be inside a 'with' statement in which case the outer context
693 return !scope_inside_with_ && outer->HasTrivialContext();
698 Scope* outer = outer_scope_; local
699 if (outer == NULL) return true
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-scopes.js 461 // Simple closure formed by returning an inner function referering the outer
483 // Simple closure formed by returning an inner function referering the outer
508 // Simple closure formed by returning an inner function referering the outer
509 // functions arguments. Using all arguments and locals from the outer function
535 // Simple closure formed by returning an inner function referering the outer
536 // functions arguments. Using all arguments and locals from the outer function
564 // Simple closure formed by returning an inner function referering the outer
566 // (including the inner function itself) from the outer function becomes part of
  /external/chromium_org/v8/test/mjsunit/harmony/
block-let-semantics.js 177 function outer() { function
190 assertEquals(2, outer());
  /external/chromium_org/v8/test/mjsunit/regress/
regress-70066.js 46 // Delete on a slot from an outer context.
71 // Delete on a parameter found in an outer context.
regress-937896.js 29 // discard duplicates which caused the outer-most continue statement
  /external/clang/test/SemaCXX/
typo-correction.cpp 237 namespace outer { namespace
238 void somefunc(); // expected-note{{'::outer::somefunc' declared here}}
239 void somefunc(int, int); // expected-note{{'::outer::somefunc' declared here}}
243 someFunc(); // expected-error{{use of undeclared identifier 'someFunc'; did you mean '::outer::somefunc'?}}
244 someFunc(1, 2); // expected-error{{use of undeclared identifier 'someFunc'; did you mean '::outer::somefunc'?}}
  /external/eigen/Eigen/src/Core/
Map.h 32 * inner and outer strides.
46 * Here's an example of mapping an array while specifying an outer stride. Here, since we're mapping
47 * as a column-major matrix, 'outer stride' means the pointer increment between two consecutive columns.
48 * Here, we're specifying the outer stride as a runtime parameter. Note that here \c OuterStride<> is
54 * For more details and for an example of specifying both an inner and an outer stride, see class Stride.
128 return StrideType::OuterStrideAtCompileTime != 0 ? m_stride.outer()
  /external/v8/test/mjsunit/
debug-scopes.js 461 // Simple closure formed by returning an inner function referering the outer
483 // Simple closure formed by returning an inner function referering the outer
508 // Simple closure formed by returning an inner function referering the outer
509 // functions arguments. Using all arguments and locals from the outer function
535 // Simple closure formed by returning an inner function referering the outer
536 // functions arguments. Using all arguments and locals from the outer function
564 // Simple closure formed by returning an inner function referering the outer
566 // (including the inner function itself) from the outer function becomes part of
  /external/v8/test/mjsunit/harmony/
block-let-semantics.js 177 function outer() { function
190 assertEquals(2, outer());
  /external/v8/test/mjsunit/regress/
regress-70066.js 46 // Delete on a slot from an outer context.
71 // Delete on a parameter found in an outer context.
  /external/valgrind/main/exp-sgcheck/
sg_main.c 1208 struct _StackFrame* outer; member in struct:_StackFrame
    [all...]
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 311 CstType outer = foundThisClass.getOuterClass(); local
312 if (outer == null) {
  /external/chromium_org/v8/test/mjsunit/compiler/
variables.js 54 // Local function reads x from an outer context.
  /external/chromium_org/v8/test/webkit/
exception-try-finally-scope-error.js 37 var test = "outer scope";
  /external/chromium_org/v8/test/webkit/fast/js/kde/
scope.js 58 shouldBe("g", "'foo'"); //Before the eval, g was in outer scope, but not after

Completed in 847 milliseconds

1 2 3 4 5 6 7 891011>>