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

1 2 3 4 5 6

  /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/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/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 192 template<typename...Ts> void nested(Ts ...ts) {
201 template void nested(int, int, int);
  /external/eigen/Eigen/src/Core/
Dot.h 140 typedef typename internal::nested<Derived>::type Nested;
141 typedef typename internal::remove_reference<Nested>::type _Nested;
228 typename internal::nested<Derived,2>::type nested(derived());
229 typename internal::nested<OtherDerived,2>::type otherNested(other.derived());
230 return internal::abs2(nested.dot(otherNested)) <= prec * prec * nested.squaredNorm() * otherNested.squaredNorm();
247 typename Derived::Nested nested(derived())
    [all...]
Fuzzy.h 25 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());
NoAlias.h 49 typedef typename internal::nested<OtherDerived>::type OtherDerivedNested;
61 typedef typename internal::nested<OtherDerived>::type OtherDerivedNested;
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
  /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());
  /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/eigen/Eigen/src/Geometry/
OrthoMethods.h 33 typename internal::nested<Derived,2>::type lhs(derived());
34 typename internal::nested<OtherDerived,2>::type rhs(other.derived());
79 typedef typename internal::nested<Derived,2>::type DerivedNested;
80 typedef typename internal::nested<OtherDerived,2>::type OtherDerivedNested;
AlignedBox.h 74 const typename internal::nested<Derived,2>::type p(a_p.derived());
180 typename internal::nested<Derived,2>::type p(a_p.derived());
192 typename internal::nested<Derived,2>::type p(a_p.derived());
226 const typename internal::nested<Derived,2>::type t(a_t.derived());
299 const typename internal::nested<Derived,2*AmbientDim>::type p(a_p.derived());
  /external/markdown/markdown/
inlinepatterns.py 201 """Return a ElementTree element nested in tag2 nested in tag1.

Completed in 622 milliseconds

1 2 3 4 5 6