Searched refs:target (Results 101 - 125 of 1407) sorted by relevance

1234567891011>>

/external/webkit/LayoutTests/storage/indexeddb/resources/
H A Dshared.js15 testFailed("Error function called unexpectedly: (" + event.target.errorCode + ") " + event.target.webkitErrorMessage);
/external/webkit/Source/WebCore/dom/
H A DProcessingInstruction.idl27 readonly attribute [ConvertNullStringTo=Null] DOMString target;
H A DWindowEventContext.cpp50 m_target = topEventContext ? topEventContext->target() : node.get();
58 event->setTarget(target());
H A DWindowEventContext.h45 EventTarget* target() const;
58 inline EventTarget* WindowEventContext::target() const function in class:WebCore::WindowEventContext
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/seekbackwardbutton/
H A Dseekbackward_button.edc47 target: "seekbackward_button";
/external/webkit/Source/WebKit/efl/DefaultTheme/widget/mediacontrol/seekforwardbutton/
H A Dseekforward_button.edc47 target: "seekforward_button";
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebPluginContainer.h40 @abstract Tell the application to show a URL in a target frame
42 @param target The target frame. If the frame with the specified target is not
44 with the specified target. If nil is specified, the frame that contains
47 - (void)webPlugInContainerLoadRequest:(NSURLRequest *)request inFrame:(NSString *)target;
/external/webkit/Tools/DumpRenderTree/chromium/
H A Dfonts.conf5 <match target="font">
9 <match target="pattern">
18 <match target="pattern">
27 <match target="pattern">
38 <match target="pattern">
47 <match target="pattern">
56 <match target="pattern">
65 <match target="pattern">
74 <match target="pattern">
83 <match target
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h613 // Like WriteRaw() but writing directly to the target array.
618 static uint8* WriteRawToArray(const void* buffer, int size, uint8* target);
622 // Like WriteString() but writing directly to the target array.
623 static uint8* WriteStringToArray(const string& str, uint8* target);
628 // Like WriteLittleEndian32() but writing directly to the target array.
629 static uint8* WriteLittleEndian32ToArray(uint32 value, uint8* target);
632 // Like WriteLittleEndian64() but writing directly to the target array.
633 static uint8* WriteLittleEndian64ToArray(uint64 value, uint8* target);
639 // Like WriteVarint32() but writing directly to the target array.
640 static uint8* WriteVarint32ToArray(uint32 value, uint8* target);
889 WriteVarint32ToArray(uint32 value, uint8* target) argument
907 WriteVarint32SignExtendedToArray( int32 value, uint8* target) argument
916 WriteLittleEndian32ToArray(uint32 value, uint8* target) argument
930 WriteLittleEndian64ToArray(uint64 value, uint8* target) argument
955 WriteTagToArray( uint32 value, uint8* target) argument
989 WriteStringToArray( const string& str, uint8* target) argument
[all...]
H A Dcoded_stream.cc579 const void* data, int size, uint8* target) {
580 memcpy(target, data, size);
581 return target + size;
616 uint32 value, uint8* target) {
617 target[0] = static_cast<uint8>(value | 0x80);
619 target[1] = static_cast<uint8>((value >> 7) | 0x80);
621 target[2] = static_cast<uint8>((value >> 14) | 0x80);
623 target[3] = static_cast<uint8>((value >> 21) | 0x80);
625 target[4] = static_cast<uint8>(value >> 28);
626 return target
578 WriteRawToArray( const void* data, int size, uint8* target) argument
615 WriteVarint32FallbackToArrayInline( uint32 value, uint8* target) argument
649 uint8* target = buffer_; local
667 WriteVarint32FallbackToArray( uint32 value, uint8* target) argument
672 WriteVarint64ToArrayInline( uint64 value, uint8* target) argument
748 uint8* target = buffer_; local
767 WriteVarint64ToArray( uint64 value, uint8* target) argument
[all...]
/external/skia/gpu/src/
H A DGrContext.cpp457 bool GrContext::doOffscreenAA(GrDrawTarget* target, argument
469 if (target->getRenderTarget()->isMultisampled()) {
486 bool GrContext::setupOffscreenAAPass1(GrDrawTarget* target, argument
546 target->saveCurrentDrawState(&record->fSavedState);
550 SetPaint(tempPaint, target);
551 target->setRenderTarget(offRT0);
555 target->postConcatViewMatrix(transM);
558 target->postConcatViewMatrix(scaleM);
561 target->disableState(GrDrawTarget::kClip_StateBit);
564 target
569 offscreenAAPass2(GrDrawTarget* target, const GrPaint& paint, const GrIRect& boundRect, OffscreenRecord* record) argument
761 fillAARect(GrDrawTarget* target, const GrPaint& paint, const GrRect& devRect) argument
797 strokeAARect(GrDrawTarget* target, const GrPaint& paint, const GrRect& devRect, const GrVec& devStrokeSize) argument
866 apply_aa_to_rect(GrDrawTarget* target, GrGpu* gpu, const GrPaint& paint, const GrRect& rect, GrScalar width, const GrMatrix* matrix, GrMatrix* combinedMatrix, GrRect* devRect) argument
922 GrDrawTarget* target = this->prepareToDraw(paint, kUnbuffered_DrawCategory); local
1036 GrDrawTarget* target = this->prepareToDraw(paint, kUnbuffered_DrawCategory); local
1070 GrDrawTarget* target; local
1097 GrDrawTarget* target = this->prepareToDraw(paint, kUnbuffered_DrawCategory); local
1174 GrDrawTarget* target = this->prepareToDraw(paint, kUnbuffered_DrawCategory); local
1265 GrRenderTarget* target = texture->asRenderTarget(); local
1275 readRenderTargetPixels(GrRenderTarget* target, int left, int top, int width, int height, GrPixelConfig config, void* buffer) argument
1338 SetPaint(const GrPaint& paint, GrDrawTarget* target) argument
1377 GrDrawTarget* target = fGpu; local
1400 setRenderTarget(GrRenderTarget* target) argument
1500 GrDrawTarget* target; local
1514 getPathRenderer(const GrDrawTarget* target, const GrPath& path, GrPathFill fill) argument
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DProxySelectorRoutePlanner.java118 public HttpRoute determineRoute(HttpHost target, argument
128 // If we have a forced route, we can do without a target.
135 // So we need a target to compute a route.
137 if (target == null) {
150 proxy = determineProxy(target, request, context);
158 this.schemeRegistry.getScheme(target.getSchemeName());
164 route = new HttpRoute(target, local, secure);
166 route = new HttpRoute(target, local, proxy, secure);
173 * Determines a proxy for the given target.
175 * @param target th
184 determineProxy(HttpHost target, HttpRequest request, HttpContext context) argument
261 chooseProxy(List<Proxy> proxies, HttpHost target, HttpRequest request, HttpContext context) argument
[all...]
/external/chromium/net/http/
H A Dhttp_auth.cc27 Target target,
37 const std::string header_name = GetChallengeHeaderName(target);
43 cur_challenge, target, origin, net_log, &cur);
60 Target target,
71 const std::string header_name = GetChallengeHeaderName(target);
129 std::string HttpAuth::GetChallengeHeaderName(Target target) { argument
130 switch (target) {
142 std::string HttpAuth::GetAuthorizationHeaderName(Target target) { argument
143 switch (target) {
155 std::string HttpAuth::GetAuthTargetString(Target target) { argument
24 ChooseBestChallenge( HttpAuthHandlerFactory* http_auth_handler_factory, const HttpResponseHeaders* headers, Target target, const GURL& origin, const std::set<Scheme>& disabled_schemes, const BoundNetLog& net_log, scoped_ptr<HttpAuthHandler>* handler) argument
57 HandleChallengeResponse( HttpAuthHandler* handler, const HttpResponseHeaders* headers, Target target, const std::set<Scheme>& disabled_schemes, std::string* challenge_used) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DTileQt.cpp147 IntRect target = intersection(rect, m_rect);
148 IntRect source((target.x() - m_rect.x()),
149 (target.y() - m_rect.y()),
150 target.width(),
151 target.height());
153 context->platformContext()->drawPixmap(target, *m_buffer, source);
156 void Tile::paintCheckerPattern(GraphicsContext* context, const FloatRect& target) argument
163 QRect targetViewRect = QRectF(target.x() * scaleX,
164 target.y() * scaleY,
165 target
[all...]
/external/apache-http/src/org/apache/http/client/
H A DHttpClient.java103 * The route to the target will be determined by the HTTP client.
123 * Executes a request to the target using the default context.
125 * @param target the target host for the request.
128 * to a default target or by inspecting the request.
139 HttpResponse execute(HttpHost target, HttpRequest request) argument
144 * Executes a request to the target using the given context.
146 * @param target the target host for the request.
149 * to a default target o
162 execute(HttpHost target, HttpRequest request, HttpContext context) argument
217 execute( HttpHost target, HttpRequest request, ResponseHandler<? extends T> responseHandler) argument
241 execute( HttpHost target, HttpRequest request, ResponseHandler<? extends T> responseHandler, HttpContext context) argument
[all...]
/external/apache-http/src/org/apache/http/conn/routing/
H A DHttpRoutePlanner.java42 * Encapsulates logic to compute a {@link HttpRoute} to a target host.
51 * @param target the target host for the request.
54 * to a default target or by inspecting the request.
63 public HttpRoute determineRoute(HttpHost target, argument
/external/chromium/chrome/browser/
H A Dspellcheck_message_filter_browsertest.cc47 scoped_refptr<TestingSpellCheckMessageFilter> target
53 target->OnMessageReceived(to_be_received, &handled);
57 EXPECT_EQ(1U, target->sent_messages_.size());
63 target->sent_messages_[0], &sent_identifier, &sent_tag, &sent_results);
/external/chromium/chrome/browser/sync/
H A Djs_event_router.h23 // If |target| is NULL that means the event is intended for every
24 // handler. Otherwise the event is meant for the given target only.
25 // |target| is const because it shouldn't be used except by the
29 const JsEventHandler* target) = 0;
/external/icu4c/i18n/
H A Danytrans.cpp191 target = theTarget;
193 target.append(VARIANT_SEP).append(theVariant);
206 target(o.target),
240 // our target or target/variant
283 id.append(TARGET_SEP).append(target);
291 id.append(LATIN_PIVOT).append(target);
348 UnicodeString target; local
349 Transliterator::_getAvailableTarget(t, source, target);
[all...]
/external/icu4c/test/
H A DMakefile.in55 target=`echo $@ | sed s/-recursive//`; \
57 echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \
60 local_target="$$target-local"; \
62 local_target="$$target"; \
67 $(MAKE) "$$target-local" || exit; \
73 target=`echo $@ | sed s/-recursive//`; \
75 echo "$(MAKE)[$(MAKELEVEL)]: Making \`$$target' in \`$$subdir'"; \
76 local_target="$$target"; \
/external/icu4c/test/cintltst/
H A Deurocreg.c143 char target[20]; local
150 target,
151 sizeof(target),
163 target,
/external/iptables/extensions/
H A Dlibxt_AUDIT.c20 "AUDIT target options\n"
46 static void audit_print(const void *ip, const struct xt_entry_target *target, argument
50 (const struct xt_audit_info *)target->data;
67 static void audit_save(const void *ip, const struct xt_entry_target *target) argument
70 (const struct xt_audit_info *)target->data;
H A Dlibxt_CHECKSUM.c22 "CHECKSUM target options\n"
40 static void CHECKSUM_print(const void *ip, const struct xt_entry_target *target, argument
44 (const struct xt_CHECKSUM_info *)target->data;
52 static void CHECKSUM_save(const void *ip, const struct xt_entry_target *target) argument
55 (const struct xt_CHECKSUM_info *)target->data;
H A Dlibxt_CLASSIFY.c14 "CLASSIFY target options:\n"
53 const struct xt_entry_target *target,
57 (const struct xt_classify_target_info *)target->data;
63 CLASSIFY_save(const void *ip, const struct xt_entry_target *target) argument
66 (const struct xt_classify_target_info *)target->data;
52 CLASSIFY_print(const void *ip, const struct xt_entry_target *target, int numeric) argument
H A Dlibxt_IDLETIMER.c45 "IDLETIMER target options:\n"
52 const struct xt_entry_target *target,
56 (struct idletimer_tg_info *) target->data;
63 const struct xt_entry_target *target)
66 (struct idletimer_tg_info *) target->data;
51 idletimer_tg_print(const void *ip, const struct xt_entry_target *target, int numeric) argument
62 idletimer_tg_save(const void *ip, const struct xt_entry_target *target) argument

Completed in 474 milliseconds

1234567891011>>