Searched defs:targets (Results 1 - 25 of 99) sorted by relevance

1234

/external/skia/src/animator/
H A DSkHitClear.h22 SkTDDisplayableArray targets; member in class:SkHitClear
H A DSkHitTest.h26 SkTDDisplayableArray targets; member in class:SkHitTest
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DAttributeCertificateIssuer.java65 private boolean matchesDN(X500Name subject, GeneralNames targets) argument
67 GeneralName[] names = targets.getNames();
H A DAttributeCertificateHolder.java194 private boolean matchesDN(X500Name subject, GeneralNames targets) argument
196 GeneralName[] names = targets.getNames();
/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/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);
H A DForwardingImmutableSet.java47 @Override public boolean containsAll(Collection<?> targets) { argument
48 return delegate.containsAll(targets);
H A DForwardingImmutableList.java75 @Override public boolean containsAll(Collection<?> targets) { argument
76 return delegateList().containsAll(targets);
H A DRegularContiguousSet.java110 @Override public boolean containsAll(Collection<?> targets) { argument
111 return Collections2.containsAllImpl(this, targets);
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_state_streamout.c246 struct pipe_stream_output_target **targets,
259 /* Set the new targets. */
261 pipe_so_target_reference((struct pipe_stream_output_target**)&rctx->so_targets[i], targets[i]);
244 si_set_so_targets(struct pipe_context *ctx, unsigned num_targets, struct pipe_stream_output_target **targets, unsigned append_bitmask) argument
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_state_so.c65 struct pipe_stream_output_target **targets,
72 pipe_so_target_reference((struct pipe_stream_output_target **)&softpipe->so_targets[i], targets[i]);
63 softpipe_set_so_targets(struct pipe_context *pipe, unsigned num_targets, struct pipe_stream_output_target **targets, unsigned append_bitmask) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DAttributeCertificateIssuer.java110 private boolean matchesDN(X500Principal subject, GeneralNames targets) argument
112 GeneralName[] names = targets.getNames();
H A DAttributeCertificateHolder.java207 private boolean matchesDN(X509Principal subject, GeneralNames targets) argument
209 GeneralName[] names = targets.getNames();
/external/llvm/utils/buildit/
H A DGNUmakefile23 targets = echo $(RC_ARCHS) macro
24 TARGETS := $(shell $(targets))
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
H A DPackedSwitchMethodItem.java43 private final List<PackedSwitchTarget> targets; field in class:PackedSwitchMethodItem
51 targets = new ArrayList<PackedSwitchTarget>();
65 targets.add(new PackedSwitchLabelTarget(label));
73 targets.add(new PackedSwitchOffsetTarget(switchElement.getOffset()));
86 for (PackedSwitchTarget target: targets) {
H A DSparseSwitchMethodItem.java43 private final List<SparseSwitchTarget> targets; field in class:SparseSwitchMethodItem
50 targets = new ArrayList<SparseSwitchTarget>();
56 targets.add(new SparseSwitchLabelTarget(switchElement.getKey(), label));
61 targets.add(new SparseSwitchOffsetTarget(switchElement.getKey(), switchElement.getOffset()));
70 for (SparseSwitchTarget target: targets) {
/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/src/com/google/common/collect/
H A DEmptyImmutableSet.java50 @Override public boolean containsAll(Collection<?> targets) { argument
51 return targets.isEmpty();
H A DEmptyImmutableSortedMultiset.java53 public boolean containsAll(Collection<?> targets) { argument
54 return targets.isEmpty();
H A DEmptyImmutableSortedSet.java54 @Override public boolean containsAll(Collection<?> targets) { argument
55 return targets.isEmpty();
/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/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bvgraph.h110 // to any of the nodes in 'targets'.
111 bool isReachable(uptr from, const BV &targets) { argument
122 return targets.intersectsWith(visited);
128 uptr findPath(uptr from, const BV &targets, uptr *path, uptr path_size) { argument
132 if (targets.getBit(from))
138 if (uptr res = findPath(idx, targets, path + 1, path_size - 1))
145 uptr findShortestPath(uptr from, const BV &targets, uptr *path, argument
148 if (findPath(from, targets, path, p) == p)
/external/deqp/framework/opengl/
H A DgluStateReset.cpp487 static const deUint32 targets[] = { GL_ANY_SAMPLES_PASSED, GL_ANY_SAMPLES_PASSED_CONSERVATIVE, GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN }; local
489 for (int i = 0; i < DE_LENGTH_OF_ARRAY(targets); i++)
492 gl.getQueryiv(targets[i], GL_CURRENT_QUERY, &queryActive);
495 gl.endQuery(targets[i]);
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DTestUtil.java185 public static void runUntilDone(Runnable[] targets) { argument
186 if (targets == null) {
187 throw new IllegalArgumentException("targets is null");
189 if (targets.length == 0) {
194 for (int i = 0; i < targets.length; ++i) {
195 new TestThread(lock, targets[i]).start();

Completed in 676 milliseconds

1234