/external/tensorflow/tensorflow/c/eager/ |
D | c_api_experimental.cc | 102 const char* label1) { in TFE_MonitoringNewCounter1() argument 103 auto* result = new TFE_MonitoringCounter1({name, description, label1}); in TFE_MonitoringNewCounter1() 117 TFE_MonitoringCounter1* counter, const char* label1) { in TFE_MonitoringGetCellCounter1() argument 119 static_cast<void*>(counter->counter->GetCell(label1))); in TFE_MonitoringGetCellCounter1() 125 const char* label1, in TFE_MonitoringNewCounter2() argument 128 new TFE_MonitoringCounter2({name, description, label1, label2}); in TFE_MonitoringNewCounter2() 142 TFE_MonitoringCounter2* counter, const char* label1, const char* label2) { in TFE_MonitoringGetCellCounter2() argument 144 static_cast<void*>(counter->counter->GetCell(label1, label2))); in TFE_MonitoringGetCellCounter2() 181 const char* label1) { in TFE_MonitoringNewIntGauge1() argument 182 auto* result = new TFE_MonitoringIntGauge1({name, description, label1}); in TFE_MonitoringNewIntGauge1() [all …]
|
D | c_api_experimental.h | 79 const char* label1); 83 TFE_MonitoringCounter1* counter, const char* label1); 89 const char* label1, const char* label2); 93 TFE_MonitoringCounter2* counter, const char* label1, const char* label2); 122 const char* label1); 127 const char* label1); 133 const char* label1, const char* label2); 138 const char* label1, const char* label2); 160 const char* label1); 165 const char* label1); [all …]
|
/external/ow2-asm/asm/src/test/java/org/objectweb/asm/ |
D | ClassWriterComputeMaxsTest.java | 61 private final Label label1 = new Label(); field in ClassWriterComputeMaxsTest 182 .label(label1) // N8 in testVisitMaxs_ifElseInFinally() 207 .trycatch(label0, label1, label1) in testVisitMaxs_ifElseInFinally() 208 .trycatch(label5, label6, label1); in testVisitMaxs_ifElseInFinally() 261 .label(label1) // N11 in testVisitMaxs_simpleNestedFinally() 290 .trycatch(label0, label1, label1) in testVisitMaxs_simpleNestedFinally() 349 .label(label1) // N11 in testVisitMaxs_subroutineWithNoRet() 366 .trycatch(label0, label1, label1); in testVisitMaxs_subroutineWithNoRet() 404 .label(label1) // N8 in testVisitMaxs_subroutineWithNoRet2() 405 .localVariable("i", "I", null, label0, label1, 1); in testVisitMaxs_subroutineWithNoRet2() [all …]
|
/external/ow2-asm/asm-analysis/src/test/java/org/objectweb/asm/tree/analysis/ |
D | AnalyzerTest.java | 64 private final Label label1 = new Label(); field in AnalyzerTest 378 .label(label1) in testAnalyze_basicTryFinally() 397 .trycatch(label0, label1, label1) in testAnalyze_basicTryFinally() 398 .trycatch(label3, label4, label1) in testAnalyze_basicTryFinally() 440 .label(label1) in testAnalyze_ifElseInFinally() 465 .trycatch(label0, label1, label1) in testAnalyze_ifElseInFinally() 466 .trycatch(label5, label6, label1) in testAnalyze_ifElseInFinally() 509 .label(label1) in testAnalyze_simpleNestedFinally() 538 .trycatch(label0, label1, label1) in testAnalyze_simpleNestedFinally() 611 .label(label1) in testAnalyze_subroutineWithNoRet() [all …]
|
/external/ow2-asm/asm-commons/src/test/java/org/objectweb/asm/commons/ |
D | AdviceAdapterTest.java | 103 Label label1 = new Label(); in testAllMethods_constructorWithTwoSuperInitInTwoBranches() local 114 .go(label1) in testAllMethods_constructorWithTwoSuperInitInTwoBranches() 119 .label(label1) in testAllMethods_constructorWithTwoSuperInitInTwoBranches() 143 Label label1 = new Label(); in testAllMethods_constructorWithTwoSuperInitInTwoSwitchBranches() local 151 .switchto(label0, label1, useTableSwitch) in testAllMethods_constructorWithTwoSuperInitInTwoSwitchBranches() 157 .label(label1) in testAllMethods_constructorWithTwoSuperInitInTwoSwitchBranches() 185 Label label1 = new Label(); in testAllMethods_constructorWithSuperInitsInNormalAndHandlerBranches() local 190 .trycatch(label0, label1, label2) in testAllMethods_constructorWithSuperInitsInNormalAndHandlerBranches() 193 .label(label1) in testAllMethods_constructorWithSuperInitsInNormalAndHandlerBranches() 223 Label label1 = new Label(); in testAllMethods_constructorWithUninitThisInTwoBranches() local [all …]
|
D | JsrInlinerAdapterTest.java | 66 private final Label label1 = new Label(); field in JsrInlinerAdapterTest 142 .label(label1) // Exception handler. in testInlineJsr_basicTryFinally() 155 .trycatch(label0, label1, label1) in testInlineJsr_basicTryFinally() 156 .trycatch(label3, label4, label1) in testInlineJsr_basicTryFinally() 227 .label(label1) // Exception handler. in testInlineJsr_ifElseInFinally() 246 .trycatch(label0, label1, label1) in testInlineJsr_ifElseInFinally() 247 .trycatch(label5, label6, label1) in testInlineJsr_ifElseInFinally() 334 .label(label1) // Exception handler. in testInlineJsr_lookupOrTableSwitchInFinally() 354 .trycatch(label0, label1, label1) in testInlineJsr_lookupOrTableSwitchInFinally() 355 .trycatch(label6, label7, label1) in testInlineJsr_lookupOrTableSwitchInFinally() [all …]
|
D | MethodNodeBuilder.java | 201 MethodNodeBuilder switchto(final Label label0, final Label label1, final boolean useTableSwitch) { in switchto() argument 203 methodNode.visitTableSwitchInsn(0, 1, label0, new Label[] {label0, label1}); in switchto() 205 methodNode.visitLookupSwitchInsn(label0, new int[] {1}, new Label[] {label1}); in switchto()
|
/external/autotest/frontend/afe/ |
D | rpc_interface_unittest.py | 116 def _testShardHeartbeatLabelRemovalRaceHelper(self, shard1, host1, label1): argument 119 host2.labels.add(label1) 127 shard1.hostname, label1.name)): 137 def _testShardRetrieveJobsHelper(self, shard1, host1, label1, shard2, argument 144 leased_host.labels.add(label1) 146 job1 = self._createJobForLabel(label1) 150 job_completed = self._createJobForLabel(label1) 155 job_active = self._createJobForLabel(label1) 168 host3.labels.add(label1) 174 def _testResendJobsAfterFailedHeartbeatHelper(self, shard1, host1, label1): argument [all …]
|
/external/clang/test/CXX/stmt.stmt/stmt.label/ |
D | p1.cpp | 6 goto label1; in f() 8 label1: // expected-note{{previous definition is here}} in f() 12 label1: // expected-error{{redefinition of label 'label1'}} in f()
|
/external/llvm/test/FileCheck/ |
D | check-label.txt | 8 label1: 20 ; CHECKOK-LABEL: {{^}}label1: 36 ; CHECKFAIL-LABEL: {{^}}label1:
|
/external/llvm/test/Bitcode/ |
D | terminatorInstructions.3.2.ll | 64 ; CHECK-NEXT: i32 1, label %label1 65 i32 1, label %label1 69 label1:
|
/external/tensorflow/tensorflow/python/ |
D | tfe_wrapper.cc | 1293 [](const char* name, const char* description, const char* label1) { in PYBIND11_MODULE() argument 1297 TFE_MonitoringNewCounter1(name, status.get(), description, label1); in PYBIND11_MODULE() 1308 [](const char* name, const char* description, const char* label1, in PYBIND11_MODULE() 1313 label1, label2); in PYBIND11_MODULE() 1343 [](const char* name, const char* description, const char* label1) { in PYBIND11_MODULE() argument 1347 TFE_MonitoringNewIntGauge1(name, status.get(), description, label1); in PYBIND11_MODULE() 1358 [](const char* name, const char* description, const char* label1, in PYBIND11_MODULE() 1363 description, label1, label2); in PYBIND11_MODULE() 1393 [](const char* name, const char* description, const char* label1) { in PYBIND11_MODULE() argument 1397 description, label1); in PYBIND11_MODULE() [all …]
|
/external/google-java-format/idea_plugin/src/com/google/googlejavaformat/intellij/ |
D | GoogleJavaFormatConfigurable.java | 166 final JLabel label1 = new JLabel(); in $$$setupUI$$$() local 167 label1.setText("Code style"); in $$$setupUI$$$() 169 label1, in $$$setupUI$$$()
|
/external/ktfmt/ktfmt_idea_plugin/src/main/java/com/facebook/ktfmt/intellij/ |
D | KtfmtConfigurable.java | 167 final JLabel label1 = new JLabel(); in $$$setupUI$$$() local 168 label1.setText("Code style"); in $$$setupUI$$$() 170 label1, in $$$setupUI$$$()
|
/external/clang/test/OpenMP/ |
D | taskwait_messages.cpp | 51 label1 : { in tmain() 105 label1 : { in main()
|
D | barrier_messages.cpp | 51 label1 : { in tmain() 105 label1 : { in main()
|
D | taskyield_messages.cpp | 51 label1 : { in tmain() 105 label1 : { in main()
|
D | flush_messages.cpp | 55 label1 : { in tmain() 119 label1 : { in main()
|
/external/llvm/test/MC/Mips/ |
D | hilo-addressing.s | 20 # Check that assembler can handle %hi(label1 - label2) and %lo(label1 - label2)
|
/external/clang/test/Analysis/ |
D | uninit-sometimes.cpp | 81 label1: in test_do_while_true() 87 goto label1; in test_do_while_true()
|
/external/llvm/test/CodeGen/Hexagon/ |
D | block-addr.ll | 17 i32 1, label %label1 30 label1:
|
/external/ow2-asm/asm-util/src/test/java/org/objectweb/asm/util/ |
D | CheckMethodAdapterTest.java | 825 Label label1 = new Label(); in testVisitTryCatchBlock_afterStartLabel() local 830 () -> checkMethodAdapter.visitTryCatchBlock(label0, label1, label1, null); in testVisitTryCatchBlock_afterStartLabel() 839 Label label1 = new Label(); in testVisitTryCatchBlock_afterEndLabel() local 844 () -> checkMethodAdapter.visitTryCatchBlock(label1, label0, label1, null); in testVisitTryCatchBlock_afterEndLabel() 853 Label label1 = new Label(); in testVisitTryCatchBlock_afterHandlerLabel() local 858 () -> checkMethodAdapter.visitTryCatchBlock(label1, label1, label0, null); in testVisitTryCatchBlock_afterHandlerLabel()
|
/external/skia/tests/ |
D | RasterPipelineBuilderTest.cpp | 467 int label1 = builder.nextLabelID(); in DEF_TEST() local 477 builder.label(label1); in DEF_TEST() 485 builder.branch_if_any_active_lanes(label1); in DEF_TEST() 486 builder.branch_if_any_active_lanes(label1); in DEF_TEST() 490 builder.branch_if_no_active_lanes_on_stack_top_equal(1, label1); in DEF_TEST()
|
D | CompressedBackendAllocationTest.cpp | 55 const char* label0, const char* label1, const char* label2) { in check_solid_pixmap() argument 59 [reporter, label0, label1, label2](int x, int y, const float diffs[4]) { in check_solid_pixmap() 62 label0, label1, label2, x, y, in check_solid_pixmap()
|
/external/tensorflow/tensorflow/lite/tools/evaluation/testdata/ |
D | labels.txt | 1 label1
|