HomeSort by relevance Sort by last modified time
    Searched refs:inner (Results 26 - 50 of 406) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
debug-info-class.cpp 42 struct inner { struct in struct:F
50 struct inner { struct in struct:G
74 F::inner z;
79 G::inner c_i;
110 // CHECK: metadata [[G_INNER_MEM:![0-9]*]], i32 0, null, null, metadata !"_ZTSN1G5innerE"} ; [ DW_TAG_structure_type ] [inner] [line 50, {{.*}} [def]
  /art/test/110-field-access/src/
Main.java 21 private static class Inner {
70 Inner inner = new Inner(); local
72 result = inner.publicInnerIntVal;
78 Inner inner = new Inner(); local
80 result = inner.protectedInnerIntVal;
86 Inner inner = new Inner() local
94 Inner inner = new Inner(); local
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkBuildCondensedInfo.cpp 35 for (int inner = 0; inner < infoCount; inner++) {
36 SkASSERT(info[inner].fCount < 256);
37 int offset = (int) info[inner].fOffset;
40 if (info[inner].fType == SkType_BaseClassInfo) {
41 const SkMemberInfo* innerInfo = (const SkMemberInfo*) info[inner].fName;
44 *gUnknownsCounts.append() = info[inner].fCount;
47 if (info[inner].fType != SkType_BaseClassInfo && info[inner].fName
    [all...]
  /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/chromium_org/ui/login/
screen_container.css 37 #inner-container {
43 #inner-container.animation {
47 #inner-container.disabled {
53 #oobe.auto-enrollment-check #inner-container,
54 #oobe.autolaunch #inner-container,
55 #oobe.confirm-password #inner-container,
56 #oobe.connect #inner-container,
57 #oobe.enrollment #inner-container,
58 #oobe.eula #inner-container,
59 #oobe.fatal-error #inner-container
    [all...]
  /external/elfutils/0.153/libdwfl/
dwfl_module_getsrc_file.c 131 size_t inner; local
132 for (inner = 0; inner < cur_match; ++inner)
133 if (dwfl_line_file (match[inner])
136 if (inner < cur_match
137 && (dwfl_line (match[inner])->line != line->line
138 || dwfl_line (match[inner])->line != lineno
140 && (dwfl_line (match[inner])->column != line->column
141 || dwfl_line (match[inner])->column != column)))
    [all...]
  /external/chromium_org/third_party/skia/src/doc/
SkDocument.cpp 28 SkRect inner; local
30 inner = *content;
31 if (!inner.intersect(outer)) {
35 inner = outer;
42 return this->onBeginPage(width, height, inner);
  /external/chromium_org/third_party/skia/tests/
PathOpsDTriangleTest.cpp 62 for (int inner = 0; inner < 3; ++inner) {
63 bool result = triangle.contains(triangle.fPts[inner]);
65 SkDebugf("%s [%d][%d] point on triangle is not in\n", __FUNCTION__, index, inner);
PathOpsQuadParameterizationTest.cpp 42 for (int inner = 0; inner < 3; inner += 2) {
44 (*quads[two])[inner]));
  /external/chromium_org/third_party/skia/experimental/Intersection/
ConvexHull_Test.cpp 130 for (int inner = outer + 1; inner < 4; ++inner) {
131 for (int priorInner = outer + 1; priorInner < inner; ++priorInner) {
132 if (cubic[inner].approximatelyEqual(cubic[priorInner])) {
136 if (cubic[outer].approximatelyEqual(cubic[inner])) {
140 if (!rotateToAxis(cubic[outer], cubic[inner], matrix)) {
150 (int)idx, (int)inr, (int)outer, (int)inner,
151 cubic[inner].x, cubic[inner].y)
    [all...]
  /external/clang/test/Analysis/inlining/
path-notes.c 125 struct Inner {
127 } inner; member in struct:Outer
131 wrapperPtr->inner.p = 0; // expected-note {{Null pointer value stored to field 'p'}}
132 *wrapperPtr->inner.p = 1; //expected-warning {{Dereference of null pointer (loaded from field 'p')}}
    [all...]
  /external/clang/test/CodeGen/
alias.c 35 static int inner(int a) { return 0; } function
37 extern __typeof(inner) inner_a __attribute__((alias("inner")));
39 // CHECKCC: @inner_a = alias i32 (i32)* @inner
40 // CHECKCC: define internal arm_aapcs_vfpcc i32 @inner(i32 %a) [[NUW:#[0-9]+]] {
42 int outer(int a) { return inner(a); }
44 // CHECKCC: call arm_aapcs_vfpcc i32 @inner(i32 %{{.*}})
  /external/clang/test/CXX/stmt.stmt/stmt.dcl/
p3-0x.cpp 37 goto inner; // expected-error{{goto into protected scope}}
40 inner:
  /external/chromium_org/v8/test/mjsunit/
debug-stepout-scope-part8.js 69 with ({x: 'inner'}) {
78 with ({x: 'inner'}) {
89 with ({x: 'inner'}) {
100 with ({x: 'inner'}) {
111 with ({x: 'inner' + i}) {
122 with ({x: 'inner' + j}) {
133 with ({x: 'inner'}) {
143 with ({x: 'inner'}) {
155 with ({x: 'inner'}) {
167 with ({x: 'inner'}) {
    [all...]
debug-evaluate-closure.js 40 assertEquals("inner bar", exec_state.frame(0).evaluate("inner").value());
42 assertEquals("baz inner", exec_state.frame(0).evaluate("baz").value());
45 exec_state.frame(0).evaluate("inner = 'inner foo'");
47 exec_state.frame(0).evaluate("baz = 'baz inner foo'");
62 var inner = "inner";
63 var baz = "baz inner";
71 inner = "inner bar"
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkComposeImageFilter.cpp 22 SkImageFilter* inner = getInput(1); local
25 return inner->filterImage(proxy, src, ctx, &tmp, offset) &&
33 SkImageFilter* inner = getInput(1); local
36 return inner->filterBounds(src, ctm, &tmp) && outer->filterBounds(tmp, ctm, dst);
  /external/clang/test/SemaCXX/
local-classes.cpp 25 void operator() (const bool inner, const bool gross = false)
38 struct Inner {
  /external/chromium_org/third_party/skia/gm/
testimagefilters.cpp 38 SkImageFilter* inner = SkDownSampleImageFilter::Create(SK_Scalar1 / 5); local
40 SkAutoUnref aur1(inner);
41 return SkComposeImageFilter::Create(outer, inner);
53 SkImageFilter* inner = SkDownSampleImageFilter::Create(SK_Scalar1 / 5); local
55 SkAutoUnref aur1(inner);
56 SkImageFilter* compose = SkComposeImageFilter::Create(outer, inner);
70 SkImageFilter* inner = make3(); local
72 SkAutoUnref aur1(inner);
73 SkImageFilter* compose = SkComposeImageFilter::Create(outer, inner);
  /external/elfutils/0.153/src/
objdump.c 598 for (size_t inner = 0; inner < 16; inner += 4)
600 cp[inner], cp[inner + 1], cp[inner + 2],
601 cp[inner + 3]);
604 for (size_t inner = 0; inner < 16; ++inner)
613 size_t inner; local
    [all...]
  /external/eigen/Eigen/src/Core/
DenseCoeffsBase.h 64 EIGEN_STRONG_INLINE Index rowIndexByOuterInner(Index outer, Index inner) const
67 : int(Derived::ColsAtCompileTime) == 1 ? inner
69 : inner;
72 EIGEN_STRONG_INLINE Index colIndexByOuterInner(Index outer, Index inner) const
75 : int(Derived::RowsAtCompileTime) == 1 ? inner
76 : int(Derived::Flags)&RowMajorBit ? inner
101 EIGEN_STRONG_INLINE CoeffReturnType coeffByOuterInner(Index outer, Index inner) const
103 return coeff(rowIndexByOuterInner(outer, inner),
104 colIndexByOuterInner(outer, inner));
218 EIGEN_STRONG_INLINE PacketReturnType packetByOuterInner(Index outer, Index inner) cons
    [all...]
  /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.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
  /external/compiler-rt/test/BlocksRuntime/
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/chromium_org/third_party/skia/bench/
RectoriBench.cpp 16 // to create an inner blurred rect
37 SkRect inner = { x, y, x + size, y + size }; variable
39 SkRect outer(inner);
46 p.addRect(inner);
59 // clip always equals inner rect so we get the inside blur
60 canvas->clipRect(inner);
  /build/core/tasks/
product-graph.mk 21 $(call all-products-inner, $(ALL_PRODUCTS)) \
26 define all-products-inner
31 $(call all-products-inner, $(PRODUCTS.$(strip $(p)).INHERITS_FROM))

Completed in 342 milliseconds

12 3 4 5 6 7 8 91011>>