| /third_party/typescript/tests/baselines/reference/ |
| D | assignmentRestElementWithErrorSourceType.js | 2 var tuple: [string, number]; variable 6 var tuple; variable
|
| D | for-of36.js | 2 var tuple: [string, boolean] = ["", true]; variable 8 var tuple = ["", true]; variable
|
| D | ES5For-ofTypeCheck3.js | 2 var tuple: [string, number] = ["", 0]; variable 6 var tuple = ["", 0]; variable
|
| D | restElementWithAssignmentPattern3.js | 3 var tuple: [string, number] = ["", 1]; variable 9 var tuple = ["", 1]; variable
|
| D | restElementWithAssignmentPattern4.js | 3 var tuple: [string, number] = ["", 1]; variable 9 var tuple = ["", 1]; variable
|
| D | ES5For-of30.js | 3 var tuple: [number, string] = [2, "3"]; variable 12 var tuple = [2, "3"]; variable
|
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
| D | DataDrivenNumberFormatTestUtility.java | 52 public String format(DataDrivenNumberFormatTestData tuple) { in format() 63 public String toPattern(DataDrivenNumberFormatTestData tuple) { in toPattern() 74 public String parse(DataDrivenNumberFormatTestData tuple) { in parse() 85 public String parseCurrency(DataDrivenNumberFormatTestData tuple) { in parseCurrency() 96 public String select(DataDrivenNumberFormatTestData tuple) { in select() 113 private DataDrivenNumberFormatTestData tuple = new DataDrivenNumberFormatTestData(); field in DataDrivenNumberFormatTestUtility 372 private String isPass(DataDrivenNumberFormatTestData tuple) { in isPass()
|
| /third_party/skia/m133/third_party/externals/icu/source/test/intltest/ |
| D | numfmtdatadriventest.cpp | 69 static void adjustDecimalFormat(const NumberFormatTestTuple& tuple, DecimalFormat& fmt, in adjustDecimalFormat() 217 static DecimalFormat* newDecimalFormat(const NumberFormatTestTuple& tuple, UErrorCode& status) { in newDecimalFormat() 227 UBool NumberFormatDataDrivenTest::isFormatPass(const NumberFormatTestTuple& tuple, in isFormatPass() 291 UBool NumberFormatDataDrivenTest::isToPatternPass(const NumberFormatTestTuple& tuple, in isToPatternPass() 324 UBool NumberFormatDataDrivenTest::isParsePass(const NumberFormatTestTuple& tuple, in isParsePass() 399 UBool NumberFormatDataDrivenTest::isParseCurrencyPass(const NumberFormatTestTuple& tuple, in isParseCurrencyPass() 458 NumberFormatTestTuple tuple; in TestNumberFormatTestTuple() local
|
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
| D | DataDrivenNumberFormatTestUtility.java | 49 public String format(DataDrivenNumberFormatTestData tuple) { in format() 60 public String toPattern(DataDrivenNumberFormatTestData tuple) { in toPattern() 71 public String parse(DataDrivenNumberFormatTestData tuple) { in parse() 82 public String parseCurrency(DataDrivenNumberFormatTestData tuple) { in parseCurrency() 93 public String select(DataDrivenNumberFormatTestData tuple) { in select() 110 private DataDrivenNumberFormatTestData tuple = new DataDrivenNumberFormatTestData(); field in DataDrivenNumberFormatTestUtility 369 private String isPass(DataDrivenNumberFormatTestData tuple) { in isPass()
|
| /third_party/icu/icu4c/source/test/intltest/ |
| D | numfmtdatadriventest.cpp | 69 static void adjustDecimalFormat(const NumberFormatTestTuple& tuple, DecimalFormat& fmt, in adjustDecimalFormat() 217 static DecimalFormat* newDecimalFormat(const NumberFormatTestTuple& tuple, UErrorCode& status) { in newDecimalFormat() 227 UBool NumberFormatDataDrivenTest::isFormatPass(const NumberFormatTestTuple& tuple, in isFormatPass() 291 UBool NumberFormatDataDrivenTest::isToPatternPass(const NumberFormatTestTuple& tuple, in isToPatternPass() 324 UBool NumberFormatDataDrivenTest::isParsePass(const NumberFormatTestTuple& tuple, in isParsePass() 399 UBool NumberFormatDataDrivenTest::isParseCurrencyPass(const NumberFormatTestTuple& tuple, in isParseCurrencyPass() 458 NumberFormatTestTuple tuple; in TestNumberFormatTestTuple() local
|
| /third_party/mindspore/mindspore-src/source/tests/ut/python/parallel/utils/ |
| D | utils.py | 70 def check_parameter_layout(self, param_name: str, layout: [tuple, list]) -> bool: 79 def check_parameter_shape(self, param_name: str, shape: [tuple, list]) -> bool: 101 def check_node_inputs(self, node_name: str, expect_inputs: [tuple, list], graph_id=0) -> bool: 120 …def check_node_inputs_fuzzy_match(self, node_name: str, expect_inputs: [tuple, list], graph_id=0) … 148 … def check_node_inputs_has(self, node_name: str, expect_inputs: [tuple, list], graph_id=0) -> bool:
|
| /third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/hypercomplex/hypercomplex/ |
| D | _hc_dense_impl.py | 63 weight_shape: tuple, 103 weight_shape: tuple,
|
| D | _hc_conv_impl.py | 67 weight_shape: tuple, 117 weight_shape: tuple,
|
| /third_party/python/Include/cpython/ |
| D | tupleobject.h | 23 PyTupleObject *tuple = _PyTuple_CAST(op); in PyTuple_GET_SIZE() local 35 PyTupleObject *tuple = _PyTuple_CAST(op); in PyTuple_SET_ITEM() local
|
| /third_party/mindspore/mindspore-src/source/mindspore/lite/tools/converter/parser/pytorch/ |
| D | torch_graph_transform.cc | 32 … [&flattenTuple](Node *tuple, std::vector<Node *> &tuples, std::vector<Value *> &values) -> void { in OutputsUnpack() 55 for (auto tuple : tuples) { in OutputsUnpack() local 150 auto tuple = input_value->type()->cast<at::TupleType>(); in FlattenInputsTuple() local
|
| /third_party/rust/rust/tests/ui/transmutability/structs/repr/ |
| D | should_require_well_defined_layout.rs | 32 fn tuple() { in should_reject_repr_rust() function 72 fn tuple() { in should_accept_repr_C() function
|
| /third_party/rust/rust/tests/ui/tuple/ |
| D | index-float.rs | 4 let tuple = (((),),); in main() localVariable
|
| D | tuple-index-out-of-bounds.rs | 9 let tuple = (0, 0); in main() localVariable
|
| /third_party/typescript/tests/cases/compiler/ |
| D | assignmentRestElementWithErrorSourceType.ts | 1 var tuple: [string, number]; variable
|
| /third_party/rust/rust/tests/mir-opt/building/custom/ |
| D | composite_return.rs | 8 fn tuple() -> (i32, bool) { in tuple() function
|
| /third_party/mindspore/mindspore-src/source/tests/ut/cpp/tbe/ |
| D | tbe_json_creator_test.cc | 58 auto tuple = ret->input(1); in TEST_F() local 104 auto tuple = ret->input(1); in TEST_F() local 156 auto tuple = ret->input(1); in TEST_F() local 211 auto tuple = ret->input(1); in TEST_F() local 255 auto tuple = ret->input(1); in TEST_F() local 330 auto tuple = ret->input(1); in TEST_F() local
|
| /third_party/typescript/tests/cases/conformance/es6/for-ofStatements/ |
| D | for-of36.ts | 2 var tuple: [string, boolean] = ["", true]; variable
|
| /third_party/typescript/tests/cases/conformance/statements/for-ofStatements/ |
| D | ES5For-ofTypeCheck3.ts | 2 var tuple: [string, number] = ["", 0]; variable
|
| /third_party/mesa3d/src/panfrost/compiler/bifrost/ |
| D | bi_schedule.c | 333 struct bi_tuple_state *tuple) in bi_lower_cubeface() 356 struct bi_tuple_state *tuple) in bi_lower_atom_c() 377 struct bi_tuple_state *tuple) in bi_lower_atom_c1() 398 struct bi_tuple_state *tuple) in bi_lower_seg_add() 418 struct bi_tuple_state *tuple) in bi_lower_dtsel() 801 bi_update_fau(struct bi_clause_state *clause, struct bi_tuple_state *tuple, in bi_update_fau() 1051 struct bi_tuple_state *tuple, uint64_t live_after_temp, in bi_instr_schedulable() 1169 bi_instr_cost(bi_instr *instr, struct bi_tuple_state *tuple) in bi_instr_cost() 1194 struct bi_tuple_state *tuple, uint64_t live_after_temp, in bi_choose_index() 1223 bi_pop_instr(struct bi_clause_state *clause, struct bi_tuple_state *tuple, in bi_pop_instr() [all …]
|
| /third_party/typescript/tests/cases/conformance/es6/destructuring/ |
| D | restElementWithAssignmentPattern3.ts | 2 var tuple: [string, number] = ["", 1]; variable
|