Searched defs:outer (Results 1 - 25 of 61) sorted by relevance

123

/external/clang/test/CodeGen/
H A Dlineno-dbginfo.c4 // outer is at line number 5.
5 int outer = 42; variable
/external/v8/test/mjsunit/regress/
H A Dregress-2071.js61 function outer() { function
75 outer();
H A Dregress-100409.js30 function outer () { function
50 var foo = outer();
H A Dregress-97116.js35 %DeoptimizeFunction(outer);
39 function outer(should_deopt) { function
47 outer(false);
48 outer(false);
49 %OptimizeFunctionOnNextCall(outer);
50 outer(true);
/external/v8/test/mjsunit/compiler/
H A Dlazy-const-lookup.js30 function outer() { function
40 outer();
H A Dregress-3136962.js35 function outer() {} function
45 outer();
H A Dproperty-refs.js31 return o.outer.x | o.outer.inner.y;
35 o.outer.x = x;
36 o.outer.inner.y = y;
41 outer: {
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
H A Dregress-71107.js42 var actual = outer()()(); //call the return of calling the return of outer()
50 function outer () { function
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
H A Dregress-181834.js68 function outer(N) function
91 * Recompile the function |outer| via eval() in order to
94 var s = outer.toString();
98 actual = outer(-5);
103 actual = outer(0);
108 actual = outer(5);
119 * Recompile the function |outer| via eval() in order to
125 actual = outer(-5);
130 actual = outer(0);
135 actual = outer(
[all...]
/external/v8/test/mjsunit/harmony/
H A Dblock-let-semantics.js177 function outer() { function
190 assertEquals(2, outer());
/external/compiler-rt/BlocksRuntime/tests/
H A Drecursive-block.c35 /*__block*/ voidVoid outer = ^{ local
39 //printf("outer looks like: %s\n", _Block_dump(outer));
40 voidVoid result = Block_copy(outer);
/external/javassist/src/main/javassist/
H A DCtNewNestedClass.java40 private static void updateInnerEntry(int mod, String name, CtClass clazz, boolean outer) { argument
53 if (outName != null && outer)
/external/skia/include/core/
H A DSkPathEffect.h73 and the the outer pathEffect (e.g. outer(inner(path)))
74 The reference counts for outer and inner are both incremented in the constructor,
77 SkComposePathEffect(SkPathEffect* outer, SkPathEffect* inner) argument
78 : INHERITED(outer, inner) {}
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp8-0x.cpp7 struct outer { struct in namespace:PR10127
23 operator decltype(outer::middle::inner()) ();
24 operator decltype(outer::middle())::inner2 ();
25 operator decltype(outer())::middle::inner3 ();
26 str(int (decltype(outer::middle::inner())::*n)(),
27 int (decltype(outer::middle())::inner::*o)(),
28 int (decltype(outer())::middle::inner::*p)());
31 decltype(outer::middle::inner()) a;
33 a.decltype(outer::middle())::mfunc(); // expected-error{{'PR10127::outer
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
H A Dp6.cpp45 Outer<int, int> outer; // expected-note{{instantiation}} variable
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dxmppstanzaparser.h58 ParseHandler(XmppStanzaParser * outer) : outer_(outer) {} argument
/external/skia/include/effects/
H A DSkTestImageFilters.h36 SkComposeImageFilter(SkImageFilter* outer, SkImageFilter* inner) { argument
37 fOuter = outer;
39 SkSafeRef(outer);
/external/skia/samplecode/
H A DSamplePathEffects.cpp41 SkPathEffect* outer = new SkPath1DPathEffect(path, SkIntToScalar(12), gPhase, SkPath1DPathEffect::kRotate_Style); local
44 return outer;
48 SkPathEffect* pe = new SkComposePathEffect(outer, inner);
49 outer->unref();
62 SkPathEffect* outer = new SkPath1DPathEffect(path, SkIntToScalar(12), gPhase, SkPath1DPathEffect::kMorph_Style); local
65 SkPathEffect* pe = new SkComposePathEffect(outer, inner);
66 outer->unref();
/external/clang/test/SemaCXX/
H A Dstatic-cast.cpp140 template<typename E> struct outer { struct in namespace:pr5261
142 ~outer() { (void)static_cast<derived<E>*>(pb); }
144 outer<int> EntryList;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DCheck.cs143 public static void JoinSelectors (object outer, object inner, object outerKeySelector, object innerKeySelector, object resultSelector) argument
145 if (outer == null)
146 throw new ArgumentNullException ("outer");
/external/clang/test/Index/
H A Dannotate-nested-name-specifier.cpp1 namespace outer { namespace
10 namespace outer_alias = outer;
20 namespace outer { namespace
31 void outer::inner::array<T, N>::foo() {
35 int outer::inner::array<T, N>::max_size = 17;
38 struct X2 : outer::inner::vector<T> {
40 using typename outer::inner::vector<type>::iterator;
41 using outer::inner::vector<type>::push_back;
44 namespace outer { namespace
61 namespace outer { namespace
113 namespace outer { namespace
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DInnerClassesAttribute.java162 * @param outer <code>outer_class_info_index</code>
166 public void append(String inner, String outer, String name, int flags) { argument
168 int o = constPool.addClassInfo(outer);
177 * @param outer <code>outer_class_info_index</code>
181 public void append(int inner, int outer, int name, int flags) { argument
192 ByteArray.write16bit(outer, newData, len + 2);
/external/skia/gm/
H A Dtestimagefilters.cpp33 SkImageFilter* outer = new SkOffsetImageFilter(SkIntToScalar(16), SkIntToScalar(16)); local
35 SkAutoUnref aur0(outer);
37 return new SkComposeImageFilter(outer, inner);
48 SkImageFilter* outer = new SkOffsetImageFilter(SkIntToScalar(16), SkIntToScalar(16)); local
50 SkAutoUnref aur0(outer);
52 SkImageFilter* compose = new SkComposeImageFilter(outer, inner);
65 SkImageFilter* outer = new SkOffsetImageFilter(SkIntToScalar(16), SkIntToScalar(16)); local
67 SkAutoUnref aur0(outer);
69 SkImageFilter* compose = new SkComposeImageFilter(outer, inner);
/external/skia/src/core/
H A DSkLineClipper.cpp60 // returns true if outer contains inner, even if inner is empty.
61 // note: outer.contains(inner) always returns false if inner is empty.
62 static inline bool containsNoEmptyCheck(const SkRect& outer, argument
64 return outer.fLeft <= inner.fLeft && outer.fTop <= inner.fTop &&
65 outer.fRight >= inner.fRight && outer.fBottom >= inner.fBottom;
/external/v8/test/mjsunit/
H A Dstrict-mode.js33 function outer() {\
39 function outer() {\
141 // Strict mode doesn't affect the outer stop of strict code.
297 CheckStrictMode("function outer() {{ function invalid() {} }}", SyntaxError);
1116 function outer() { function
1124 var args = outer()();
1128 args = outer()(17, "value", strict);

Completed in 358 milliseconds

123