HomeSort by relevance Sort by last modified time
    Searched defs:inner (Results 1 - 25 of 184) sorted by null

1 2 3 4 5 6 7 8

  /external/v8/test/mjsunit/compiler/
lazy-const-lookup.js 32 function inner() {
35 inner();
36 %OptimizeFunctionOnNextCall(inner);
37 inner();
regress-3136962.js 34 function inner() { height = 0; ++count; } function
42 inner();
  /external/v8/test/mjsunit/regress/
regress-97116.js 40 inner(should_deopt);
43 function inner(should_deopt) { function
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-71107.js 53 function inner() {
59 return inner;
  /external/clang/test/PCH/
cxx-variadic-templates.h 21 template<Ts...Vs, template<Ts> class ...Cs> struct inner { struct in struct:outer
22 inner(Cs<Vs>...);
  /external/clang/test/SemaTemplate/
typo-dependent-name.cpp 6 T inner; member in struct:Base
12 struct Inner {
16 return this->inner < other;
anonymous-union.cpp 24 struct inner;
26 struct inner { struct in struct:rdar8635664::X
37 X<int>::inner i;
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.class/
p1.cpp 5 struct Inner;
9 struct X0<T, U>::Inner {
18 X0<int, float>::Inner inner; local
19 inner.x = 5;
20 inner.y = 3.4;
21 inner.f();
23 X0<int*, float *>::Inner inner2;
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p4.cpp 15 struct Inner { // expected-error{{implicit default}}
29 X<IntHolder, int>::Inner inner; // expected-note {{first required here}} local
40 struct X<IntHolder, long>::Inner {
41 Inner() : value(17) { }
52 X<IntHolder, long>::Inner inner; // okay, uses specialization local
p5.cpp 15 struct Inner {
31 struct X<IntHolder, long>::Inner; // expected-note{{forward declaration}}
40 X<IntHolder, long>::Inner inner; // expected-error {{incomplete}} local
  /external/clang/test/CodeGen/
alias.c 32 static int inner(int a) { return 0; } function
34 extern __typeof(inner) inner_a __attribute__((alias("inner")));
36 // CHECKCC: @inner_a = alias i32 (i32)* @inner
37 // CHECKCC: define internal arm_aapcs_vfpcc i32 @inner(i32 %a) [[NUW:#[0-9]+]] {
39 int outer(int a) { return inner(a); }
41 // CHECKCC: call arm_aapcs_vfpcc i32 @inner(i32 %{{.*}})
  /libcore/benchmarks/src/benchmarks/
MethodInvocationBenchmark.java 102 public static class Inner {
112 Inner inner = new Inner(); local
114 inner.publicMethod();
119 Inner inner = new Inner(); local
121 inner.protectedMethod();
126 Inner inner = new Inner() local
133 Inner inner = new Inner(); local
140 Inner inner = new Inner(); local
    [all...]
  /ndk/build/core/
build-local.mk 78 find-project-dir = $(strip $(call find-project-dir-inner,$(abspath $1),$2))
80 find-project-dir-inner = \
84 $(call find-project-dir-inner-2)\
87 find-project-dir-inner-2 = \
97 $(call find-project-dir-inner-2)\
  /external/clang/test/CXX/dcl.decl/dcl.meaning/
p1.cpp 9 struct inner;
10 struct y::inner { }; // expected-error{{extra qualification on member 'inner'}} struct in class:PR8019::y::y
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p3-0x.cpp 10 inline namespace inner { namespace in namespace:has_inline_namespaces
  /external/clang/test/Index/
print-type.cpp 8 namespace inner { namespace in namespace:outer
32 // CHECK: Namespace=inner:8:11 (Definition) [type=] [typekind=Invalid] [isPOD=0]
33 // CHECK: StructDecl=Bar:10:8 (Definition) [type=outer::inner::Bar] [typekind=Record] [isPOD=0]
  /external/compiler-rt/BlocksRuntime/tests/
recursive-block.c 33 __block voidVoid inner = ^{ doSomething(i); }; local
34 //printf("inner, on stack, is %p\n", (void*)inner);
36 //printf("will call inner block %p\n", (void *)inner);
37 inner();
41 //Block_release(inner);
  /external/eigen/Eigen/src/Core/
Stride.h 22 * It holds two values: the inner stride and the outer stride.
24 * The inner stride is the pointer increment between two consecutive entries within a given row of a
35 * \param _InnerStrideAtCompileTime the inner stride, or Dynamic if you want to specify it at runtime.
69 : m_outer(other.outer()), m_inner(other.inner())
74 /** \returns the inner stride */
75 inline Index inner() const { return m_inner.value(); } function in class:Eigen::Stride
82 /** \brief Convenience specialization of Stride to specify only an inner stride
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
regress-181834.js 61 * If N>0, we end up calling inner() N+1 times:
62 * inner(N), inner(N-1), ... , inner(0).
64 * Each call to inner() increments |outer_d| by 1.
65 * The last call, inner(0), returns the final value
71 return inner(N);
73 function inner(level)
78 return inner(level - 1);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
armVCM4P2_BlockMatch_Integer.c 83 OMX_INT outer, inner, count,index; local
145 for (inner = 0; inner < BlockSize; inner++, count++, index++)
  /system/media/camera/docs/
metadata_helpers.py 61 # find uniquely named entries (w/o recursing through inner namespaces)
64 Find all uniquely named entries, without recursing through inner namespaces.
169 def inner(what): function in function:ljust
175 return inner
213 def inner(what): function in function:pad
221 return inner
  /build/core/combo/
HOST_darwin-x86.mk 118 define transform-host-o-to-shared-lib-inner
135 define transform-host-o-to-executable-inner
  /dalvik/tests/031-class-attributes/src/
ClassAttrs.java 35 InnerNamed inner = new InnerNamed(); local
36 inner.showMe();
  /external/v8/test/mjsunit/
object-literal-overwrite.js 82 var inner = { j: function(x) { return x; }, j: 7 };
83 return inner.j;
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p8-0x.cpp 9 struct inner { struct in struct:PR10127::outer::middle
23 operator decltype(outer::middle::inner()) ();
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::middle::mfunc' is not a member of class 'decltype(outer::middle::inner())'}}
34 a.decltype(outer::middle::inner())::func();
35 a.decltype(outer::middle())::inner::func();
36 a.decltype(outer())::middle::inner::func()
    [all...]

Completed in 735 milliseconds

1 2 3 4 5 6 7 8