/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/ |
D | CodePrinter.kt | 97 var first = true in appendSourceExpression() variable 101 if (first) { in appendSourceExpression() 102 first = false in appendSourceExpression() 112 first = true in appendSourceExpression() 160 var first = true in appendExpression() variable 164 if (first) { in appendExpression() 165 first = false in appendExpression() 175 first = true in appendExpression() 280 var first = true in appendExpression() variable 282 if (first) { in appendExpression() [all …]
|
D | PsiTypeItem.kt | 544 var first = true in typeParameterList() variable 546 if (!first) { in typeParameterList() 549 first = false in typeParameterList() 564 var first = true in typeParameterList() variable 566 if (!first) { in typeParameterList() 569 first = false in typeParameterList() 588 var first = true in typeParameterList() variable 590 if (!first) { in typeParameterList() 593 first = false in typeParameterList() 631 var first = true in typeParameterList() variable [all …]
|
D | UAnnotationItem.kt | 160 …if (attributes.size == 1 && (attributes[0].first == null || attributes[0].first == SdkConstants.AT… in <lambda>() 164 var first = true in <lambda>() variable 166 if (first) { in <lambda>() 167 first = false in <lambda>() 171 sb.append(attribute.first ?: SdkConstants.ATTR_VALUE) in <lambda>() 237 var first = true in <lambda>() variable 239 if (first) { in <lambda>() 240 first = false in <lambda>()
|
D | PsiAnnotationItem.kt | 175 … if (attributes.size == 1 && (attributes[0].first == null || attributes[0].first == ATTR_VALUE)) { in <lambda>() 179 var first = true in <lambda>() variable 181 if (first) { in <lambda>() 182 first = false in <lambda>() 186 sb.append(attribute.first ?: ATTR_VALUE) in <lambda>() 252 var first = true in <lambda>() variable 254 if (first) { in <lambda>() 255 first = false in <lambda>()
|
D | PsiItem.kt | 253 val first = element.sourcePsiElement?.firstChild in javadoc() constant 254 if (first is KDoc) { in javadoc() 255 return first.text in javadoc()
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/wifi_retail_ap/ |
D | netgear_r7500.py | 154 wireless_button = browser.find_by_id('wireless').first 161 config_item = iframe.find_by_name(value).first 165 config_item = iframe.find_by_name(value).first 170 config_item = iframe.find_by_name(value).first 181 config_item = iframe.find_by_name(value).first 199 wireless_button = browser.find_by_id('wireless').first 206 self.config_page_fields['region']).first 211 config_item = iframe.find_by_name(value).first 221 config_item = iframe.find_by_name(value).first 228 config_item = iframe.find_by_name(value).first [all …]
|
D | netgear_rax200.py | 233 config_item.first.checked) 239 self.ap_settings[key] = int(config_item.first.checked) 243 config_item.first.value] 247 config_item.first.value] 250 config_item.first.value] 258 key[1]] = config_item.first.value 277 self.config_page_fields['region']).first 283 config_item = browser.find_by_name(value).first 289 config_item = browser.find_by_name(value).first 293 config_item = browser.find_by_name(value).first [all …]
|
D | netgear_r7000.py | 151 config_item.first.checked) 158 config_item.first.value] 162 config_item.first.value] 165 config_item.first.value] 173 key[1]] = config_item.first.value 191 self.config_page_fields['region']).first 195 config_item = browser.find_by_name(value).first 199 config_item = browser.find_by_name(value).first 214 'password')]).first 224 config_item = browser.find_by_name(value).first [all …]
|
D | netgear_rax120.py | 209 wireless_button = browser.find_by_id('wireless').first 215 config_item = iframe.find_by_name('enable_ax').first 220 config_item = iframe.find_by_name(value).first 224 config_item = iframe.find_by_name(value).first 229 config_item = iframe.find_by_name(value).first 240 config_item = iframe.find_by_name(value).first 256 wireless_button = browser.find_by_id('wireless').first 266 iframe.find_by_name('enable_ax').first.checked) 273 self.config_page_fields['region']).first 278 config_item = iframe.find_by_name(value).first [all …]
|
/tools/dexter/dexter/ |
D | dissasembler.cc | 30 bool first = true; in MethodDeclaration() local 32 ss << (first ? "" : ", ") << type->Decl(); in MethodDeclaration() 33 first = false; in MethodDeclaration() 46 if (instr == current_block.region.first) { in StartInstruction() 65 bool first = true; in Visit() local 67 printf(first ? " " : ", "); in Visit() 69 first = false; in Visit() 144 bool first = true; in Visit() local 147 printf("%sv%d", (first ? "" : ","), reg); in Visit() 148 first = false; in Visit() [all …]
|
D | experimental.cc | 399 block.region.first->offset, in CodeCoverage() 404 for (auto instr = block.region.first; instr != nullptr; instr = instr->next) { in CodeCoverage() 465 printf("%6d [ %3d ] ", kv.second, kv.first); in PrintHistogram() 554 printf(" %s\n", e.first.c_str()); in ListExperiments()
|
/tools/asuite/atest/ |
D | unittest_utils.py | 24 def assert_strict_equal(test_class, first, second): argument 31 if isinstance(first, list) and isinstance(second, list): 32 first.sort() 34 test_class.assertEqual(first, second) 36 if not (isinstance(first, str) and 38 test_class.assertIsInstance(first, type(second)) 39 test_class.assertIsInstance(second, type(first)) 41 if isinstance(first, tuple) and hasattr(first, '_fields'): 43 for f in first._fields: 44 assert_strict_equal(test_class, getattr(first, f),
|
/tools/asuite/atest-py2/ |
D | unittest_utils.py | 24 def assert_strict_equal(test_class, first, second): argument 30 test_class.assertEqual(first, second) 32 if not (isinstance(first, basestring) and 34 test_class.assertIsInstance(first, type(second)) 35 test_class.assertIsInstance(second, type(first)) 37 if isinstance(first, tuple) and hasattr(first, '_fields'): 39 for f in first._fields: 40 assert_strict_equal(test_class, getattr(first, f),
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/ |
D | TextTypeItem.kt | 213 val first = typeString[0] in markRecent() constant 214 if (!Character.isUpperCase((first)) && first != '_') { in markRecent() 269 return bounds.first().qualifiedName() + s.substring(end) in markRecent() 355 val first = if (space != -1) { in markRecent() constant 364 if (first != -1) { in markRecent() 365 first in markRecent()
|
/tools/apksig/src/main/java/com/android/apksig/internal/util/ |
D | Pair.java | 26 private Pair(A first, B second) { in Pair() argument 27 mFirst = first; in Pair() 31 public static <A, B> Pair<A, B> of(A first, B second) { in of() argument 32 return new Pair<A, B>(first, second); in of()
|
/tools/test/connectivity/acts_tests/tests/google/bt/pts/instructions/ |
D | GAP_PTS_INSTRUCTIONS | 189 Note: Run the test a first time and it will fail. Change the address to 207 Note: Run the test a first time and it will fail. Change the address to 250 Note: Run the test a first time and it will fail. Change the address to 267 Note: Run the test a first time and it will fail. Change the address to 296 Note: Run the test a first time and it will fail. Change the address to 317 Note: Run the test a first time and it will fail. Change the address to 347 Note: Run the test a first time and it will fail. Change the address to 548 Note: Run the first 4 commands before executing the testcase on PTS Side 562 Note: Run the first 4 commands before executing the testcase on PTS Side
|
/tools/test/connectivity/acts/framework/acts/ |
D | asserts.py | 32 def assert_almost_equal(first, argument 53 first, second, msg=msg, delta=delta) 56 first, second, places=places, msg=msg)
|
/tools/trebuchet/core/common/src/test/kotlin/trebuchet/model/ |
D | SliceGroupBuilderTest.kt | 37 assertEquals(slice, group.slices.first()) in testSimpleBuild() 64 assertEquals(slice, group.slices.first()) in testNestedBuild() 66 assertEquals(child, slice.children.first()) in testNestedBuild()
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/bt/ |
D | GattConnectedBaseTest.py | 210 def assertEqual(self, first, second, msg=None): argument 211 if not first == second: 213 raise AssertionError('%r != %r' % (first, second)) 215 raise AssertionError(msg + ' %r != %r' % (first, second))
|
/tools/trebuchet/trebuchet/analyzer/src/ |
D | Analyzer.kt | 39 val rtThread = process.threads.first { it.name == "RenderThread" } in measureStartup() 40 val start = uiThread.slices.first { in measureStartup() 43 val end = rtThread.slices.first { in measureStartup()
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/ |
D | Item.kt | 334 var first = true in appendMethodSignature() variable 336 if (first) { in appendMethodSignature() 337 first = false in appendMethodSignature()
|
/tools/trebuchet/trebuchet/startup-common/src/ |
D | StartupCommon.kt | 117 map { it.first().startTime }. in findProcess() 148 newProc.threads.first().schedSlices.forEach schedLoop@ { schedSlice -> in Model() 168 newProc.threads.first().traverseSlices(object : SliceTraverser { in Model()
|
/tools/asuite/atest-py2/docs/ |
D | developer_workflow.md | 16 this division, your first step should be to identify the code 73 first add atest to your PYTHONPATH via entering in your terminal: 105 to build TradeFed first. See the 109 first run the test file your code change affected individually. The
|
/tools/asuite/atest/docs/ |
D | developer_workflow.md | 16 this division, your first step should be to identify the code 73 first add atest to your PYTHONPATH via entering in your terminal: 105 to build TradeFed first. See the 109 first run the test file your code change affected individually. The
|
/tools/apkzlib/src/test/resources/testData/packaging/text-files/ |
D | rfc2460.txt | 325 header invokes the module to process the first extension header, or 378 The first four are specified in this document; the last two are 404 note 1: for options to be processed by the first destination 604 including the first 8 octets. 648 header in 8-octet units, not including the first 777 header in 8-octet units, not including the first 1057 | Unfragmentable | first | second | | last | 1074 | Unfragmentable |Fragment| first | 1100 The Next Header value that identifies the first header of 1106 Offset of the first ("leftmost") fragment is 0. [all …]
|