Searched defs:target (Results 251 - 275 of 2412) sorted by relevance

<<11121314151617181920>>

/external/sfntly/cpp/src/test/
H A Dtest_utils.cc42 char* target = new char[ucnv_getMaxCharSize(encoder) * 2]; local
50 target_end = target;
51 ucnv_fromUnicode(encoder, &target_end, target + 4,
58 delete[] target;
62 for (int32_t position = 0; position < target_end - target; ++position) {
64 enc_char |= (target[position] & 0xff);
67 delete[] target;
H A Dverify_glyf.cc53 bool VerifyGLYF(Table* original, Table* target) { argument
55 EXPECT_TRUE(VerifyGLYF(target));
H A Dverify_hhea.cc57 bool VerifyHHEA(Table* original, Table* target) { argument
59 EXPECT_TRUE(VerifyHHEA(target));
H A Dverify_hmtx.cc70 bool VerifyHMTX(Table* original, Table* target) { argument
72 EXPECT_TRUE(VerifyHMTX(target));
/external/skia/experimental/DrawingBoard/
H A DSkNetPipeController.cpp9 SkNetPipeController::SkNetPipeController(SkCanvas* target) : fReader(target) { argument
/external/skia/src/animator/
H A DSkHitTest.cpp41 SkDisplayable* target = targets[tIndex]; local
43 target->getBounds(&tBounds);
60 SkDisplayable* target = targets[tIndex]; local
61 target->enableBounder();
/external/skia/src/gpu/
H A DGrAARectRenderer.h43 GrDrawTarget* target,
50 this->shaderFillAlignedAARect(gpu, target,
53 this->shaderFillAARect(gpu, target,
57 this->geometryFillAARect(gpu, target,
64 GrDrawTarget* target,
73 GrDrawTarget* target,
91 GrDrawTarget* target,
98 GrDrawTarget* target,
103 GrDrawTarget* target,
108 GrDrawTarget* target,
42 fillAARect(GrGpu* gpu, GrDrawTarget* target, const SkRect& rect, const SkMatrix& combinedMatrix, const SkRect& devRect, bool useVertexCoverage) argument
[all...]
H A DGrPathRendererChain.cpp36 const GrDrawTarget* target,
61 if (fChain[i]->canDrawPath(path, stroke, target, antiAlias)) {
65 target);
34 getPathRenderer(const SkPath& path, const SkStrokeRec& stroke, const GrDrawTarget* target, DrawType drawType, StencilSupport* stencilSupport) argument
/external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
H A DSocks5ClientForInitiator.java43 /* the target JID used to activate SOCKS5 stream */
44 private String target; field in class:Socks5ClientForInitiator
53 * @param target the target JID of the SOCKS5 Bytestream
56 String sessionID, String target) {
60 this.target = target;
72 throw new XMPPException("target is not connected to SOCKS5 proxy");
112 activate.setToActivate(this.target);
55 Socks5ClientForInitiator(StreamHost streamHost, String digest, Connection connection, String sessionID, String target) argument
/external/smack/src/org/xbill/DNS/
H A DKXRecord.java26 * @param target The host that authority is delegated to
29 KXRecord(Name name, int dclass, long ttl, int preference, Name target) { argument
31 target, "target");
34 /** Returns the target of the KX record */
H A DNSAP_PTRRecord.java25 * @param target The name of the host with this address
28 NSAP_PTRRecord(Name name, int dclass, long ttl, Name target) { argument
29 super(name, Type.NSAP_PTR, dclass, ttl, target, "target");
32 /** Gets the target of the NSAP_PTR Record */
H A DNSRecord.java24 * @param target The name server for the given domain
27 NSRecord(Name name, int dclass, long ttl, Name target) { argument
28 super(name, Type.NS, dclass, ttl, target, "target");
31 /** Gets the target of the NS Record */
H A DPTRRecord.java25 * @param target The name of the machine with this address
28 PTRRecord(Name name, int dclass, long ttl, Name target) { argument
29 super(name, Type.PTR, dclass, ttl, target, "target");
32 /** Gets the target of the PTR Record */
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
H A DBuilderInstruction21t.java50 @Nonnull Label target) {
51 super(opcode, target);
48 BuilderInstruction21t(@onnull Opcode opcode, int registerA, @Nonnull Label target) argument
H A DBuilderInstruction22t.java52 @Nonnull Label target) {
53 super(opcode, target);
49 BuilderInstruction22t(@onnull Opcode opcode, int registerA, int registerB, @Nonnull Label target) argument
H A DBuilderInstruction31t.java50 @Nonnull Label target) {
51 super(opcode, target);
48 BuilderInstruction31t(@onnull Opcode opcode, int registerA, @Nonnull Label target) argument
H A DBuilderSwitchElement.java12 @Nonnull private final Label target; field in class:BuilderSwitchElement
16 @Nonnull Label target) {
19 this.target = target;
27 return target.getCodeAddress() - parent.getReferrer().getCodeAddress();
32 return target;
14 BuilderSwitchElement(@onnull BuilderSwitchPayload parent, int key, @Nonnull Label target) argument
/external/valgrind/main/none/tests/
H A Dpth_cancel2.c65 pthread_t * target = (pthread_t *)arg; local
67 pthread_cancel(*target);
/external/vixl/benchmarks/
H A Dbench-branch.cc64 Label target; local
65 __ b(&target);
66 __ bind(&target);
73 Label target; local
74 __ b(&target);
75 __ bind(&target);
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java117 * and port are taken from the target host, but whose path, query and
123 * @param target
133 final HttpHost target,
138 if (target != null) {
140 target.getSchemeName(),
141 target.getHostName(),
142 target.getPort(),
164 final HttpHost target) throws URISyntaxException {
165 return rewriteURI(uri, target, false);
131 rewriteURI( final URI uri, final HttpHost target, boolean dropFragment) argument
162 rewriteURI( final URI uri, final HttpHost target) argument
/external/apache-http/src/org/apache/http/impl/conn/
H A DDefaultClientConnectionOperator.java106 HttpHost target,
116 if (target == null) {
131 final Scheme schm = schemeRegistry.getScheme(target.getSchemeName());
142 InetAddress[] addresses = InetAddress.getAllByName(target.getHostName());
146 conn.opening(sock, target);
151 schm.resolvePort(target.getPort()),
155 conn.opening(sock, target);
171 target.getHostName(),
172 schm.resolvePort(target.getPort()),
175 conn.opening(layeredsock, target);
105 openConnection(OperatedClientConnection conn, HttpHost target, InetAddress local, HttpContext context, HttpParams params) argument
201 updateSecureConnection(OperatedClientConnection conn, HttpHost target, HttpContext context, HttpParams params) argument
[all...]
/external/bison/
H A Dcfg.mk31 # override the _is-dist-target from GNUmakefile so that maintainer-*check*
33 _is-dist-target = $(filter-out %clean maintainer-check% maintainer-%-check, \
51 # this release. Used solely to get a date for the "announcement" target.
/external/chromium_org/ash/shelf/
H A Doverflow_bubble.cc72 aura::Window* target = static_cast<aura::Window*>(event->target()); local
74 aura::client::GetScreenPositionClient(target->GetRootWindow())->
75 ConvertPointToScreen(target, &event_location_in_screen);
/external/chromium_org/ash/system/tray/
H A Dtray_event_filter.cc55 if (event->target()) {
56 aura::Window* target = static_cast<aura::Window*>(event->target()); local
59 GetRootWindowController(target->GetRootWindow());
62 ->Contains(target)) {
/external/chromium_org/ash/wm/
H A Doverlay_event_filter.cc39 aura::Window* target = static_cast<aura::Window*>(event->target()); local
41 !delegate_->GetWindow()->Contains(target))

Completed in 1632 milliseconds

<<11121314151617181920>>