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

12345678

/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 irreader
/external/llvm/tools/llvm-cxxdump/
H A DMakefile12 LINK_COMPONENTS := bitreader object all-targets
/external/llvm/tools/llvm-nm/
H A DMakefile12 LINK_COMPONENTS := all-targets bitreader object
/external/llvm/tools/llvm-readobj/
H A DMakefile12 LINK_COMPONENTS := bitreader object all-targets
/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/dsymutil/
H A DMakefile12 LINK_COMPONENTS := all-targets AsmPrinter DebugInfoDWARF MC Object Support
/external/llvm/tools/llvm-ar/
H A DMakefile13 LINK_COMPONENTS := all-targets bitreader support object
/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 DebugInfoDWARF MC MCParser MCDisassembler Object
/external/llvm/tools/llvm-rtdyld/
H A DMakefile12 LINK_COMPONENTS := all-targets support MC object RuntimeDyld MCJIT DebugInfoDWARF
/external/llvm/unittests/MC/
H A DMakefile12 LINK_COMPONENTS := all-targets MCDisassembler Object
/external/mesa3d/src/mesa/state_tracker/
H A Dst_cb_xformfb.c57 struct pipe_stream_output_target *targets[PIPE_MAX_SO_BUFFERS]; member in struct:st_transform_feedback_object
96 /* Unreference targets. */
98 pipe_so_target_reference(&sobj->targets[i], NULL);
121 Elements(sobj->targets));
129 if (!sobj->targets[i] ||
130 sobj->targets[i] == sobj->draw_count ||
131 sobj->targets[i]->buffer != bo->buffer ||
132 sobj->targets[i]->buffer_offset != sobj->base.Offset[i] ||
133 sobj->targets[i]->buffer_size != sobj->base.Size[i]) {
140 pipe_so_target_reference(&sobj->targets[
[all...]
/external/skia/
H A Dmake.py22 # special targets
86 def MakeWindows(targets):
90 targets: build targets as a list of strings
101 while TARGET_GYP in targets:
102 targets.remove(TARGET_GYP)
105 if targets:
107 os.path.join(OUT_SUBDIR, BUILDTYPE), ' '.join(targets)))
116 # handle any variable-setting parameters or special targets
119 # if no targets wer
[all...]
/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/deqp/scripts/build/
H A Dbuild.py45 def build (config, generator, targets = None):
54 if targets == None:
57 for target in targets:
/external/mockito/cglib-and-asm/src/org/mockito/cglib/reflect/
H A DMulticastDelegate.java27 protected Object[] targets = {}; field in class:MulticastDelegate
33 return new ArrayList(Arrays.asList(targets));
40 copy.targets = new Object[targets.length + 1];
41 System.arraycopy(targets, 0, copy.targets, 0, targets.length);
42 copy.targets[targets.length] = target;
47 for (int i = targets
[all...]
/external/llvm/tools/llvm-lto/
H A DMakefile12 LINK_COMPONENTS := lto ipo scalaropts linker bitreader bitwriter mcdisassembler support target vectorize all-targets
/external/llvm/tools/opt/
H A DMakefile12 LINK_COMPONENTS := bitreader bitwriter asmparser irreader instrumentation scalaropts objcarcopts ipo vectorize all-targets codegen passes

Completed in 1774 milliseconds

12345678