Home
last modified time | relevance | path

Searched refs:targetCount (Results 1 – 8 of 8) sorted by relevance

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
DSparseSwitchDataPseudoInstruction.java82 int targetCount = NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2); in SparseSwitchDataPseudoInstruction() local
83 keys = new int[targetCount]; in SparseSwitchDataPseudoInstruction()
84 targets = new int[targetCount]; in SparseSwitchDataPseudoInstruction()
86 for (int i=0; i<targetCount; i++) { in SparseSwitchDataPseudoInstruction()
88 targets[i] = NumberUtils.decodeInt(buffer, bufferIndex + 4 + targetCount*4 + i*4); in SparseSwitchDataPseudoInstruction()
148 final int targetCount = getTargetCount(); in iterateKeysAndTargets()
154 return i<targetCount; in iterateKeysAndTargets()
DPackedSwitchDataPseudoInstruction.java74 int targetCount = NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2); in PackedSwitchDataPseudoInstruction() local
76 this.targets = new int[targetCount]; in PackedSwitchDataPseudoInstruction()
78 for (int i = 0; i<targetCount; i++) { in PackedSwitchDataPseudoInstruction()
128 final int targetCount = getTargetCount(); in iterateKeysAndTargets()
135 return i<targetCount; in iterateKeysAndTargets()
/external/skia/src/animator/
DSkHitTest.cpp32 int targetCount = targets.count(); in draw() local
40 for (int tIndex = 0; tIndex < targetCount; tIndex++) { in draw()
/external/skia/legacy/src/animator/
DSkHitTest.cpp32 int targetCount = targets.count(); in draw() local
40 for (int tIndex = 0; tIndex < targetCount; tIndex++) { in draw()
/external/icu4c/i18n/
Danytrans.cpp346 int32_t targetCount = Transliterator::_countAvailableTargets(source); in registerIDs() local
347 for (int32_t t=0; t<targetCount; ++t) { in registerIDs()
/external/smali/smali/src/main/antlr3/
DsmaliParser.g1203 @init {boolean needsNop = false; int targetCount = 0;}
1206 targetCount = 0;
1217 (switch_target += label_ref_or_offset {$size+=4; targetCount++;})*
1226 I_PACKED_SWITCH_TARGET_COUNT[$start, Integer.toString(targetCount)] $switch_target*)
1232 I_PACKED_SWITCH_TARGET_COUNT[$start, Integer.toString(targetCount)] $switch_target*)
1236 @init {boolean needsNop = false; int targetCount = 0;}
1239 targetCount = 0;
1248 (fixed_32bit_literal ARROW switch_target += label_ref_or_offset {$size += 8; targetCount++;})*
1256 I_SPARSE_SWITCH_TARGET_COUNT[$start, Integer.toString(targetCount)]
1262 I_SPARSE_SWITCH_TARGET_COUNT[$start, Integer.toString(targetCount)]
DsmaliTreeWalker.g375 packed_switch_target_count returns[int targetCount]
376 …: I_PACKED_SWITCH_TARGET_COUNT {$targetCount = Integer.parseInt($I_PACKED_SWITCH_TARGET_COUNT.text…
383 int targetCount = $packed_switch_target_count.targetCount;
384 $targets = new int[targetCount];
394 sparse_switch_target_count returns[int targetCount]
395 …: I_SPARSE_SWITCH_TARGET_COUNT {$targetCount = Integer.parseInt($I_SPARSE_SWITCH_TARGET_COUNT.text…
397 sparse_switch_keys[int targetCount] returns[int[\] keys]
399 $keys = new int[$targetCount];
410 sparse_switch_targets[int baseAddress, int targetCount] returns[int[\] targets]
412 $targets = new int[$targetCount];
[all …]
/external/emma/core/java12/com/vladium/emma/instr/
DInstrVisitor.java1045 for (int t = 0, targetCount = targets.length; t < targetCount; ++ t) in visit()