| /external/libaom/libaom/test/ |
| pickrst_test.cc | 39 typedef ::testing::tuple<const lowbd_pixel_proj_error_func> 204 typedef ::testing::tuple<const highbd_pixel_proj_error_func>
|
| /external/libcxx/utils/google-benchmark/ |
| mingw.py | 72 version = tuple([int(n) for n in value[0].strip().split('.')]) 250 Converts a version string into a tuple 253 version = tuple(int(v) for v in string.split('.'))
|
| /external/libkmsxx/kms++util/src/ |
| videodevice.cpp | 240 vector<tuple<uint32_t, uint32_t>> VideoDevice::get_discrete_frame_sizes(PixelFormat fmt) 242 vector<tuple<uint32_t, uint32_t>> v;
|
| /external/libvpx/libvpx/test/ |
| dct32x32_test.cc | 14 #include <tuple> 71 typedef std::tuple<FwdTxfmFunc, InvTxfmFunc, int, vpx_bit_depth_t>
|
| /external/linux-kselftest/tools/testing/selftests/bpf/ |
| bpf_helpers.h | 156 struct bpf_sock_tuple *tuple, 161 struct bpf_sock_tuple *tuple,
|
| /external/protobuf/objectivec/DevTools/ |
| pddm_tests.py | 56 self.assertEquals(macro.args, tuple()) 78 self.assertEquals(macro.args, tuple())
|
| /external/python/cpython2/Lib/idlelib/ |
| keybindingDialog.py | 187 self.alphanumKeys=tuple(string.ascii_lowercase+string.digits) 188 self.punctuationKeys=tuple('~!@#%^&*()_-+={}[]|;:,.<>/?') 193 #make a tuple of most of the useful common 'final' keys
|
| /external/python/cpython2/Lib/lib-tk/test/ |
| widget_tests.py | 45 if isinstance(value, tuple): 62 if isinstance(expected, tuple): 219 self.assertIsInstance(bbox, tuple)
|
| /external/python/cpython2/Lib/sqlite3/test/ |
| factory.py | 142 """Checks if the row object can be converted to a tuple""" 145 t = tuple(row) 181 as_tuple = tuple(row)
|
| /external/python/cpython2/Lib/test/ |
| test_dictviews.py | 102 self.assertEqual(d1.viewkeys() & tuple(d1.viewkeys()), {'a', 'b'}) 120 self.assertEqual(d1.viewkeys() ^ tuple(d2.keys()), {'a', 'c'})
|
| test_turtle.py | 154 self.assertEqual(vec1, tuple(vec1)) 155 self.assertEqual(tuple(vec1), vec1)
|
| /external/python/cpython3/Lib/idlelib/ |
| config_key.py | 13 ALPHANUM_KEYS = tuple(string.ascii_lowercase + string.digits) 14 PUNCTUATION_KEYS = tuple('~!@#%^&*()_-+={}[]|;:,.<>/?')
|
| /external/python/cpython3/Lib/sqlite3/test/ |
| factory.py | 152 """Checks if the row object can be converted to a tuple""" 155 t = tuple(row) 191 as_tuple = tuple(row)
|
| /external/python/cpython3/Lib/test/ |
| test_call.py | 306 # (func, args: tuple, result) 349 # (func, args: tuple, kwargs: dict, result) 436 kwnames = tuple(kwargs.keys()) 437 args = args + tuple(kwargs.values())
|
| test_turtle.py | 154 self.assertEqual(vec1, tuple(vec1)) 155 self.assertEqual(tuple(vec1), vec1)
|
| /external/python/cpython3/Lib/tkinter/test/ |
| widget_tests.py | 41 if isinstance(value, tuple): 58 if isinstance(expected, tuple): 200 self.assertIsInstance(bbox, tuple)
|
| /external/python/cpython3/Lib/turtledemo/ |
| __main__.py | 219 text['font'] = tuple(txtfont) 250 self.text['font'] = tuple(txtfont)
|
| /external/skia/src/sksl/ |
| SkSLSPIRVCodeGenerator.h | 12 #include <tuple> 369 typedef std::tuple<IntrinsicKind, int32_t, int32_t, int32_t, int32_t> Intrinsic;
|
| /external/skqp/src/sksl/ |
| SkSLSPIRVCodeGenerator.h | 12 #include <tuple> 317 typedef std::tuple<IntrinsicKind, int32_t, int32_t, int32_t, int32_t> Intrinsic;
|
| /external/swiftshader/third_party/SPIRV-Tools/source/val/ |
| validation_state.h | 22 #include <tuple> 566 // Returns tuple <is_int32, is_const_int32, value>. 569 std::tuple<bool, bool, uint32_t> EvalInt32IfConst(uint32_t id);
|
| /external/swiftshader/third_party/SPIRV-Tools/test/ |
| binary_to_text_test.cpp | 17 #include <tuple> 236 ::testing::TestWithParam<std::tuple<spv_target_env, std::string>>>;
|
| /external/swiftshader/third_party/SPIRV-Tools/test/val/ |
| val_version_test.cpp | 16 #include <tuple> 28 std::tuple<spv_target_env, spv_target_env, std::string, bool>>;
|
| /external/tensorflow/tensorflow/compiler/xla/service/ |
| buffer_assignment_test.cc | 182 // param[(s32,f32[4])] --- get-tuple-element[0] --- less-than 204 // /--- get-tuple-elementv[1] --- addv ---\ 205 // param[(s32,f32[4])] ---| tuple 206 // \--- get-tuple-elementc[0] --- addc ---/ 380 // Create a tuple with non-const and const elements and check that 389 auto tuple = builder.AddInstruction( 397 EXPECT_EQ(buffers->HasTopLevelAllocation(tuple), 398 buffers->HasAllocationAt(tuple, /*index=*/{})); 400 buffers->HasAllocationAt(tuple, /*index=*/{0})); 402 buffers->HasAllocationAt(tuple, /*index=*/{1})) [all...] |
| hlo_sharding_metadata.cc | 27 // AssignmentKind and kUnassignedDevice are used during tuple domain sharding 36 // kUnassignedDevice can only be assigned to tuple leaf shardings to indicate 38 // sharding propagation. It is used to be able to express tuple shardings with 40 // tuple-shaped instructions using kUnassignedDevice's is cleared. 79 // Tuple(device=0) -> 83 // In that case the tuple simplifier could create something like: 90 // adding back a Tuple+GTE pair with the proper device. 122 HloInstruction* tuple = pass_through.operand->parent()->AddInstruction( local 126 tuple, 0)); 138 // For tuple shardings if every element have the same sharsing then we want t [all...] |
| /external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
| cudnn_conv_rewriter.cc | 47 // This call returns a tuple of (conv_result, scratch_memory), where 54 // this second tuple element. 92 std::tuple<bool, Window, ConvolutionDimensionNumbers> MatchBackwardFilter( 256 std::tuple<bool, Window, ConvolutionDimensionNumbers, HloInstruction*> 544 // The CustomCall returns a tuple (conv_result, scratch_memory). Extract out
|