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

123456

/external/chromium_org/third_party/skia/src/animator/
H A DSkHitClear.h22 SkTDDisplayableArray targets; member in class:SkHitClear
H A DSkHitTest.h26 SkTDDisplayableArray targets; member in class:SkHitTest
/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();
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/tools/gtk_clipboard_dump/
H A Dgtk_clipboard_dump.cc13 GdkAtom* targets; local
18 // gtk_clipboard_wait_for_targets(clip, &targets, &num_targets);
28 gtk_selection_data_get_targets(target_data, &targets, &num_targets);
30 printf("%d available targets:\n---------------\n", num_targets);
33 gchar* target_name_cstr = gdk_atom_name(targets[i]);
37 GtkSelectionData* data = gtk_clipboard_wait_for_contents(clip, targets[i]);
62 printf("No targets advertised. Text is: ");
68 g_free(targets);
/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);
/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();
/external/chromium_org/tools/gn/
H A Dninja_toolchain_writer.cc20 const std::vector<const Target*>& targets,
24 targets_(targets),
43 const std::vector<const Target*>& targets) {
58 NinjaToolchainWriter gen(settings, toolchain, targets, file);
17 NinjaToolchainWriter( const Settings* settings, const Toolchain* toolchain, const std::vector<const Target*>& targets, std::ostream& out) argument
40 RunAndWriteFile( const Settings* settings, const Toolchain* toolchain, const std::vector<const Target*>& targets) argument
H A Dgyp_target_writer.cc39 const std::vector<TargetGroup>& targets,
42 if (targets.empty())
45 targets[0].debug->item()->AsTarget()->settings();
60 file << " 'targets': [\n";
62 for (size_t i = 0; i < targets.size(); i++) {
63 const Target* cur = targets[i].debug->item()->AsTarget();
68 GypScriptTargetWriter writer(targets[i], debug_toolchain,
79 GypBinaryTargetWriter writer(targets[i], debug_toolchain,
38 WriteFile(const SourceFile& gyp_file, const std::vector<TargetGroup>& targets, const Toolchain* debug_toolchain, Err* err) argument
/external/chromium_org/ui/base/accelerators/
H A Daccelerator_manager.cc22 AcceleratorTargetList& targets = accelerators_[accelerator].second; local
23 DCHECK(std::find(targets.begin(), targets.end(), target) == targets.end())
30 targets.push_front(target);
40 targets.push_front(target);
42 targets.insert(++targets.begin(), target);
53 AcceleratorTargetList* targets = &map_iter->second.second; local
55 std::find(targets
73 AcceleratorTargetList* targets = &map_iter->second.second; local
[all...]
/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.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/chromium_org/chrome/browser/net/spdyproxy/
H A Dhttp_auth_handler_spdyproxy_unittest.cc78 HttpAuth::Target targets[] = { HttpAuth::AUTH_SERVER, HttpAuth::AUTH_PROXY }; local
81 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(targets); ++i) {
92 tests[j].challenge, targets[i], origin, BoundNetLog(),
/external/chromium_org/third_party/mesa/src/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/chromium_org/ui/base/x/
H A Dselection_owner.cc41 void SelectionOwner::RetrieveTargets(std::vector<Atom>* targets) { argument
42 targets->clear();
45 targets->push_back(it->first);
82 std::vector<Atom> targets; local
83 targets.push_back(targets_atom);
84 RetrieveTargets(&targets);
88 reinterpret_cast<unsigned char*>(&targets.front()),
89 targets.size());
/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.java71 @Override public boolean containsAll(Collection<?> targets) { argument
72 return targets.isEmpty();

Completed in 859 milliseconds

123456