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

1 2 3 4

  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/nested/nested/
Level2Test.java 17 package android.test.suitebuilder.examples.nested.nested;
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/nested/
Level1Test.java 17 package android.test.suitebuilder.examples.nested;
  /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/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/clang/test/PCH/
struct.c 28 struct Nested nested = { 1, 2 }; variable in typeref:struct:Nested
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
regress-154693.js 56 function nested() {}
57 return nested;
  /frameworks/compile/libbcc/tests/data/src/
locals.c 42 int nested() { function
44 printf("nested 0: a = %d\n", a);
46 printf("nested 1: a = %d\n", a);
49 printf("nested 2: a = %d\n", a);
51 printf("nested 3: a = %d\n", a);
53 printf("nested 4: a = %d\n", a);
68 nested();
  /external/clang/test/SemaCXX/
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...]
trailing-return-0x.cpp 56 struct nested { struct in struct:X
65 nested<U> get_nested();
lambda-expressions.cpp 189 template<typename...Ts> void nested(Ts ...ts) {
198 template void nested(int, int, int);
  /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/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/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/
SystemScopeTest.java 185 SystemScope nested = new SystemScope("NestedScope", ss); local
186 assertEquals("NestedScope", nested.getName());
187 assertSame(ss, nested.getScope());
  /system/core/libnl_2/
attr.c 74 /* Start a new level of nested attributes. */
142 /* Create attribute index based on nested attribute. */
189 /* Add nested attributes to netlink message. */
190 /* Takes the attributes found in the nested message and appends them
191 * to the message msg nested in a container of the type attrtype. The
192 * nested message may not have a family specific header */
193 int nla_put_nested(struct nl_msg *msg, int attrtype, struct nl_msg *nested)
197 rc = nla_put(msg, attrtype, nlmsg_attrlen(nlmsg_hdr(nested), 0),
198 nlmsg_attrdata(nlmsg_hdr(nested), 0));
  /external/v8/test/mjsunit/compiler/
optimized-function-calls.js 56 // Check that nested global function calls work.
77 function nested() { function
81 assertEquals(3113460, nested());
literals-optimized.js 56 // Test nested array literal.
90 // Test nested object literal.
  /external/clang/test/SemaTemplate/
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/markdown/markdown/
inlinepatterns.py 201 """Return a ElementTree element nested in tag2 nested in tag1.
  /external/webkit/LayoutTests/dom/html/level2/events/
dispatchEvent13.js 84 * @param events Value from value attribute of nested var element
85 * @param listeners Value from value attribute of nested var element
127 * @param events Value from value attribute of nested var element
128 * @param listeners Value from value attribute of nested var element
  /external/webkit/LayoutTests/dom/xhtml/level2/events/
dispatchEvent13.js 84 * @param events Value from value attribute of nested var element
85 * @param listeners Value from value attribute of nested var element
127 * @param events Value from value attribute of nested var element
128 * @param listeners Value from value attribute of nested var element
  /external/clang/test/Sema/
block-return.c 84 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 *, ...)'}} \
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
TestSuiteBuilderTest.java 25 import android.test.suitebuilder.examples.nested.Level1Test;
26 import android.test.suitebuilder.examples.nested.nested.Level2Test;
  /external/v8/test/mjsunit/
arguments-read-and-assignment.js 75 // Capture parameters in nested contexts.
110 // Deeply nested.
121 "deep nested capture");
  /external/libffi/src/ia64/
ffi.c 167 hfa_element_type (ffi_type *type, int nested)
175 synthetic HFA type if we're nested within an aggregate. */
176 if (nested)
182 if (nested)
190 if (LDBL_MANT_DIG == 64 && nested)

Completed in 771 milliseconds

1 2 3 4