Searched defs:nested (Results 1 - 25 of 60) sorted by relevance

123

/external/clang/test/Preprocessor/
H A Dmacro_paste_msextensions.c19 #define nested(x) int x comment cute little dead tokens... macro
21 nested(baz) rise of the dead tokens
/external/ltrace/testsuite/ltrace.minor/
H A Ddemangle.h23 class nested { class in class:myclass
25 nested();
26 ~nested();
31 class nested { class
33 nested();
34 ~nested();
H A Ddemangle-lib.cpp88 class nested;
90 nested::nested(void) { ; } function in class:nested
91 nested::~nested() { ; }
92 int nested::Fi_i(int bar) { return bar; }
/external/clang/test/CXX/temp/temp.spec/
H A Dp5.cpp32 // Make sure that we don't get tricked by redeclarations of nested classes.
41 } nested; member in struct:NestedClassRedecls::X
/external/clang/test/PCH/
H A Dstruct.c28 struct Nested nested = { 1, 2 }; variable in typeref:struct:Nested
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp6.cpp20 X0<int>::Nested nested; // expected-note{{implicit instantiation first required here}} local
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
H A DProfilerTest.java94 Profiler nested = profiler.startNested("subtask");
95 doSubtask(nested);
123 public void doSubtask(Profiler nested) { argument
124 nested.start("n1");
127 nested.start("n2");
129 nested.stop();
/external/v8/test/mjsunit/compiler/
H A Doptimized-function-calls.js56 // Check that nested global function calls work.
77 function nested() { function
81 assertEquals(3113460, nested());
H A Descape-analysis.js74 // Test loads and stores inside nested loop.
81 function nested() { function
102 nested(); nested();
103 %OptimizeFunctionOnNextCall(nested);
104 nested(); nested();
276 // Test non-shallow nested graph of captured objects.
282 function constructor2(nested) {
284 this.b = nested;
[all...]
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template.cpp55 // CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "nested",
101 // CHECK-SAME: variable: %"struct.TC<unsigned int, 2, &glb, &foo::e, &foo::f, &foo::g, 1, 2, 3>::nested"* @tci
121 struct nested { struct in struct:TC
128 TC<unsigned, 2, &glb, &foo::e, &foo::f, &foo::g, 1, 2, 3>::nested tci;
H A Dcxx0x-initializer-stdinitializerlist-pr12086.cpp54 std::initializer_list<std::initializer_list<int>> nested = { variable
66 // CHECK-STATIC-BL: @nested = global {{.*}} { {{.*}} getelementptr inbounds ([3 x {{.*}}], [3 x {{.*}}]* @_ZGR6nested_, i32 0, i32 0), i64 3 }, align 8
68 // CHECK-DYNAMIC-BL: @nested = global
89 // CHECK-DYNAMIC-BL: {{.*}}** getelementptr inbounds ({{.*}}, {{.*}}* @nested, i32 0, i32 0), align 8
90 // CHECK-DYNAMIC-BL: store i64 3, i64* getelementptr inbounds ({{.*}}, {{.*}}* @nested, i32 0, i32 1), align 8
103 // CHECK-STATIC-BE: @nested = global {{.*}} { {{.*}} getelementptr inbounds ([3 x {{.*}}], [3 x {{.*}}]* @_ZGR6nested_, i32 0, i32 0),
106 // CHECK-DYNAMIC-BE: @nested = global
130 // CHECK-DYNAMIC-BE: {{.*}}** getelementptr inbounds ({{.*}}, {{.*}}* @nested, i32 0, i32 0), align 8
132 // CHECK-DYNAMIC-BE: {{.*}}** getelementptr inbounds ({{.*}}, {{.*}}* @nested, i32 0, i32 1), align 8
/external/clang/test/SemaCXX/
H A Dtrailing-return-0x.cpp58 struct nested { struct in struct:X
67 nested<U> get_nested();
H A Dmissing-namespace-qualifier-typo-corrections.cpp17 namespace nested { bool moreFoobar() { return true; } } // expected-note{{'fizbin::nested::moreFoobar' declared here}} namespace in namespace:fizbin
18 namespace nested { bool lessFoobar() { return true; } } // expected-note{{'fizbin::nested' declared here}} \ namespace in namespace:fizbin
19 // expected-note{{'fizbin::nested::lessFoobar' declared here}}
28 if (moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'moreFoobar'; did you mean 'fizbin::nested::moreFoobar'}}
29 if (lessFoobar()) Double(7); // expected-error{{use of undeclared identifier 'lessFoobar'; did you mean 'fizbin::nested::lessFoobar'?}}
31 if (nested::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'nested'; did you mean 'fizbin::nested'
[all...]
/external/clang/test/SemaTemplate/
H A Dms-delayed-default-template-args.cpp13 namespace nested { namespace in namespace:test_namespace
21 template struct nested::Foo<>;
H A Ddependent-base-classes.cpp48 class HasDepBase::Nested nested; local
57 class NoDepBase::Nested nested; // expected-error{{no class named 'Nested' in 'NoDepBase<T>'}} local
/external/eigen/Eigen/src/Core/
H A DReturnByValue.h38 * So internal::nested always gives the plain return matrix type.
43 struct nested<ReturnByValue<Derived>, n, PlainObject> struct in namespace:Eigen::internal
H A DProductBase.h40 // are not used in practice because nested is overloaded for products
123 // Implicit conversion to the nested type (trigger the evaluation of the product)
184 // here we need to overload the nested rule for products
185 // such that the nested type is a const reference to a plain matrix
188 struct nested<GeneralProduct<Lhs,Rhs,Mode>, N, PlainObject> struct in namespace:internal
193 struct nested<const GeneralProduct<Lhs,Rhs,Mode>, N, PlainObject> struct in namespace:internal
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAsyncSettableFuture.java44 private final NestedFuture<V> nested = new NestedFuture<V>(); field in class:AsyncSettableFuture
45 private final ListenableFuture<V> dereferenced = Futures.dereference(nested);
58 return nested.setFuture(checkNotNull(future));
88 return nested.isDone();
/external/javassist/src/main/javassist/convert/
H A DTransformNew.java23 private int nested; field in class:TransformNew
35 nested = 0;
66 ++nested;
82 if (typedesc != 0 && nested > 0) {
86 --nested;
H A DTransformNewClass.java23 private int nested; field in class:TransformNewClass
35 nested = 0;
62 ++nested;
68 if (typedesc != 0 && nested > 0) {
76 --nested;
/external/jetty/src/java/org/eclipse/jetty/util/
H A DMultiException.java35 private Object nested; field in class:MultiException
49 for (int i=0;i<LazyList.size(me.nested);i++)
50 nested=LazyList.add(nested,LazyList.get(me.nested,i));
53 nested=LazyList.add(nested,e);
59 return LazyList.size(nested);
65 return LazyList.getList(nested);
71 return (Throwable) LazyList.get(nested,
[all...]
/external/skia/tests/
H A DStrokeTest.cpp77 SkRect nested[2]; local
78 REPORTER_ASSERT(reporter, fillPath.isNestedFillRects(nested) == isMiter);
82 REPORTER_ASSERT(reporter, equal(nested[0], outer));
83 REPORTER_ASSERT(reporter, equal(nested[1], inner));
/external/v8/src/
H A Dinterface.cc76 Nesting nested; local
150 Nesting nested; local
H A Dhydrogen-flow-engine.h91 // block, starting with the initial state. Computes effects for nested loops.
156 // Recursively compute and cache the effects of the nested loop.
158 Effects* nested = ComputeLoopEffects(member); local
159 effects->Union(nested, zone_);
160 // Skip the nested loop's blocks.
/external/eigen/Eigen/src/Core/products/
H A DCoeffBasedProduct.h194 // Implicit conversion to the nested type (trigger the evaluation of the product)
223 // here we need to overload the nested rule for products
224 // such that the nested type is a const reference to a plain matrix
226 struct nested<CoeffBasedProduct<Lhs,Rhs,EvalBeforeNestingBit|EvalBeforeAssigningBit>, N, PlainObject> struct in namespace:Eigen::internal

Completed in 585 milliseconds

123