/tools/test/connectivity/acts/framework/acts/controllers/buds_lib/dev_utils/proto/gen/google/protobuf/ |
D | descriptor_pb2.py | 227 number=1, type=11, cpp_type=10, label=3, 257 number=1, type=9, cpp_type=9, label=1, 264 number=2, type=9, cpp_type=9, label=1, 271 number=3, type=9, cpp_type=9, label=3, 278 number=10, type=5, cpp_type=1, label=3, 285 number=11, type=5, cpp_type=1, label=3, 292 number=4, type=11, cpp_type=10, label=3, 299 number=5, type=11, cpp_type=10, label=3, 306 number=6, type=11, cpp_type=10, label=3, 313 number=7, type=11, cpp_type=10, label=3, [all …]
|
/tools/metalava/metalava/src/main/java/com/android/tools/metalava/ |
D | NullabilityAnnotationsValidator.kt | 57 val label: String, in <lambda>() constant in com.android.tools.metalava.NullabilityAnnotationsValidator.Error 61 return "ERROR: $method, $label, $type" in <lambda>() 71 val label: String, in <lambda>() constant in com.android.tools.metalava.NullabilityAnnotationsValidator.Warning 75 return "WARNING: $method, $label, $type" in <lambda>() 137 private fun checkItem(method: MethodItem, label: String, type: TypeItem?, item: Item) { in <lambda>() 139 throw MetalavaCliException("Missing type on $method item $label") in <lambda>() 144 errors.add(Error(method, label, ErrorType.MULTIPLE)) in <lambda>() 147 checkItemNullability(type, nullabilityAnnotations.firstOrNull(), method, label) in <lambda>() 163 label: String in <lambda>() 169 errors.add(Error(method, label, ErrorType.ON_PRIMITIVE)) in <lambda>() [all …]
|
/tools/dexter/slicer/ |
D | bytecode_encoder.cc | 213 auto label = bytecode->CastOperand<CodeLocation>(0)->label; in Visit() local 215 if (label->offset != kInvalidOffset) { in Visit() 216 assert(label->offset <= offset_); in Visit() 217 A = label->offset - offset_; in Visit() 221 fixups_.push_back(LabelFixup(offset_, label, true)); in Visit() 230 auto label = bytecode->CastOperand<CodeLocation>(0)->label; in Visit() local 232 if (label->offset != kInvalidOffset) { in Visit() 234 assert(label->offset <= offset_); in Visit() 235 A = label->offset - offset_; in Visit() 237 fixups_.push_back(LabelFixup(offset_, label, false)); in Visit() [all …]
|
D | control_flow_graph.cc | 77 bool BasicBlocksVisitor::Visit(Label* label) { in Visit() argument 80 StartBlock(label); in Visit() 83 EndBlock(label->prev); in Visit() 84 StartBlock(label); in Visit()
|
D | code_ir.cc | 84 handler.label = GetLabel(address); in DisassembleTryBlocks() 345 for (auto& label : labels_) { in Disassemble() local 346 label.second->id = nextLabelId++; in Disassemble() 347 tmp_labels.push_back(label.second); in Disassemble() 484 auto label = GetLabel(offset + dex::s4(dex_instr.vA)); in DecodeBytecode() local 485 instr->operands.push_back(Alloc<CodeLocation>(label)); in DecodeBytecode() 493 auto label = GetLabel(targetOffset); in DecodeBytecode() local 494 instr->operands.push_back(Alloc<CodeLocation>(label)); in DecodeBytecode() 497 label->aligned = true; in DecodeBytecode() 502 label->aligned = true; in DecodeBytecode() [all …]
|
D | tryblocks_encoder.cc | 45 SLICER_CHECK_NE(handler.label->offset, kInvalidOffset); in Visit() 46 handlers_.PushULeb128(handler.label->offset); in Visit()
|
/tools/dexter/slicer/export/slicer/ |
D | bytecode_encoder.h | 46 virtual bool Visit(Label* label) override; 62 const Label* label; // target label member 65 LabelFixup(dex::u4 offset, Label* label, bool short_fixup) : in LabelFixup() 66 offset(offset), label(label), short_fixup(short_fixup) {} in LabelFixup()
|
D | code_ir.h | 89 virtual bool Visit(Label* label) { return false; } in Visit() argument 245 Label* label; member 247 explicit CodeLocation(Label* label) : label(label) {} in CodeLocation() 386 Label* label = nullptr; member
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
D | SuperFloppyFormatter.java | 87 private String label; field in SuperFloppyFormatter 152 public SuperFloppyFormatter setVolumeLabel(String label) { in setVolumeLabel() argument 153 this.label = label; in setVolumeLabel() 164 return label; in getVolumeLabel() 208 f32bs.setVolumeLabel(label); in format() 223 if (label != null) f16bs.setVolumeLabel(label); in format() 261 if (label != null) { in format() 262 fs.setVolumeLabel(label); in format()
|
D | AbstractDirectory.java | 357 public void setLabel(String label) throws IllegalArgumentException, in setLabel() argument 362 if (label.length() > MAX_LABEL_LENGTH) throw new in setLabel() 366 if (label == null) { in setLabel() 370 ShortName.checkValidChars(label.toCharArray()); in setLabel() 371 this.volumeLabel = label; in setLabel() 374 if (label != null) { in setLabel() 376 ShortName.checkValidChars(label.toCharArray()); in setLabel() 377 this.volumeLabel = label; in setLabel()
|
D | FatType.java | 116 private final String label; field in FatType 120 long bitMask, float entrySize, String label) { in FatType() argument 127 this.label = label; in FatType() 152 return this.label; in getLabel()
|
D | Fat32BootSector.java | 118 public void setVolumeLabel(String label) { in setVolumeLabel() argument 121 (label == null) ? 0 : in setVolumeLabel() 122 (label.length() > i) ? (byte) label.charAt(i) : 0x20; in setVolumeLabel()
|
D | Fat16BootSector.java | 125 public void setVolumeLabel(String label) throws IllegalArgumentException { in setVolumeLabel() argument 126 if (label.length() > MAX_VOLUME_LABEL_LENGTH) in setVolumeLabel() 131 i < label.length() ? label.charAt(i) : 0); in setVolumeLabel()
|
D | FatFileSystem.java | 167 public void setVolumeLabel(String label) in setVolumeLabel() argument 173 rootDirStore.setLabel(label); in setVolumeLabel() 176 ((Fat16BootSector)bs).setVolumeLabel(label); in setVolumeLabel()
|
/tools/security/remote_provisioning/hwtrust/src/cbor/ |
D | dice.rs | 29 for (label, value) in entries.iter_mut() { in cose_key_from_cbor_value() 30 let label = Label::from_cbor_value(label.clone())?; in cose_key_from_cbor_value() localVariable 31 if label == Label::Int(iana::KeyParameter::KeyOps.to_i64()) && value.is_integer() { in cose_key_from_cbor_value()
|
D | publickey.rs | 160 fn get_label_value(key: &CoseKey, label: Label) -> Result<&Value> { in get_label_value() 164 .find(|(k, _)| k == &label) in get_label_value() 165 .ok_or_else(|| anyhow!("Label {:?} not found", label))? in get_label_value() 171 fn get_label_value_as_bytes(key: &CoseKey, label: Label) -> Result<&[u8]> { in get_label_value_as_bytes() 172 get_label_value(key, label)? in get_label_value_as_bytes()
|
/tools/tradefederation/contrib/tests/src/com/android/build/tests/ |
D | ImageStatsTest.java | 148 final String label = "foobar"; in testGetAggregationLabel_regular() local 151 label, in testGetAggregationLabel_regular() 152 mImageStats.getAggregationLabel(pattern.matcher(fileName), label)); in testGetAggregationLabel_regular() 160 final String label = "folder-\\1-ext-\\2"; in testGetAggregationLabel_capturingGroups() local 167 mImageStats.getAggregationLabel(m, label)); in testGetAggregationLabel_capturingGroups() 178 final String label = "ext-\\2"; in testGetAggregationLabel_capturingGroups_partialBackReference() local 185 mImageStats.getAggregationLabel(m, label)); in testGetAggregationLabel_capturingGroups_partialBackReference()
|
/tools/tradefederation/contrib/src/com/android/build/tests/ |
D | ImageStats.java | 238 String label = rawLabel; in getAggregationLabel() local 241 if (label.indexOf(marker) == -1) { in getAggregationLabel() 248 label = label.replace(marker, matcher.group(i)); in getAggregationLabel() 251 if (LABEL_UNCATEGORIZED.equals(label)) { in getAggregationLabel() 257 return label; in getAggregationLabel() 284 String label = getAggregationLabel(m, pattern.getValue()); in performAggregation() local 285 Long size = result.get(label); in performAggregation() 290 result.put(label, size); in performAggregation()
|
/tools/asuite/atest/bazel/resources/rules/ |
D | tradefed_test.bzl | 51 "_tradefed_test_template": attr.label( 65 "_atest_tradefed_launcher": attr.label( 71 "_atest_helper": attr.label( 77 "_adb": attr.label( 83 "_extra_tradefed_result_reporters": attr.label( 89 "_allowlist_function_transition": attr.label( 131 "test": attr.label( 163 … "com.android.tradefed.testtype.IsolatedHostTest:java-folder:%s" % ctx.attr.jdk.label.package, 173 "test": attr.label( 178 "jdk": attr.label( [all …]
|
D | device_test.bzl | 35 script = ctx.actions.declare_file("device_test_%s.sh" % ctx.label.name) 62 "run_with": attr.label(default = "//bazel/rules:target_device"), 63 "test": attr.label( 66 "_device_test_template": attr.label(
|
/tools/test/connectivity/acts/framework/acts/controllers/sl4a_lib/ |
D | error_reporter.py | 28 def __init__(self, label): argument 29 self.label = label 34 return '[Error Report|%s] %s' % (self.label, msg), kwargs
|
/tools/dexter/dexter/ |
D | disassembler.cc | 109 printf("Label_%d", target->label->id); in Visit() 245 bool PrintCodeIrVisitor::Visit(lir::Label* label) { in Visit() argument 246 StartInstruction(label); in Visit() 247 printf("Label_%d:%s\n", label->id, (label->aligned ? " <aligned>" : "")); in Visit() 248 EndInstruction(label); in Visit() 264 handler.label->id); in Visit()
|
/tools/asuite/atest/bazel/resources/rules/device/ |
D | cuttlefish_device.bzl | 60 "build_files": attr.label( 65 "_create_script_template": attr.label( 72 "_allowlist_function_transition": attr.label( 75 "_adb": attr.label(
|
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/metric/ |
D | LoopSummary.java | 332 IInvocationContext context, MetricSummary.TimeType type, int loopIndex, String label) { in getActualMetricKey() argument 338 return String.format("{%s}:%s", deviceName, getMetricKey(type, loopIndex, label)); in getActualMetricKey() 340 return getMetricKey(type, loopIndex, label); in getActualMetricKey() 343 private static String getMetricKey(MetricSummary.TimeType type, int loopIndex, String label) { in getMetricKey() argument 344 return "run_" + loopIndex + "." + type.name().toLowerCase(Locale.US) + "_" + label; in getMetricKey()
|
/tools/tradefederation/core/javatests/com/android/tradefed/device/ |
D | MicrodroidFuncTest.java | 115 final String label = "u:object_r:system_file:s0"; in testStartAndShutdownMicrodroid() local 116 assertThat(runOnDevice(microdroid, "ls", "-Z", testLib), is(label + " " + testLib)); in testStartAndShutdownMicrodroid()
|