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

1 2 3

  /external/clang/test/Preprocessor/
macro_paste_msextensions.c 19 #define nested(x) int x comment cute little dead tokens... macro
21 nested(baz) rise of the dead tokens
  /external/ltrace/testsuite/ltrace.minor/
demangle.h 22 /* Nested classes */
23 class nested { class in class:myclass
25 nested();
26 ~nested();
31 class nested { class
33 nested();
34 ~nested();
demangle-lib.cpp 88 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/
p5.cpp 32 // Make sure that we don't get tricked by redeclarations of nested classes.
36 struct Nested;
37 friend struct Nested;
39 struct Nested {
40 Nested() {}
41 } nested; member in struct:NestedClassRedecls::X
  /external/clang/test/PCH/
struct.c 28 struct Nested nested = { 1, 2 }; variable in typeref:struct:Nested
  /external/chromium_org/third_party/skia/tests/
StrokeTest.cpp 47 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/chromium_org/v8/test/mjsunit/compiler/
optimized-function-calls.js 56 // Check that nested global function calls work.
77 function nested() { function
81 assertEquals(3113460, nested());
escape-analysis.js 74 // 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/CXX/temp/temp.spec/temp.expl.spec/
p6.cpp 10 struct Nested {
20 X0<int>::Nested nested; // expected-note{{implicit instantiation first required here}} local
33 struct X0<int>::Nested { }; // expected-error{{after instantiation}}
  /external/clang/test/CodeGenCXX/
debug-info-template.cpp 53 // 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;
cxx0x-initializer-stdinitializerlist-pr12086.cpp 54 std::initializer_list<std::initializer_list<int>> nested = { variable
66 // CHECK-STATIC-BL: @nested = global {{.*}} { {{.*}} getelementptr inbounds ([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 {{.*}}]* @_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
cxx0x-initializer-stdinitializerlist.cpp 399 namespace nested { namespace
  /external/clang/test/SemaCXX/
trailing-return-0x.cpp 58 struct nested { struct in struct:X
67 nested<U> get_nested();
missing-namespace-qualifier-typo-corrections.cpp 17 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/
ms-delayed-default-template-args.cpp 13 namespace nested { namespace in namespace:test_namespace
21 template struct nested::Foo<>;
dependent-base-classes.cpp 40 class Nested { };
48 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/
ReturnByValue.h 38 * So internal::nested always gives the plain return matrix type.
43 struct nested<ReturnByValue<Derived>, n, PlainObject> struct in namespace:Eigen::internal
ProductBase.h 40 // are not used in practice because nested is overloaded for products
69 typedef typename Lhs::Nested LhsNested;
76 typedef typename Rhs::Nested RhsNested;
116 // Implicit conversion to the nested type (trigger the evaluation of the product)
177 // here we need to overload the nested rule for products
178 // such that the nested type is a const reference to a plain matrix
181 struct nested<GeneralProduct<Lhs,Rhs,Mode>, N, PlainObject> struct in namespace:Eigen::internal
  /external/javassist/src/main/javassist/convert/
TransformNewClass.java 23 private int nested; field in class:TransformNewClass
35 nested = 0;
62 ++nested;
68 if (typedesc != 0 && nested > 0) {
76 --nested;
TransformNew.java 23 private int nested; field in class:TransformNew
35 nested = 0;
66 ++nested;
82 if (typedesc != 0 && nested > 0) {
86 --nested;
  /external/chromium_org/v8/src/
interface.cc 76 Nesting nested; local
150 Nesting nested; local
hydrogen-flow-engine.h 91 // 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/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
SystemScopeTest.java 189 SystemScope nested = new SystemScope("NestedScope", ss); local
190 assertEquals("NestedScope", nested.getName());
191 assertSame(ss, nested.getScope());
  /external/eigen/Eigen/src/Core/products/
CoeffBasedProduct.h 193 // Implicit conversion to the nested type (trigger the evaluation of the product)
222 // here we need to overload the nested rule for products
223 // such that the nested type is a const reference to a plain matrix
225 struct nested<CoeffBasedProduct<Lhs,Rhs,EvalBeforeNestingBit|EvalBeforeAssigningBit>, N, PlainObject> struct in namespace:Eigen::internal
  /external/chromium_org/chromeos/network/onc/
onc_translator_shill_to_onc.cc 49 // recursive calls to CreateTranslatedONCObject of new instances, nested objects
108 // Translates a list of nested objects and adds the list to |onc_object_| at
295 // Translate the nested dictionary.
401 // Translate nested Cellular, WiFi, etc. properties.
558 base::DictionaryValue* nested; local
560 onc_dictionary_name, &nested)) {
561 nested = new base::DictionaryValue;
562 onc_object_->SetWithoutPathExpansion(onc_dictionary_name, nested);
564 nested->SetWithoutPathExpansion(onc_field_name, value.DeepCopy());
591 // If the nested object couldn't be parsed, simply omit it
    [all...]

Completed in 1209 milliseconds

1 2 3