Searched defs:nested (Results 1 - 25 of 121) sorted by relevance

12345

/external/clang/test/OpenMP/
H A Dopenmp_check.cpp2 int nested(int a) { function
H A Dtarget_codegen_registration_naming.cpp26 int nested(int a){ function
/external/testng/src/test/java/test/nested/
H A DGarfTest.java1 package test.nested;
6 import test.nested.foo.AccountTypeEnum;
/external/testng/src/test/java/test/
H A DNestedStaticSampleTest.java13 public void nested() { method in class:NestedStaticSampleTest.Nested
/external/testng/src/test/java/test/nested/foo/
H A DAccountTypeEnum.java1 package test.nested.foo;
/external/clang/test/Preprocessor/
H A Dmacro_paste_msextensions.c21 #define nested(x) int x comment cute little dead tokens... macro
24 nested(baz) rise of the dead tokens
/external/v8/tools/clang/rewrite_to_chrome_style/tests/
H A Dnamespaces-expected.cc10 // Stuff in nested namespaces should be renamed.
11 namespace nested { namespace in namespace:blink
13 } // namespace nested
27 // Stuff in nested namespaces should be renamed.
28 namespace nested { namespace in namespace:WTF
30 } // namespace nested
48 blink::nested::Foo();
50 WTF::nested::Foo();
H A Dnamespaces-original.cc10 // Stuff in nested namespaces should be renamed.
11 namespace nested { namespace in namespace:blink
13 } // namespace nested
27 // Stuff in nested namespaces should be renamed.
28 namespace nested { namespace in namespace:WTF
30 } // namespace nested
48 blink::nested::foo();
50 WTF::nested::foo();
/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/clang/test/PCH/
H A Dstruct.c28 struct Nested nested = { 1, 2 }; variable in typeref:struct: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/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/targets/
H A DTarget12.java28 static void nested() { method in class:Target12
43 nested();
/external/jacoco/org.jacoco.core.test/src-java7/org/jacoco/core/test/filter/
H A DTryWithResourcesTest.java99 * {@link TryWithResources#nested()}
102 public void nested() { method in class:TryWithResourcesTest
104 assertLine("nested.try1", ICounter.FULLY_COVERED);
105 assertLine("nested.open1", ICounter.FULLY_COVERED);
106 assertLine("nested.catch1", ICounter.NOT_COVERED);
109 assertLine("nested.try2", ICounter.FULLY_COVERED);
110 assertLine("nested.body", ICounter.FULLY_COVERED);
111 assertLine("nested.catch2", ICounter.NOT_COVERED);
112 assertLine("nested.finally2", ICounter.PARTLY_COVERED);
115 assertLine("nested
[all...]
/external/protobuf/src/google/protobuf/
H A Dproto3_arena_lite_unittest.cc147 TestAllTypes::NestedMessage* nested = new TestAllTypes::NestedMessage; local
148 nested->set_bb(118);
149 arena_message->set_allocated_optional_nested_message(nested);
157 google::protobuf::scoped_ptr<TestAllTypes::NestedMessage> nested(
159 EXPECT_EQ(118, nested->bb());
H A Dproto3_arena_unittest.cc168 TestAllTypes::NestedMessage* nested = new TestAllTypes::NestedMessage; local
169 nested->set_bb(118);
170 arena_message->set_allocated_optional_nested_message(nested);
178 google::protobuf::scoped_ptr<TestAllTypes::NestedMessage> nested(
180 EXPECT_EQ(118, nested->bb());
189 // delete` the nested message (which is on the arena):
/external/python/cpython2/Lib/
H A Dcontextlib.py7 __all__ = ["contextmanager", "nested", "closing"]
89 def nested(*managers): function
90 """Combine multiple context managers into a single nested context manager.
99 with nested(*managers):
/external/python/cpython2/Lib/test/
H A Dtest_doctest2.py50 """A nested D class.
56 def nested(self): member in class:C.D
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
H A DProfilerTest.java94 Profiler nested = profiler.startNested("subtask");
95 doSubtask(nested);
123 public void doSubtask(Profiler nested) { argument
124 nested.start("n1");
127 nested.start("n2");
129 nested.stop();
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template.cpp17 struct nested { struct in struct:TC
27 // CHECK-SAME: variable: %"struct.TC<unsigned int, 2, &glb, &foo::e, &foo::f, &foo::g, 1, 2, 3>::nested"* @tci
28 // CHECK: ![[TCNESTED]] ={{.*}}!DICompositeType(tag: DW_TAG_structure_type, name: "nested",
81 3>::nested tci;
/external/clang/test/SemaCXX/
H A Dtrailing-return-0x.cpp58 struct nested { struct in struct:X
67 nested<U> get_nested();
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAsyncSettableFuture.java44 private final NestedFuture<V> nested = new NestedFuture<V>(); field in class:AsyncSettableFuture
45 private final ListenableFuture<V> dereferenced = Futures.dereference(nested);
58 return nested.setFuture(checkNotNull(future));
88 return nested.isDone();
/external/javassist/src/main/javassist/convert/
H A DTransformNew.java23 private int nested; field in class:TransformNew
35 nested = 0;
66 ++nested;
82 if (typedesc != 0 && nested > 0) {
86 --nested;
H A DTransformNewClass.java23 private int nested; field in class:TransformNewClass
35 nested = 0;
62 ++nested;
68 if (typedesc != 0 && nested > 0) {
76 --nested;
/external/libnl/tests/
H A Dtest-genl.c17 struct nlattr *nested; local
21 nested = info->attrs[TASKSTATS_TYPE_AGGR_PID];
23 nested = info->attrs[TASKSTATS_TYPE_AGGR_TGID];
26 "nested attribute/\n");
30 err = nla_parse_nested(attrs, TASKSTATS_TYPE_MAX, nested, attr_policy);
/external/skia/tests/
H A DStrokeTest.cpp77 SkRect nested[2]; local
78 REPORTER_ASSERT(reporter, fillPath.isNestedFillRects(nested) == isMiter);
82 REPORTER_ASSERT(reporter, equal(nested[0], outer));
83 REPORTER_ASSERT(reporter, equal(nested[1], inner));

Completed in 1479 milliseconds

12345