Home
last modified time | relevance | path

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

12345678910>>...19

/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* %p1, i64 -1, i32 0
16 %ptr.64 = getelementptr inbounds %nested.i64* %ptr, i64 0, i32 0
17 %ptr2= getelementptr inbounds %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* %either_ptr, i64 0, i32 0
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/bin/
Dreptnested-err.errwarn1 -:2: error: nested rept not supported
3 -:4: error: nested rept not supported
4 -:4: error: nested rept not supported
5 -:4: error: nested rept not supported
6 -:4: error: nested rept not supported
7 -:4: error: nested rept not supported
/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/chromium_org/third_party/WebKit/PerformanceTests/Layout/resources/
Dfloats.js11 function createSet(width, height, nested) { argument
18 for ( ; nested > 0; --nested)
19 … nestedContainer = createElement("div", nestedContainer, "nested", "nested" + x + "_" + nested);
37 function createTestFunction(width, height, nested, runs, rows) { argument
40 containers[i] = createSet(width, height, nested);
41 nested = nested || 0;
/external/llvm/test/Transforms/ScalarRepl/
Dnonzero-first-index.ll6 %nested = type { i32, [4 x i32] }
14 %A = alloca %nested
15 %B = getelementptr %nested* %A, i32 0, i32 1, i32 0
25 %A = alloca %nested
26 %B = getelementptr %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/libcxx/test/language.support/support.exception/except.nested/
DAndroid.mk17 test_makefile := external/libcxx/test/language.support/support.exception/except.nested/Android.mk
19 test_name := language.support/support.exception/except.nested/rethrow_nested
23 test_name := language.support/support.exception/except.nested/ctor_copy
27 test_name := language.support/support.exception/except.nested/assign
31 test_name := language.support/support.exception/except.nested/rethrow_if_nested
35 test_name := language.support/support.exception/except.nested/throw_with_nested
39 test_name := language.support/support.exception/except.nested/ctor_default
/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/chromium_org/ppapi/api/private/
Dppb_flash_message_loop.idl16 * nested message loops.
25 * @return A <code>PP_Resource</code> that can be used to run a nested message
42 * Runs a nested message loop. The plugin will be reentered from this call.
43 * This function is used in places where Flash would normally enter a nested
49 * <code>Run()</code> will start a nested message loop. The subsequent calls
63 * Signals to quit the outermost nested message loop. Use this to exit and
67 * <code>Run()</code>, the outermost nested message loop will be quitted
/external/chromium_org/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/chromium_org/third_party/skia/tests/
DStrokeTest.cpp47 SkRect nested[2]; in test_strokerect() local
48 REPORTER_ASSERT(reporter, fillPath.isNestedRects(nested) == isMiter); in test_strokerect()
52 REPORTER_ASSERT(reporter, equal(nested[0], outer)); in test_strokerect()
53 REPORTER_ASSERT(reporter, equal(nested[1], inner)); in test_strokerect()
/external/skia/tests/
DStrokeTest.cpp47 SkRect nested[2]; in test_strokerect() local
48 REPORTER_ASSERT(reporter, fillPath.isNestedRects(nested) == isMiter); in test_strokerect()
52 REPORTER_ASSERT(reporter, equal(nested[0], outer)); in test_strokerect()
53 REPORTER_ASSERT(reporter, equal(nested[1], inner)); in test_strokerect()
/external/chromium_org/chrome/browser/ui/cocoa/
Drun_loop_testing_unittest.mm49 base::scoped_nsobject<TestDelayed> nested([[TestDelayed alloc] init]);
50 [tester setNext:nested];
53 EXPECT_FALSE([nested didWork]);
58 EXPECT_TRUE([nested didWork]);
/external/clang/test/Index/Inputs/Headers/nested/
Dmodule.map1 module nested {
2 header "nested.h"
/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/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/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/tests/
DMakefile.inc18 EXTRA_DIST += modules/preprocs/nasm/tests/nasmpp-nested.asm
19 EXTRA_DIST += modules/preprocs/nasm/tests/nasmpp-nested.errwarn
20 EXTRA_DIST += modules/preprocs/nasm/tests/nasmpp-nested.hex
/external/clang/test/CodeGenCXX/
Ddebug-info-template.cpp91 struct nested { struct
102 TC<unsigned, 2, &glb, &foo::e, &foo::f, &func, tmpl_impl, 1, 2, 3>::nested tci;
/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/llvm/test/DebugInfo/X86/
Dtemplate.ll8 ; template<typename> struct y_impl { struct nested { }; };
10 ; y_impl<int>::nested n;
59 %"struct.y_impl<int>::nested" = type { i8 }
62 @n = global %"struct.y_impl<int>::nested" zeroinitializer, align 1
98nested", i32 2, i64 8, i64 8, i32 0, i32 0, null, metadata !2, i32 0, null, null, metadata !"_ZTSN…
120 …", metadata !11, i32 4, metadata !8, i32 0, i32 1, %"struct.y_impl<int>::nested"* @n, null} ; [ DW…
/external/chromium_org/tools/gyp/test/msvs/filters/
Dfilters.gyp40 '../folder1/nested/a.c',
42 '../folder1/nested/b.c',

12345678910>>...19