HomeSort by relevance Sort by last modified time
    Searched refs:targets (Results 1 - 25 of 282) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/dx/io/instructions/
PackedSwitchPayloadDecodedInstruction.java 32 private final int[] targets; field in class:PackedSwitchPayloadDecodedInstruction
38 int opcode, int firstKey, int[] targets) {
42 this.targets = targets;
55 return targets;
SparseSwitchPayloadDecodedInstruction.java 32 private final int[] targets; field in class:SparseSwitchPayloadDecodedInstruction
38 int opcode, int[] keys, int[] targets) {
41 if (keys.length != targets.length) {
42 throw new IllegalArgumentException("keys/targets length mismatch");
46 this.targets = targets;
59 return targets;
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
PackedSwitchPayloadDecodedInstruction.java 32 private final int[] targets; field in class:PackedSwitchPayloadDecodedInstruction
38 int opcode, int firstKey, int[] targets) {
42 this.targets = targets;
55 return targets;
SparseSwitchPayloadDecodedInstruction.java 32 private final int[] targets; field in class:SparseSwitchPayloadDecodedInstruction
38 int opcode, int[] keys, int[] targets) {
41 if (keys.length != targets.length) {
42 throw new IllegalArgumentException("keys/targets length mismatch");
46 this.targets = targets;
59 return targets;
  /libcore/luni/src/test/java/tests/targets/security/
SecureRandomTestSHA1PRNG.java 16 package tests.targets.security;
  /external/skia/legacy/src/animator/
SkHitClear.cpp 15 SK_MEMBER_ARRAY(targets, Displayable)
23 for (int tIndex = 0; tIndex < targets.count(); tIndex++) {
24 SkDisplayable* target = targets[tIndex];
SkHitClear.h 22 SkTDDisplayableArray targets; member in class:SkHitClear
SkHitTest.cpp 17 SK_MEMBER_ARRAY(targets, Displayable),
32 int targetCount = targets.count();
41 SkDisplayable* target = targets[tIndex];
59 for (int tIndex = 0; tIndex < targets.count(); tIndex++) {
60 SkDisplayable* target = targets[tIndex];
73 return getMember("targets"); // !!! cwap! need to refer to member through enum like kScope instead
  /external/skia/src/animator/
SkHitClear.cpp 15 SK_MEMBER_ARRAY(targets, Displayable)
23 for (int tIndex = 0; tIndex < targets.count(); tIndex++) {
24 SkDisplayable* target = targets[tIndex];
SkHitClear.h 22 SkTDDisplayableArray targets; member in class:SkHitClear
  /dalvik/dx/src/com/android/dx/cf/code/
SwitchList.java 32 * {@code non-null;} list of targets corresponding to the test values; there
36 private final IntList targets; field in class:SwitchList
49 this.targets = new IntList(size + 1);
57 targets.setImmutable();
88 return targets.get(n);
98 return targets.get(size);
102 * Gets the list of all targets. This includes one extra element at the
108 return targets;
134 if (targets.size() != size) {
138 targets.add(target)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
complete-ant-cmd.pl 82 # Run "ant -projecthelp" to list targets. Keep a cache of results in a
85 $cacheFile =~ s|(.*/)?(.*)|${1}.ant-targets-${2}|;
89 my %targets;
92 $targets{$1}++;
95 my @targets = sort keys %targets;
96 for (@targets) { print CACHE "$_\n"; }
97 return @targets;
102 my @targets;
106 push( @targets, $_ )
    [all...]
  /external/llvm/tools/llc/
Makefile 12 LINK_COMPONENTS := all-targets bitreader asmparser
  /libcore/luni/src/test/java/tests/targets/security/cert/
CertificateFactoryTestX509.java 16 package tests.targets.security.cert;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
PackedSwitchDataPseudoInstruction.java 43 private int[] targets; field in class:PackedSwitchDataPseudoInstruction
50 public PackedSwitchDataPseudoInstruction(int firstKey, int[] targets) {
53 if (targets.length > 0xFFFF) {
59 this.targets = targets;
76 this.targets = new int[targetCount];
79 targets[i] = NumberUtils.decodeInt(buffer, bufferIndex + 8 + 4*i);
88 out.writeShort(targets.length);
91 for (int target : targets) {
102 targets[targetIndex] = targetAddressOffset
    [all...]
SparseSwitchDataPseudoInstruction.java 43 private int[] targets; field in class:SparseSwitchDataPseudoInstruction
50 public SparseSwitchDataPseudoInstruction(int[] keys, int[] targets) {
53 if (keys.length != targets.length) {
54 throw new RuntimeException("The number of keys and targets don't match");
57 if (targets.length == 0) {
61 if (targets.length > 0xFFFF) {
67 this.targets = targets;
84 targets = new int[targetCount];
88 targets[i] = NumberUtils.decodeInt(buffer, bufferIndex + 4 + targetCount*4 + i*4)
    [all...]
  /external/v8/tools/
bash-completion.sh 38 local cur defines targets
44 targets=$(echo "$defines" \
51 COMPREPLY=($(compgen -W "$targets" -- "$cur"))
  /external/llvm/tools/llvm-mc/
Makefile 12 LINK_COMPONENTS := all-targets MCDisassembler MCParser MC support
  /external/llvm/tools/llvm-objdump/
Makefile 12 LINK_COMPONENTS := all-targets DebugInfo MC MCParser MCDisassembler Object
  /external/llvm/tools/llvm-rtdyld/
Makefile 12 LINK_COMPONENTS := all-targets support MC object RuntimeDyld JIT debuginfo
  /external/llvm/tools/opt/
Makefile 12 LINK_COMPONENTS := bitreader bitwriter asmparser instrumentation scalaropts objcarcopts ipo vectorize all-targets
  /frameworks/base/core/java/android/os/
Broadcaster.java 39 r.targets = new Handler[1];
41 r.targets[0] = target;
62 reg.targets = new Handler[1];
76 n = r.targets.length;
77 Handler[] oldTargets = r.targets;
85 r.targets = new Handler[n+1];
86 System.arraycopy(oldTargets, 0, r.targets, 0, n);
90 r.targets[n] = target;
117 Handler[] targets = r.targets; local
188 Handler[] targets = r.targets; local
208 Handler[] targets; field in class:Broadcaster.Registration
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
SwitchData.java 44 private final CodeAddress[] targets; field in class:SwitchData
57 * @param targets {@code non-null;} corresponding list of code addresses; the
61 IntList cases, CodeAddress[] targets) {
72 if (targets == null) {
73 throw new NullPointerException("targets == null");
78 if (sz != targets.length) {
79 throw new IllegalArgumentException("cases / targets mismatch");
88 this.targets = targets;
104 int sz = targets.length
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
SwitchData.java 45 private final CodeAddress[] targets; field in class:SwitchData
58 * @param targets {@code non-null;} corresponding list of code addresses; the
62 IntList cases, CodeAddress[] targets) {
73 if (targets == null) {
74 throw new NullPointerException("targets == null");
79 if (sz != targets.length) {
80 throw new IllegalArgumentException("cases / targets mismatch");
89 this.targets = targets;
105 int sz = targets.length
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
SwitchData.java 45 private final CodeAddress[] targets; field in class:SwitchData
58 * @param targets {@code non-null;} corresponding list of code addresses; the
62 IntList cases, CodeAddress[] targets) {
73 if (targets == null) {
74 throw new NullPointerException("targets == null");
79 if (sz != targets.length) {
80 throw new IllegalArgumentException("cases / targets mismatch");
89 this.targets = targets;
105 int sz = targets.length
    [all...]

Completed in 534 milliseconds

1 2 3 4 5 6 7 8 91011>>