Home
last modified time | relevance | path

Searched refs:init2 (Results 1 – 25 of 66) sorted by relevance

123

/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DDataTruncationTest.java36 boolean[] init2 = { false, true, false, false, false, true, false }; in testDataTruncationintbooleanbooleanintint()
52 boolean[] theFinalStates7 = init2; in testDataTruncationintbooleanbooleanintint()
61 aDataTruncation = new DataTruncation(init1[i], init2[i], in testDataTruncationintbooleanbooleanintint()
117 boolean[] init2 = { false, true, false, false, true, true, true }; in testGetIndex()
135 boolean[] theFinalStates7 = init2; in testGetIndex()
143 aDataTruncation = new DataTruncation(init1[i], init2[i], in testGetIndex()
189 boolean[] init2 = { false, true, false, true, true, false, true }; in testGetParameter()
197 boolean[] theReturns = init2; in testGetParameter()
207 boolean[] theFinalStates7 = init2; in testGetParameter()
215 aDataTruncation = new DataTruncation(init1[i], init2[i], in testGetParameter()
[all …]
DSQLExceptionTest.java61 String[] init2 = { "a", "1", "valid1", "----", "&valid*", "a", in testSQLExceptionStringStringint() local
68 String[] theFinalStates2 = init2; in testSQLExceptionStringStringint()
80 aSQLException = new SQLException(init1[i], init2[i], init3[i]); in testSQLExceptionStringStringint()
113 String[] init2 = { "a", "1", "valid1", "----", "&valid*", "a", "a", in testSQLExceptionStringString() local
117 String[] theFinalStates2 = init2; in testSQLExceptionStringString()
129 aSQLException = new SQLException(init1[i], init2[i]); in testSQLExceptionStringString()
251 String[] init2 = { "a", "1", "valid1", "----", "&valid*", null, "a" }; in testGetErrorCode() local
258 String[] theFinalStates2 = init2; in testGetErrorCode()
268 aSQLException = new SQLException(init1[i], init2[i], init3[i]); in testGetErrorCode()
304 String[] init2 = { "a", "1", "valid1", "----", "&valid*", null, "a" }; in testGetNextException() local
[all …]
DBatchUpdateExceptionTest.java127 int[][] init2 = { { 1, 2, 3 }, { }, { 3 }, null, { 5, 5 }, { 6 }, in testBatchUpdateExceptionStringintArray() local
133 int[][] theFinalStates2 = init2; in testBatchUpdateExceptionStringintArray()
147 init2[i]); in testBatchUpdateExceptionStringintArray()
181 String[] init2 = { "a", "1", "valid1", "----", "&valid*", "a", null, in testBatchUpdateExceptionStringStringintArray() local
192 String[] theFinalStates3 = init2; in testBatchUpdateExceptionStringStringintArray()
203 init2[i], init3[i]); in testBatchUpdateExceptionStringStringintArray()
237 String[] init2 = { "a", "1", "valid1", "----", "&valid*", "a", null, in testBatchUpdateExceptionStringStringintintArray() local
249 String[] theFinalStates3 = init2; in testBatchUpdateExceptionStringStringintintArray()
260 init2[i], init3[i], init4[i]); in testBatchUpdateExceptionStringStringintintArray()
DSQLWarningTest.java127 String[] init2 = { "a", "1", "valid1", "----", "&valid*", "a", "a", in testSQLWarningStringString() local
131 String[] theFinalStates2 = init2; in testSQLWarningStringString()
143 aSQLWarning = new SQLWarning(init1[i], init2[i]); in testSQLWarningStringString()
176 String[] init2 = { "a", "1", "valid1", "----", "&valid*", "valid1", in testSQLWarningStringStringint() local
183 String[] theFinalStates2 = init2; in testSQLWarningStringStringint()
195 aSQLWarning = new SQLWarning(init1[i], init2[i], init3[i]); in testSQLWarningStringStringint()
DDateTest.java113 int init2[] = { 11, 0, 0, 0, 999, 0, 0, -111 }; in testDateintintint() local
117 Date theDate = new Date(init1[i], init2[i], init3[i]); in testDateintintint()
/external/llvm-project/clang/test/Sema/
Dwarn-uninitialized-statement-expression.c23 void init2(struct widget *);
27 init2(&my_widget); in bar()
30 struct widget a = (init2(&a), a); in bar()
37 init2(&my_widget); in bar_bad()
53init2(a); // expected-warning{{variable 'a' is uninitialized when used within its own initializati… in f()
/external/llvm-project/llvm/test/CodeGen/PowerPC/
Daix-static-init-default-priority.ll4 …5535, void ()* @init1, i8* null }, { i32, void ()*, i8* } { i32 65535, void ()* @init2, i8* null }]
20 define internal void @init2() {
40 ; CHECK: .lglobl init2[DS]
41 ; CHECK: .lglobl .init2
42 ; CHECK: .csect init2[DS]
43 ; CHECK: __sinit80000000_clang_ac404299654d2af7eae71e75c17f7c9b_1: # @init2
44 ; CHECK: .init2:
/external/tensorflow/tensorflow/python/ops/
Dinit_ops_v2_test.py38 init2, argument
45 t2 = self.evaluate(init2(shape, dtype))
212 init2 = init_ops_v2.RandomUniform(0, 7, seed=1)
213 self._identical_test(init1, init2, True)
218 init2 = init_ops_v2.RandomUniform(0, 7, seed=2)
219 self._identical_test(init1, init2, False)
246 init2 = init_ops_v2.RandomNormal(0, 7, seed=1)
247 self._identical_test(init1, init2, True)
252 init2 = init_ops_v2.RandomNormal(0, 7, seed=2)
253 self._identical_test(init1, init2, False)
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/
Dinit_ops_test.py43 def identicaltest(tc, init1, init2, shape=None): argument
61 t2 = init2(shape).eval()
263 init2 = init_ops.random_normal_initializer(0.0, 1.0, seed=1, dtype=dtype)
264 self.assertTrue(identicaltest(self, init1, init2))
270 init2 = init_ops.random_normal_initializer(0.0, 1.0, seed=2, dtype=dtype)
271 self.assertFalse(identicaltest(self, init1, init2))
294 init2 = init_ops.truncated_normal_initializer(
296 self.assertTrue(identicaltest(self, init1, init2))
303 init2 = init_ops.truncated_normal_initializer(
305 self.assertFalse(identicaltest(self, init1, init2))
[all …]
/external/libcxx/test/std/thread/thread.mutex/thread.once/thread.once.callonce/
Dcall_once.pass.cpp87 struct init2 struct
94 int init2::called = 0; argument
100 std::call_once(flg2, init2(), 2, 3); in f2()
101 std::call_once(flg2, init2(), 4, 5); in f2()
235 assert(init2::called == 5); in main()
/external/llvm-project/libcxx/test/std/thread/thread.mutex/thread.once/thread.once.callonce/
Dcall_once.pass.cpp87 struct init2 struct
94 int init2::called = 0; argument
100 std::call_once(flg2, init2(), 2, 3); in f2()
101 std::call_once(flg2, init2(), 4, 5); in f2()
235 assert(init2::called == 5); in main()
/external/llvm/test/Transforms/GlobalOpt/
Dctor-list-opt-constexpr.ll13 … = appending global [2 x %0] [%0 { i32 65535, void ()* @init1 }, %0 { i32 65535, void ()* @init2 }]
27 define internal void @init2() {
33 ; CHECK-LABEL: @init2(
/external/llvm-project/llvm/test/Transforms/GlobalOpt/
Dctor-list-opt-constexpr.ll13 …[2 x %0] [%0 { i32 65535, void ()* @init1, i8* null }, %0 { i32 65535, void ()* @init2, i8* null }]
27 define internal void @init2() {
33 ; CHECK-LABEL: @init2(
/external/llvm-project/flang/test/Semantics/
Dresolve48.f9026 module procedure init2
33 type(t2) function init2() function
/external/clang/test/ARCMT/
Dinit.m13 -init2; method
28 -(id) init2 { method
Dinit.m.result13 -init2;
28 -(id) init2 {
/external/llvm-project/clang/test/ARCMT/
Dinit.m13 -init2; method
28 -(id) init2 { method
Dinit.m.result13 -init2;
28 -(id) init2 {
/external/llvm-project/llvm/test/CodeGen/AArch64/
Dwineh-try-catch.ll34 ; Check the same offset is used to pass the address of B to init2 in the
59 ; Check that the stack address passed to init2 is off the frame pointer, and
62 ; CHECK: bl "?init2@@YAXPEAH@Z"
155 call void @"?init2@@YAXPEAH@Z"(i32* %arraydecay2) [ "funclet"(token %2) ]
194 declare dso_local void @"?init2@@YAXPEAH@Z"(i32*)
/external/llvm-project/polly/test/ScopInfo/
Dintra_and_inter_bb_scalar_dep.ll10 ; init2 = *init_ptr;
11 ; A[i] = init + init2;
/external/libabigail/tests/data/test-diff-suppr/test34-priv-include-dir-v0/
Dtest34-priv-include-v0.h13 init2(struct priv* p) in init2() function
/external/libabigail/tests/data/test-diff-suppr/test34-priv-include-dir-v1/
Dtest34-priv-include-v1.h15 init2(struct priv* p) in init2() function
/external/clang/test/OpenMP/
Dfor_reduction_codegen_UDR.cpp30 void init2(BaseS1&, const BaseS1&);
56 #pragma omp declare reduction(operator&& : S<T> : omp_out.f = 17 * omp_in.f) initializer(init2(omp_… in tmain()
/external/llvm-project/clang/test/OpenMP/
Dfor_reduction_codegen_UDR.cpp48 void init2(BaseS1&, const BaseS1&);
102 #pragma omp declare reduction(operator&& : S<T> : omp_out.f = 17 * omp_in.f) initializer(init2(omp_… in tmain()
/external/llvm-project/llvm/test/DebugInfo/MIR/X86/
Ddbg-stack-value-range.mir71 %call2 = call i32 (...) @init2(), !dbg !15
86 declare dso_local i32 @init2(...) local_unnamed_addr
174 …CALL64pcrel32 @init2, csr_64, implicit $rsp, implicit $ssp, implicit $al, implicit-def $rsp, impli…

123