Home
last modified time | relevance | path

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

123456

/aosp_15_r20/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A 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 …]
H A 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 …]
H A 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()
H A 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()
H A 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()
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/array_ops/
H A Dinit_ops_test.py39 def identicaltest(tc, init1, init2, shape=None): argument
57 t2 = init2(shape).eval()
259 init2 = init_ops.random_normal_initializer(0.0, 1.0, seed=1, dtype=dtype)
260 self.assertTrue(identicaltest(self, init1, init2))
266 init2 = init_ops.random_normal_initializer(0.0, 1.0, seed=2, dtype=dtype)
267 self.assertFalse(identicaltest(self, init1, init2))
290 init2 = init_ops.truncated_normal_initializer(
292 self.assertTrue(identicaltest(self, init1, init2))
299 init2 = init_ops.truncated_normal_initializer(
301 self.assertFalse(identicaltest(self, init1, init2))
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/ops/
H A Dinit_ops_v2_test.py34 init2, argument
41 t2 = self.evaluate(init2(shape, dtype))
208 init2 = init_ops_v2.RandomUniform(0, 7, seed=1)
209 self._identical_test(init1, init2, True)
214 init2 = init_ops_v2.RandomUniform(0, 7, seed=2)
215 self._identical_test(init1, init2, False)
242 init2 = init_ops_v2.RandomNormal(0, 7, seed=1)
243 self._identical_test(init1, init2, True)
248 init2 = init_ops_v2.RandomNormal(0, 7, seed=2)
249 self._identical_test(init1, init2, False)
[all …]
/aosp_15_r20/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/concurrent/
H A DConstantInitializerTest.java83 ConstantInitializer<Integer> init2 = new ConstantInitializer<>( in testEqualsTrue() local
85 checkEquals(init2, true); in testEqualsTrue()
87 init2 = new ConstantInitializer<>(null); in testEqualsTrue()
88 checkEquals(init2, true); in testEqualsTrue()
96 ConstantInitializer<Integer> init2 = new ConstantInitializer<>( in testEqualsFalse() local
98 checkEquals(init2, false); in testEqualsFalse()
99 init2 = new ConstantInitializer<>(VALUE + 1); in testEqualsFalse()
100 checkEquals(init2, false); in testEqualsFalse()
/aosp_15_r20/external/libcxx/test/std/thread/thread.mutex/thread.once/thread.once.callonce/
H A 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()
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/thread/thread.mutex/thread.once/thread.once.callonce/
H A 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()
/aosp_15_r20/external/nullaway/nullaway/src/test/resources/com/uber/nullaway/testdata/
H A DCheckFieldInitNegativeCases.java89 void init2() { in init2() method in CheckFieldInitNegativeCases.T3
115 init2(); in init1()
122 public final void init2() { in init2() method in CheckFieldInitNegativeCases.T5
140 static void init2() { in init2() method in CheckFieldInitNegativeCases.T6
158 static void init2() { in init2() method in CheckFieldInitNegativeCases.T7
H A DCheckFieldInitPositiveCases.java116 init2(); in T7()
123 public void init2() { in init2() method in CheckFieldInitPositiveCases.T7
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/thread/test/sync/mutual_exclusion/once/call_once/
Dcall_once_pass.cpp119 struct init2 struct
128 int init2::called = 0; argument
134 boost::call_once(flg2, init2(), 2, 3); in f2()
135 boost::call_once(flg2, init2(), 4, 5); in f2()
267 BOOST_TEST(init2::called == 5); in main()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/regex/performance/
Dposix.cpp61 static const initializer init2; member
64 const posix_regex::initializer posix_regex::init2; member in posix_regex
93 init2.do_nothing(); in name()
/aosp_15_r20/external/llvm/test/Transforms/GlobalOpt/
H A 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(
/aosp_15_r20/external/clang/test/ARCMT/
H A Dinit.m13 -init2; method
28 -(id) init2 { method
H A Dinit.m.result13 -init2;
28 -(id) init2 {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/internal/notsha256/
Dsha256.go28 init2 = 0x3C6EF372 const
47 d.h[2] = init2
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/classic/test/
Dclosure_tests.cpp142 rule<scanner<>, my_closure6::context_t> init2; // compile check only in closure_tests() local
143 rule<> r2 = init2(3); // member2 and member3 are default constructed in closure_tests()
/aosp_15_r20/external/mesa3d/src/gallium/drivers/r600/sfn/tests/
H A Dsfn_instrfromstring_test.cpp602 string init2 = "WRITE_SCRATCH 10 R2.xy_w AL:8 ALO:8"; in TEST_F() local
604 check(init2, expect2); in TEST_F()
617 string init2 = "WRITE_SCRATCH @R4.x[20] R2.xy__ AL:4 ALO:16"; in TEST_F() local
619 check(init2, expect2); in TEST_F()
/aosp_15_r20/prebuilts/go/linux-x86/src/crypto/md5/
Dmd5.go33 init2 = 0x98BADCFE const
48 d.s[2] = init2
/aosp_15_r20/external/clang/test/OpenMP/
H A 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()
/aosp_15_r20/external/pytorch/aten/src/ATen/nnapi/
H A Dnnapi_bind.cpp40 init2( in init()
47 void NnapiCompilation::init2( in init2() function in torch::nnapi::bind::NnapiCompilation
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/4/libcore/ojluni/src/main/java/java/lang/
DThread.java579 init2(parent, inheritThreadLocals); in Thread()
805 init2(currentThread(), true); in Thread()
811 private void init2(Thread parent, boolean inheritThreadLocals) { in init2() method in Thread
/aosp_15_r20/libcore/ojluni/src/main/java/java/lang/
H A DThread.java579 init2(parent, inheritThreadLocals); in Thread()
805 init2(currentThread(), true); in Thread()
811 private void init2(Thread parent, boolean inheritThreadLocals) { in init2() method in Thread

123456