| /external/v8/tools/testrunner/local/ |
| utils.py | 170 return tuple(Freeze(item) for item in obj)
|
| /frameworks/av/services/camera/libcameraservice/api2/ |
| CompositeStream.h | 117 std::unordered_map<int64_t, std::tuple<int64_t, CameraMetadata>> mCaptureResults;
|
| /external/fonttools/Lib/fontTools/ufoLib/ |
| validators.py | 44 if not isinstance(values, (list, tuple)): 238 if not isinstance(values, (list, tuple)): 252 if not isinstance(values, (list, tuple)): 268 if not isinstance(values, (list, tuple)): 286 if not isinstance(values, (list, tuple)): 301 if not isinstance(values, (list, tuple)): 316 if not isinstance(values, (list, tuple)): 886 if not isinstance(glyphList, (list, tuple)): 993 public.glyphOrder is not properly formatted: expected list or tuple,... 1013 if not isinstance(value, (list, tuple)) [all...] |
| /external/libaom/libaom/third_party/googletest/src/googletest/include/gtest/internal/ |
| gtest-port.h | 90 // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple 100 // Test's own tr1 tuple implementation should be 366 // C++11 specifies that <tuple> provides std::tuple. 372 # if defined(__has_include) && !__has_include(<tuple>) 625 // Determines whether Google Test can use tr1/tuple. You can define 626 // this macro to 0 to prevent Google Test from using tuple (any 627 // feature depending on tuple with be disabled in this mode). 630 // STLport, provided with the Android NDK, has neither <tr1/tuple> or <tuple> [all...] |
| /external/mesa3d/src/gtest/include/gtest/internal/ |
| gtest-port.h | 90 // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple 100 // Test's own tr1 tuple implementation should be 366 // C++11 specifies that <tuple> provides std::tuple. 372 # if defined(__has_include) && !__has_include(<tuple>) 625 // Determines whether Google Test can use tr1/tuple. You can define 626 // this macro to 0 to prevent Google Test from using tuple (any 627 // feature depending on tuple with be disabled in this mode). 630 // STLport, provided with the Android NDK, has neither <tr1/tuple> or <tuple> [all...] |
| /external/python/cpython3/Lib/ |
| functools.py | 45 assigned is a tuple naming the attributes assigned directly 48 updated is a tuple naming the attributes of the wrapper that 249 args = tuple(args) 289 if not isinstance(state, tuple): 290 raise TypeError("argument to __setstate__ must be a tuple") 294 if (not callable(func) or not isinstance(args, tuple) or 299 args = tuple(args) # just in case it's a subclass 362 call_args = (cls_or_self,) + self.args + tuple(rest) 417 tuple=tuple, type=type, len=len) [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googletest/include/gtest/internal/ |
| gtest-port.h | 90 // GTEST_HAS_TR1_TUPLE - Define it to 1/0 to indicate tr1::tuple 100 // Test's own tr1 tuple implementation should be 368 // C++11 specifies that <tuple> provides std::tuple. 374 # if defined(__has_include) && !__has_include(<tuple>) 628 // Determines whether Google Test can use tr1/tuple. You can define 629 // this macro to 0 to prevent Google Test from using tuple (any 630 // feature depending on tuple with be disabled in this mode). 633 // STLport, provided with the Android NDK, has neither <tr1/tuple> or <tuple> [all...] |
| /external/tensorflow/tensorflow/compiler/xla/service/ |
| bfloat16_propagation_test.cc | 96 // Tests that BF16 can propagate through select over non-tuple buffers, but not 331 HloInstruction* tuple = local 334 HloInstruction::CreateGetTupleElement(add1->shape(), tuple, 1)); 336 // lhs is the transpose of add1, and rhs is a get-tuple-element aliasing add1. 366 HloInstruction* tuple = local 374 EXPECT_EQ(computation->root_instruction(), tuple); 456 // Tests that if 1) the root instruction of a fusion is a tuple, 2) the fusion 457 // outputs are only used by a dot, and 3) one element of the tuple is used by 462 // = tuple(F32 a, F32 add(F32 a, F32 b)) 465 // = tuple(BF16 convert(a), BF16 add(F32 a, F32 b) 695 HloInstruction* tuple = local 910 HloInstruction* tuple = local 947 HloInstruction* tuple = local [all...] |
| hlo_parser_test.cc | 76 ROOT %tuple = (f32[], (f32[2,4]{1,0}, (f32[2,4]{1,0}))) tuple(f32[] %a, (f32[2,4]{1,0}, (f32[2,4]{1,0})) %b) 206 // tuple constant 231 // empty tuple 237 ROOT %tuple = () tuple() 242 // tuple 251 ROOT %tuple = (f32[], f32[3]{0}, f32[2,3]{1,0}) tuple(f32[] %v1, f32[3]{0} %v2, f32[2,3]{1,0} %v3) 264 ROOT %tuple = (f32[], f32[3]{0}, f32[2,3]{1,0}) tuple(f32[] %v1, f32[3]{0} %v2, f32[2,3]{1,0} %v3), sharding={ (…) [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/ |
| test_case.py | 551 self.assertListEqual, tuple(a), tuple(b))
553 self.assertSequenceEqual, a, tuple(b))
557 self.assertTupleEqual(tuple(a), tuple(b))
558 self.assertSequenceEqual(a, tuple(b))
559 self.assertSequenceEqual(tuple(a), b)
562 a, tuple(b))
564 tuple(a), b)
567 tuple(b)) [all...] |
| /external/google-breakpad/src/testing/include/gmock/ |
| gmock-generated-actions.h | 47 // InvokeHelper<F> knows how to unpack an N-tuple and invoke an N-ary 54 class InvokeHelper<R, ::std::tr1::tuple<> > { 57 static R Invoke(Function function, const ::std::tr1::tuple<>&) { 64 const ::std::tr1::tuple<>&) { 70 class InvokeHelper<R, ::std::tr1::tuple<A1> > { 73 static R Invoke(Function function, const ::std::tr1::tuple<A1>& args) { 81 const ::std::tr1::tuple<A1>& args) { 88 class InvokeHelper<R, ::std::tr1::tuple<A1, A2> > { 91 static R Invoke(Function function, const ::std::tr1::tuple<A1, A2>& args) { 99 const ::std::tr1::tuple<A1, A2>& args) [all...] |
| /external/python/cpython2/Lib/test/ |
| test_iter.py | 224 # Test a tuple 303 self.assertEqual(tuple(SequenceClass(5)), (0, 1, 2, 3, 4)) 304 self.assertEqual(tuple(SequenceClass(0)), ()) 305 self.assertEqual(tuple([]), ()) 306 self.assertEqual(tuple(()), ()) 307 self.assertEqual(tuple("abc"), ("a", "b", "c")) 310 self.assertEqual(tuple(d), tuple(d.keys())) 312 self.assertRaises(TypeError, tuple, list) 313 self.assertRaises(TypeError, tuple, 42 [all...] |
| /external/python/cpython2/Lib/unittest/test/ |
| test_case.py | 552 self.assertListEqual, tuple(a), tuple(b)) 554 self.assertSequenceEqual, a, tuple(b)) 558 self.assertTupleEqual(tuple(a), tuple(b)) 559 self.assertSequenceEqual(a, tuple(b)) 560 self.assertSequenceEqual(tuple(a), b) 563 a, tuple(b)) 565 tuple(a), b) 568 tuple(b) [all...] |
| /external/python/cpython3/Lib/test/ |
| test_iter.py | 300 # Test a tuple 371 self.assertEqual(tuple(SequenceClass(5)), (0, 1, 2, 3, 4)) 372 self.assertEqual(tuple(SequenceClass(0)), ()) 373 self.assertEqual(tuple([]), ()) 374 self.assertEqual(tuple(()), ()) 375 self.assertEqual(tuple("abc"), ("a", "b", "c")) 378 self.assertEqual(tuple(d), tuple(d.keys())) 380 self.assertRaises(TypeError, tuple, list) 381 self.assertRaises(TypeError, tuple, 42 [all...] |
| /external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/ |
| gmock-generated-actions.h | 47 // InvokeHelper<F> knows how to unpack an N-tuple and invoke an N-ary 54 class InvokeHelper<R, ::testing::tuple<> > { 57 static R Invoke(Function function, const ::testing::tuple<>&) { 64 const ::testing::tuple<>&) { 70 class InvokeHelper<R, ::testing::tuple<A1> > { 73 static R Invoke(Function function, const ::testing::tuple<A1>& args) { 80 const ::testing::tuple<A1>& args) { 86 class InvokeHelper<R, ::testing::tuple<A1, A2> > { 89 static R Invoke(Function function, const ::testing::tuple<A1, A2>& args) { 96 const ::testing::tuple<A1, A2>& args) [all...] |
| /art/libdexfile/dex/ |
| dex_file_tracking_registrar.cc | 20 #include <tuple> 144 const std::tuple<const void*, size_t, bool>& current_range = range_values_.front();
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
| weakrefobject.c | 942 PyObject *tuple;
local 945 tuple = PyTuple_New(count * 2);
946 if (tuple == NULL) {
957 PyTuple_SET_ITEM(tuple, i * 2, (PyObject *) current);
958 PyTuple_SET_ITEM(tuple, i * 2 + 1, current->wr_callback);
968 PyObject *callback = PyTuple_GET_ITEM(tuple, i * 2 + 1);
970 /* The tuple may have slots left to NULL */
972 PyObject *item = PyTuple_GET_ITEM(tuple, i * 2);
976 Py_DECREF(tuple);
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| DocXMLRPCServer.py | 95 if isinstance(object, tuple):
187 method_info = tuple(method_info)
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
| ccompiler.py | 153 # macro definition is a 2-tuple (name, value), where the value is
155 # undefinition is a 1-tuple (name,).
228 definition, ie. either (name,value) 2-tuple or a (name,) tuple. Do
232 if not (isinstance(defn, tuple) and
239 "must be tuple (string,), (string, string), or " + \
390 elif isinstance(incdirs, (list, tuple)):
450 elif isinstance(include_dirs, (list, tuple)):
464 if not isinstance(objects, (list, tuple)):
466 "'objects' must be a list or tuple of strings" [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
| test_dummy_thread.py | 112 call_interrupt, tuple())
132 "Argument passing for thread creation using tuple failed")
133 _thread.start_new_thread(arg_tester, tuple(), {'queue':testing_queue,
141 "Argument passing for thread creation using both tuple"
|
| test_pep352.py | 119 args = tuple(range(arg_count))
132 results = ([len(exc.args), 0], [exc.args, tuple()],
178 "tuple" % type(object_))
224 # Make sure that even if the string exception is listed in a tuple
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
| weakrefobject.c | 935 PyObject *tuple;
local 938 tuple = PyTuple_New(count * 2);
939 if (tuple == NULL) {
951 PyTuple_SET_ITEM(tuple, i * 2, (PyObject *) current);
952 PyTuple_SET_ITEM(tuple, i * 2 + 1, current->wr_callback);
962 PyObject *callback = PyTuple_GET_ITEM(tuple, i * 2 + 1);
964 /* The tuple may have slots left to NULL */
966 PyObject *item = PyTuple_GET_ITEM(tuple, i * 2);
970 Py_DECREF(tuple);
|
| /external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/ |
| flat_map.cpp | 73 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}) 76 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}); 121 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}, 125 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}, 169 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}, 173 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;}, 217 [](int /*x*/, std::tuple<int,int,int> triplet){return triplet;}, 221 [](int /*z*/, std::tuple<int,int,int> triplet){return triplet;},
|
| /external/autotest/client/site_tests/video_GlitchDetection/ |
| video_GlitchDetection.py | 102 raw_test_checksums = [tuple(checksum) for checksum in 243 checksum = tuple(int(val) for val in line.split())
|
| /external/autotest/server/site_tests/display_Tearing/ |
| display_Tearing.py | 68 @return The frame checksum mentioned above, which is a tuple. 79 return tuple(chameleon_port.get_captured_checksums(last)[0]) 132 captured_checksums = [tuple(x) for x in captured_checksums]
|