Home
last modified time | relevance | path

Searched refs:nested (Results 1 – 25 of 398) sorted by relevance

12345678910>>...16

/external/jetty/src/java/org/eclipse/jetty/util/
DMultiException.java35 private Object nested; field in MultiException
49 for (int i=0;i<LazyList.size(me.nested);i++) in add()
50 nested=LazyList.add(nested,LazyList.get(me.nested,i)); in add()
53 nested=LazyList.add(nested,e); in add()
59 return LazyList.size(nested); in size()
65 return LazyList.getList(nested); in getThrowables()
71 return (Throwable) LazyList.get(nested,i); in getThrowable()
84 switch (LazyList.size(nested)) in ifExceptionThrow()
89 Throwable th=(Throwable)LazyList.get(nested,0); in ifExceptionThrow()
111 switch (LazyList.size(nested)) in ifExceptionThrowRuntime()
[all …]
/external/llvm/test/Analysis/BasicAA/
Dnoalias-bugs.ll10 %nested = type { %nested.i64 }
11 %nested.i64 = type { i64 }
13 define i64 @testcase(%nested * noalias %p1, %nested * noalias %p2,
15 %ptr = getelementptr inbounds %nested, %nested* %p1, i64 -1, i32 0
16 %ptr.64 = getelementptr inbounds %nested.i64, %nested.i64* %ptr, i64 0, i32 0
17 %ptr2= getelementptr inbounds %nested, %nested* %p2, i64 0, i32 0
19 %either_ptr = select i1 %cmp, %nested.i64* %ptr2, %nested.i64* %ptr
20 %either_ptr.64 = getelementptr inbounds %nested.i64, %nested.i64* %either_ptr, i64 0, i32 0
/external/llvm/test/Transforms/ScalarRepl/
Dnonzero-first-index.ll6 %nested = type { i32, [4 x i32] }
14 %A = alloca %nested
15 %B = getelementptr %nested, %nested* %A, i32 0, i32 1, i32 0
25 %A = alloca %nested
26 %B = getelementptr %nested, %nested* %A, i32 0, i32 1, i32 0
37 %A = alloca %nested
38 %B = bitcast %nested* %A to i32*
48 %A = alloca %nested
49 %B = bitcast %nested* %A to i32*
/external/ltrace/testsuite/ltrace.minor/
Ddemangle.h23 class nested {
25 nested();
26 ~nested();
31 class nested {
33 nested();
34 ~nested();
Ddemangle-lib.cpp88 class nested;
90 nested::nested(void) { ; } in nested() function in nested
91 nested::~nested() { ; } in ~nested()
92 int nested::Fi_i(int bar) { return bar; } in Fi_i()
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
DProfilerTest.java94 Profiler nested = profiler.startNested("subtask"); in testNestedProfiling() local
95 doSubtask(nested); in testNestedProfiling()
123 public void doSubtask(Profiler nested) { in doSubtask() argument
124 nested.start("n1"); in doSubtask()
127 nested.start("n2"); in doSubtask()
129 nested.stop(); in doSubtask()
/external/javassist/src/main/javassist/convert/
DTransformNewClass.java23 private int nested; field in TransformNewClass
35 nested = 0; in initialize()
62 ++nested; in transform()
68 if (typedesc != 0 && nested > 0) { in transform()
76 --nested; in transform()
DTransformNew.java23 private int nested; field in TransformNew
35 nested = 0; in initialize()
66 ++nested; in transform()
82 if (typedesc != 0 && nested > 0) { in transform()
86 --nested; in transform()
/external/eigen/Eigen/src/Core/
DDot.h141 typedef typename internal::nested<Derived>::type Nested;
230 typename internal::nested<Derived,2>::type nested(derived());
231 typename internal::nested<OtherDerived,2>::type otherNested(other.derived());
232 …return numext::abs2(nested.dot(otherNested)) <= prec * prec * nested.squaredNorm() * otherNested.s…
249 typename Derived::Nested nested(derived());
252 if(!internal::isApprox(nested.col(i).squaredNorm(), static_cast<RealScalar>(1), prec))
255 … if(!internal::isMuchSmallerThan(nested.col(i).dot(nested.col(j)), static_cast<Scalar>(1), prec))
DFuzzy.h25 typename internal::nested<Derived,2>::type nested(x); in run()
26 typename internal::nested<OtherDerived,2>::type otherNested(y); in run()
27 …return (nested - otherNested).cwiseAbs2().sum() <= prec * prec * (min)(nested.cwiseAbs2().sum(), o… in run()
/external/guava/guava/src/com/google/common/util/concurrent/
DAsyncSettableFuture.java44 private final NestedFuture<V> nested = new NestedFuture<V>(); field in AsyncSettableFuture
45 private final ListenableFuture<V> dereferenced = Futures.dereference(nested);
58 return nested.setFuture(checkNotNull(future)); in setFuture()
88 return nested.isDone(); in isSet()
/external/v8/test/mjsunit/compiler/
Descape-analysis.js81 function nested() { function
102 nested(); nested();
103 %OptimizeFunctionOnNextCall(nested);
104 nested(); nested();
282 function constructor2(nested) { argument
284 this.b = nested;
311 function constructor2(nested) { argument
313 this.b = nested;
Doptimized-function-calls.js77 function nested() { function
81 assertEquals(3113460, nested());
/external/elfutils/src/tests/
Drun-allfcts.sh87 /home/mark/src/tests/nested/nested_funcs.c:2:foo
88 /home/mark/src/tests/nested/nested_funcs.c:4:bar
89 /home/mark/src/tests/nested/nested_funcs.c:13:main
90 /home/mark/src/tests/nested/class_func.cxx:6:bar
91 /home/mark/src/tests/nested/class_func.cxx:13:main
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DAsyncSettableFutureTest.java80 SettableFuture<String> nested = SettableFuture.create(); in testSetFuture() local
81 assertTrue(future.setFuture(nested)); in testSetFuture()
94 nested.set("foo"); in testSetFuture()
102 SettableFuture<FooChild> nested = SettableFuture.create(); in testSetFuture_genericsHierarchy() local
103 assertTrue(future.setFuture(nested)); in testSetFuture_genericsHierarchy()
117 nested.set(value); in testSetFuture_genericsHierarchy()
/external/clang/test/SemaCXX/
Dmissing-namespace-qualifier-typo-corrections.cpp17 …namespace nested { bool moreFoobar() { return true; } } // expected-note{{'fizbin::nested::moreFoo… in moreFoobar() namespace
18 …namespace nested { bool lessFoobar() { return true; } } // expected-note{{'fizbin::nested' declare… in lessFoobar() namespace
31 …if (nested::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'nested'; did… in Check()
/external/clang/test/Index/Inputs/Headers/nested/
Dmodule.map1 module nested {
2 header "nested.h"
/external/chromium-trace/
Drun_unittest.py63 with contextlib.nested(open(ATRACE_DATA_WITH_THREAD_LIST, 'r'),
76 with contextlib.nested(open(ATRACE_DATA_RAW, 'r'),
85 with contextlib.nested(
99 with contextlib.nested(open(ATRACE_DATA_WITH_THREAD_LIST, 'r'),
/external/deqp/doc/testspecs/GLES31/
Dfunctional.uniform_location.txt26 + Location for (nested) structs and their members
27 + Location for (nested) arrays and all their elements
38 + Deeply nested structs/arrays
55 Basic primitive type, array, nested array and min/max cases test with all basic
63 Struct, nested struct and linkage cases are randomized.
/external/clang/test/Preprocessor/
Dmacro_paste_msextensions.c19 #define nested(x) int x comment cute little dead tokens... macro
21 nested(baz) rise of the dead tokens
/external/llvm/test/DebugInfo/X86/
Dtemplate.ll7 ; template<typename> struct y_impl { struct nested { }; };
9 ; y_impl<int>::nested n;
61 %"struct.y_impl<int>::nested" = type { i8 }
64 @n = global %"struct.y_impl<int>::nested" zeroinitializer, align 1
100 !8 = !MDCompositeType(tag: DW_TAG_structure_type, name: "nested", line: 2, size: 8, align: 8, file:…
124 …pe: null, file: !11, type: !"_ZTSN6y_implIiE6nestedE", variable: %"struct.y_impl<int>::nested"* @n)
/external/clang/test/CodeGenCXX/
Ddebug-info-template.cpp121 struct nested { struct
128 TC<unsigned, 2, &glb, &foo::e, &foo::f, &foo::g, 1, 2, 3>::nested tci;
/external/skia/tests/
DStrokeTest.cpp77 SkRect nested[2]; in test_strokerect() local
78 REPORTER_ASSERT(reporter, fillPath.isNestedFillRects(nested) == isMiter); in test_strokerect()
82 REPORTER_ASSERT(reporter, equal(nested[0], outer)); in test_strokerect()
83 REPORTER_ASSERT(reporter, equal(nested[1], inner)); in test_strokerect()
/external/nanopb-c/generator/google/protobuf/
Ddescriptor_pool.py257 nested = [
258 self._ConvertMessageDescriptor(nested, desc_name, file_desc, scope)
259 for nested in desc_proto.nested_type]
278 nested_types=nested,
287 for nested in desc.nested_types:
288 nested.containing_type = desc
/external/clang/test/SemaTemplate/
Dms-delayed-default-template-args.cpp13 namespace nested { namespace
21 template struct nested::Foo<>;

12345678910>>...16