Searched refs:nested (Results 1 - 25 of 56) 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/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/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
H A Dregress-154693.js56 function nested() {}
57 return nested;
/external/clang/test/PCH/
H A Dstruct.c28 struct Nested nested = { 1, 2 }; variable in typeref:struct:Nested
/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.cpp56 struct nested { struct in struct:X
65 nested<U> get_nested();
H A Dlambda-expressions.cpp189 template<typename...Ts> void nested(Ts ...ts) {
198 template void nested(int, int, int);
/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/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());
/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/clang/test/SemaTemplate/
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/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
H A DSystemScopeTest.java185 SystemScope nested = new SystemScope("NestedScope", ss);
186 assertEquals("NestedScope", nested.getName());
187 assertSame(ss, nested.getScope());
/external/doclava/res/assets/templates/
H A Dyaml_navtree.cs3 # walk the children pages and print them nested below the parent
/external/clang/test/Sema/
H A Dblock-return.c84 int (^nested)(char *s) = ^(char *str) { void (^nest)(void) = ^(void) { printf("%s\n", str); }; next(); return 1; }; // expected-warning{{implicitly declaring library function 'printf' with type 'int (const char *, ...)'}} \
/external/libffi/src/ia64/
H A Dffi.c167 hfa_element_type (ffi_type *type, int nested) argument
175 synthetic HFA type if we're nested within an aggregate. */
176 if (nested)
182 if (nested)
190 if (LDBL_MANT_DIG == 64 && nested)
/external/libvpx/examples/includes/geshi/geshi/
H A Dd.php21 * * nested comments
H A Dsmalltalk.php19 * * recognize nested array symbols correctly
/external/icu4c/common/
H A Duniset_props.cpp551 UnicodeSet* nested = 0; // alias - do not delete local
561 // -------- Parse '[' of opening delimiter OR nested set.
562 // If there is a nested set, use `setMode' to define how
566 // characters representing a nested set in the symbol
594 // otherwise restart loop for nested [], \p{}, etc.
611 // casting away const, but `nested' won't be modified
613 nested = const_cast<UnicodeSet*>(ms);
619 // -------- Handle a nested set. This either is inline in
641 if (nested == 0) {
647 nested
[all...]
/external/v8/src/
H A Dinterface.cc98 Nesting nested; local
162 Nesting nested; local
/external/mksh/src/
H A Dsyn.c40 static struct op *nested(int, int, int);
223 nested(int type, int smark, int emark) function
367 t = nested(TPAREN, '(', ')');
372 t = nested(TBRACE, '{', '}');
1126 t = nested(TPAREN, '(', ')');
1131 /* t->left because nested(TPAREN, ...) hides our goodies there */
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_unittest.cc539 // Test that IsInitialized() returns false if required fields in nested
569 unittest::TestAllTypes::NestedMessage* nested = local
571 nested->set_bb(1);
594 unittest::TestMutualRecursionA* nested = message.mutable_bb()->mutable_a(); local
595 unittest::TestMutualRecursionA* nested2 = nested->mutable_bb()->mutable_a();
600 EXPECT_NE(&message, nested);
602 EXPECT_NE(nested, nested2);
709 // nested message type. NestedMessage is simple enough (1 int field) that it
750 // Test that our nested enum values can be used as switch cases. This test
/external/kernel-headers/original/linux/
H A Dlockdep.h236 extern void lock_release(struct lockdep_map *lock, int nested,
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
H A DPython.g535 * nested within a (..), {..}, or [..], then ignore newlines.
552 * Ignore leading whitespace when nested in [..], (..), {..}.
/external/grub/stage2/
H A Dstage2.c88 get_entry (char *list, int num, int nested) argument
98 while (nested && *(list++));

Completed in 687 milliseconds

123