Searched refs:targets (Results 1 - 25 of 106) sorted by relevance

12345

/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DPackedSwitchPayloadDecodedInstruction.java32 private final int[] targets; field in class:PackedSwitchPayloadDecodedInstruction
38 int opcode, int firstKey, int[] targets) {
42 this.targets = targets;
55 return targets;
37 PackedSwitchPayloadDecodedInstruction(InstructionCodec format, int opcode, int firstKey, int[] targets) argument
H A DSparseSwitchPayloadDecodedInstruction.java32 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;
37 SparseSwitchPayloadDecodedInstruction(InstructionCodec format, int opcode, int[] keys, int[] targets) argument
/external/skia/src/animator/
H A DSkHitClear.cpp15 SK_MEMBER_ARRAY(targets, Displayable)
23 for (int tIndex = 0; tIndex < targets.count(); tIndex++) {
24 SkDisplayable* target = targets[tIndex];
H A DSkHitClear.h22 SkTDDisplayableArray targets; member in class:SkHitClear
H A DSkHitTest.cpp17 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
H A DSkHitTest.h26 SkTDDisplayableArray targets; member in class:SkHitTest
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Dcomplete-ant-cmd.pl82 # 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/
H A DMakefile12 LINK_COMPONENTS := all-targets bitreader asmparser
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
H A DPackedSwitchDataPseudoInstruction.java43 private int[] targets; field in class:PackedSwitchDataPseudoInstruction
50 public PackedSwitchDataPseudoInstruction(int firstKey, int[] targets) { argument
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[targetInde
[all...]
H A DSparseSwitchDataPseudoInstruction.java43 private int[] targets; field in class:SparseSwitchDataPseudoInstruction
50 public SparseSwitchDataPseudoInstruction(int[] keys, int[] targets) { argument
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[
[all...]
/external/v8/tools/
H A Dbash-completion.sh38 local cur defines targets
44 targets=$(echo "$defines" \
51 COMPREPLY=($(compgen -W "$targets" -- "$cur"))
/external/llvm/tools/llvm-mc/
H A DMakefile12 LINK_COMPONENTS := all-targets MCDisassembler MCParser MC support
/external/llvm/tools/llvm-objdump/
H A DMakefile12 LINK_COMPONENTS := all-targets DebugInfo MC MCParser MCDisassembler Object
/external/llvm/tools/llvm-rtdyld/
H A DMakefile12 LINK_COMPONENTS := all-targets support MC object RuntimeDyld JIT
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DSwitchData.java45 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
61 SwitchData(SourcePosition position, CodeAddress user, IntList cases, CodeAddress[] targets) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DForwardingImmutableCollection.java46 @Override public boolean containsAll(Collection<?> targets) { argument
47 return delegate.containsAll(targets);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
H A DPackedSwitchMethodItem.java44 private final List<PackedSwitchTarget> targets; field in class:PackedSwitchMethodItem
52 targets = new ArrayList<PackedSwitchTarget>();
64 targets.add(packedSwitchLabelTarget);
73 targets.add(packedSwitchOffsetTarget);
84 for (PackedSwitchTarget target: targets) {
H A DSparseSwitchMethodItem.java44 private final List<SparseSwitchTarget> targets; field in class:SparseSwitchMethodItem
52 targets = new ArrayList<SparseSwitchTarget>();
64 targets.add(sparseSwitchLabelTarget);
74 targets.add(sparseSwitchOffsetTarget);
83 for (SparseSwitchTarget target: targets) {
/external/icu4c/samples/uresb/
H A Dresources.mak15 @echo All targets are up to date
/external/guava/guava/src/com/google/common/collect/
H A DEmptyImmutableSet.java71 @Override public boolean containsAll(Collection<?> targets) { argument
72 return targets.isEmpty();
H A DEmptyImmutableSortedSet.java74 @Override public boolean containsAll(Collection<?> targets) { argument
75 return targets.isEmpty();
/external/icu4c/i18n/
H A Dtransreg.cpp194 * Spec class for sources and targets.
746 Hashtable *targets = (Hashtable*) specDAG.get(source); local
747 return (targets == 0) ? 0 : targets->count();
753 Hashtable *targets = (Hashtable*) specDAG.get(source); local
754 if (targets == 0) {
761 e = targets->nextElement(pos);
776 Hashtable *targets = (Hashtable*) specDAG.get(source); local
777 if (targets == 0) {
780 UVector *variants = (UVector*) targets
789 Hashtable *targets = (Hashtable*) specDAG.get(source); local
933 Hashtable *targets = (Hashtable*) specDAG.get(source); local
979 Hashtable *targets = (Hashtable*) specDAG.get(source); local
[all...]
/external/llvm/tools/lto/
H A DMakefile12 LINK_COMPONENTS := all-targets ipo scalaropts linker bitreader bitwriter \
/external/webkit/Source/WebCore/storage/
H A DIDBTransaction.cpp154 Vector<RefPtr<EventTarget> > targets; local
155 targets.append(this);
156 targets.append(db());
160 return IDBEventDispatcher::dispatch(event.get(), targets);
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DSkeletonControl.java36 * List of targets which this controller effects.
38 private Mesh[] targets; field in class:SkeletonControl
53 * The list of targets will be acquired automatically when
65 * @param targets the meshes controlled by the skeleton
69 SkeletonControl(Mesh[] targets, Skeleton skeleton) { argument
71 this.targets = targets;
123 targets = findTargets(node);
125 targets = null;
138 for (int i = 0; i < targets
[all...]

Completed in 376 milliseconds

12345