Searched refs:nested (Results 1 - 25 of 153) sorted by relevance

1234567

/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/lldb/test/lang/cpp/breakpoints/
H A DMakefile3 CXX_SOURCES := nested.cpp
/external/libcxx/test/language.support/support.exception/except.nested/
H A DAndroid.mk17 test_makefile := external/libcxx/test/language.support/support.exception/except.nested/Android.mk
19 test_name := language.support/support.exception/except.nested/rethrow_nested
23 test_name := language.support/support.exception/except.nested/ctor_copy
27 test_name := language.support/support.exception/except.nested/assign
31 test_name := language.support/support.exception/except.nested/rethrow_if_nested
35 test_name := language.support/support.exception/except.nested/throw_with_nested
39 test_name := language.support/support.exception/except.nested/ctor_default
/external/chromium_org/third_party/WebKit/PerformanceTests/Layout/resources/
H A Dfloats.js11 function createSet(width, height, nested) {
18 for ( ; nested > 0; --nested)
19 nestedContainer = createElement("div", nestedContainer, "nested", "nested" + x + "_" + nested);
37 function createTestFunction(width, height, nested, runs, rows) {
40 containers[i] = createSet(width, height, nested);
41 nested = nested ||
[all...]
/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/javassist/src/main/javassist/convert/
H A DTransformNewClass.java23 private int nested; field in class:TransformNewClass
35 nested = 0;
62 ++nested;
68 if (typedesc != 0 && nested > 0) {
76 --nested;
H A DTransformNew.java23 private int nested; field in class:TransformNew
35 nested = 0;
66 ++nested;
82 if (typedesc != 0 && nested > 0) {
86 --nested;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template.cpp53 // CHECK: metadata !{i32 {{[0-9]*}}, metadata !{{[0-9]*}}, metadata !"_ZTS2TCIjLj2EXadL_Z3glbEEXadL_ZN3foo1eEEEXadL_ZNS0_1fEvEEXadL_Z4funcvEE9tmpl_implJLi1ELi2ELi3EEE", {{.*}}, metadata !"[[TCNESTED:.*]]"} ; [ DW_TAG_structure_type ] [nested]
80 // CHECK: metadata !"[[TCNESTED]]", i32 0, i32 1, %"struct.TC<unsigned int, 2, &glb, &foo::e, &foo::f, &func, tmpl_impl, 1, 2, 3>::nested"* @tci, null} ; [ DW_TAG_variable ] [tci]
91 struct nested { struct in struct:TC
102 TC<unsigned, 2, &glb, &foo::e, &foo::f, &func, tmpl_impl, 1, 2, 3>::nested tci;
/external/chromium_org/third_party/skia/tests/
H A DStrokeTest.cpp47 SkRect nested[2]; local
48 REPORTER_ASSERT(reporter, fillPath.isNestedRects(nested) == isMiter);
52 REPORTER_ASSERT(reporter, equal(nested[0], outer));
53 REPORTER_ASSERT(reporter, equal(nested[1], inner));
/external/clang/test/PCH/
H A Dstruct.c28 struct Nested nested = { 1, 2 }; variable in typeref:struct:Nested
/external/skia/tests/
H A DStrokeTest.cpp47 SkRect nested[2]; local
48 REPORTER_ASSERT(reporter, fillPath.isNestedRects(nested) == isMiter);
52 REPORTER_ASSERT(reporter, equal(nested[0], outer));
53 REPORTER_ASSERT(reporter, equal(nested[1], inner));
/external/clang/test/SemaCXX/
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...]
H A Dtrailing-return-0x.cpp58 struct nested { struct in struct:X
67 nested<U> get_nested();
/external/eigen/Eigen/src/Core/
H A DDot.h141 typedef typename internal::nested<Derived>::type Nested;
230 typename internal::nested<Derived,2>::type nested(derived());
231 typename internal::nested<OtherDerived,2>::type otherNested(other.derived());
232 return numext::abs2(nested.dot(otherNested)) <= prec * prec * nested.squaredNorm() * otherNested.squaredNorm();
249 typename Derived::Nested nested(derived());
252 if(!internal::isApprox(nested.col(i).squaredNorm(), static_cast<RealScalar>(1), prec))
255 if(!internal::isMuchSmallerThan(nested.col(i).dot(nested
[all...]
H A DFuzzy.h25 typename internal::nested<Derived,2>::type nested(x);
26 typename internal::nested<OtherDerived,2>::type otherNested(y);
27 return (nested - otherNested).cwiseAbs2().sum() <= prec * prec * (min)(nested.cwiseAbs2().sum(), otherNested.cwiseAbs2().sum());
/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/chromium_org/ui/wm/core/
H A Dnested_accelerator_dispatcher_win.cc32 MessagePumpDispatcher* nested)
33 : NestedAcceleratorDispatcher(delegate), nested_dispatcher_(nested) {}
31 NestedAcceleratorDispatcherWin(NestedAcceleratorDelegate* delegate, MessagePumpDispatcher* nested) argument
/external/chromium_org/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/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/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/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
H A DAndroid.mk39 test_name := utilities/function.objects/bind/func.bind/func.bind.bind/nested
40 test_src := nested.pass.cpp
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
H A DSystemScopeTest.java189 SystemScope nested = new SystemScope("NestedScope", ss);
190 assertEquals("NestedScope", nested.getName());
191 assertSame(ss, nested.getScope());

Completed in 768 milliseconds

1234567