Searched defs:inner (Results 1 - 25 of 173) sorted by relevance

1234567

/external/clang/test/Index/
H A Dcomment-cplus11-specific.cpp7 namespace inner { namespace
15 typedef inner::Opaque Typedef;
19 using Alias = inner::Opaque;
22 typedef inner::Opaque NoDocTypedef;
25 using NoDocAlias = inner::Opaque;
/external/clang/test/Modules/Inputs/
H A Dusing-decl-b.h2 namespace B { typedef int inner; } typedef in namespace:UsingDecl::B
3 using B::inner;
H A Dusing-decl-a.h8 namespace A { typedef int inner; } typedef in namespace:UsingDecl::A
9 using A::inner;
/external/v8/test/mjsunit/compiler/
H A Dlazy-const-lookup.js32 function inner() {
35 inner();
36 %OptimizeFunctionOnNextCall(inner);
37 inner();
H A Dregress-3136962.js34 function inner() { height = 0; ++count; } function
42 inner();
/external/v8/test/mjsunit/regress/
H A Dregress-2261.js35 function inner(x) { function
45 assertEquals(1, inner(1));
46 assertEquals(1, inner(1));
47 %OptimizeFunctionOnNextCall(inner);
48 assertEquals(1, inner(1));
50 assertEquals(1, inner(1));
59 function inner(x) {
70 return inner(x);
87 function inner(x,y,z) {
100 return inner(1
[all...]
H A Dregress-97116.js40 inner(should_deopt);
43 function inner(should_deopt) { function
H A Dregress-97116b.js40 inner(should_deopt);
43 function inner(should_deopt) { function
H A Dregress-crbug-150545.js38 function inner() { function
47 inner(1,2,3);
/external/valgrind/none/tests/amd64-linux/
H A Dbug345887.c4 static void inner(void) function
35 inner();
/external/valgrind/none/tests/x86-linux/
H A Dbug345887.c4 static void inner(void) function
26 inner();
/external/clang/test/PCH/
H A Dcxx-variadic-templates.h21 template<Ts...Vs, template<Ts> class ...Cs> struct inner { struct in struct:outer
22 inner(Cs<Vs>...);
/external/clang/test/SemaTemplate/
H A Dtypo-dependent-name.cpp6 T inner; member in struct:Base
16 return this->inner < other;
H A Danonymous-union.cpp24 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/
H A Dp1.cpp18 X0<int, float>::Inner inner; local
19 inner.x = 5;
20 inner.y = 3.4;
21 inner.f();
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp4.cpp29 X<IntHolder, int>::Inner inner; // expected-note {{first required here}} local
52 X<IntHolder, long>::Inner inner; // okay, uses specialization local
H A Dp5.cpp40 X<IntHolder, long>::Inner inner; // expected-error {{incomplete}} local
/external/skia/include/effects/
H A DSkComposeImageFilter.h17 static SkImageFilter* Create(SkImageFilter* outer, SkImageFilter* inner) { argument
19 return SkSafeRef(inner);
21 if (NULL == inner) {
24 SkImageFilter* inputs[2] = { outer, inner };
/external/clang/test/CXX/dcl.decl/dcl.meaning/
H A Dp1.cpp9 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/
H A Dp3-0x.cpp10 inline namespace inner { namespace in namespace:has_inline_namespaces
/external/clang/test/CodeGen/
H A Dalias.c40 static int inner(int a) { return 0; } function
42 extern __typeof(inner) inner_a __attribute__((alias("inner")));
44 // CHECKCC: @inner_a = alias i32 (i32)* @inner
45 // CHECKCC: define internal arm_aapcs_vfpcc i32 @inner(i32 %a) [[NUW:#[0-9]+]] {
47 int outer(int a) { return inner(a); }
49 // CHECKCC: call arm_aapcs_vfpcc i32 @inner(i32 %{{.*}})
/external/clang/test/SemaCXX/
H A Dlocal-classes.cpp25 void operator() (const bool inner, const bool gross = false) argument
/external/compiler-rt/test/BlocksRuntime/
H A Drecursive-block.c33 __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/lldb/test/unittest2/
H A Dsignals.py46 def inner(*args, **kwargs): function in function:removeHandler
53 return inner
/external/skia/bench/
H A DBlurRectsBench.cpp18 BlurRectsBench(SkRect outer, SkRect inner, SkScalar radius) { argument
21 fInner = inner;
56 BlurRectsNinePatchBench(SkRect outer, SkRect inner, SkScalar radius) argument
57 : INHERITED(outer, inner, radius) {
66 BlurRectsNonNinePatchBench(SkRect outer, SkRect inner, SkScalar radius) argument
67 : INHERITED(outer, inner, radius) {

Completed in 743 milliseconds

1234567