Searched refs:target (Results 1 - 25 of 1407) sorted by relevance

1234567891011>>

/external/clang/test/CXX/except/except.spec/
H A Dp9-dynamic.cpp5 void target() throw(int) function
H A Dp9-noexcept.cpp5 void target() noexcept
/external/guava/src/com/google/common/io/
H A DAppendableWriter.java25 * Writer that places all output on an {@link Appendable} target. If the target
27 * be delegated to the target.
34 private final Appendable target; field in class:AppendableWriter
38 * Creates a new writer that appends everything it writes to {@code target}.
40 * @param target target to which to append output
42 AppendableWriter(Appendable target) { argument
43 this.target = target;
[all...]
/external/chromium/net/http/
H A Dhttp_auth_filter.cc29 HttpAuth::Target target) {
30 if ((target != HttpAuth::AUTH_SERVER) && (target != HttpAuth::AUTH_PROXY))
33 if (target == HttpAuth::AUTH_PROXY)
44 HttpAuth::Target target) const {
45 if ((target != HttpAuth::AUTH_SERVER) && (target != HttpAuth::AUTH_PROXY))
48 if (target == HttpAuth::AUTH_PROXY)
28 AddFilter(const std::string& filter, HttpAuth::Target target) argument
/external/qemu/
H A Dballoon.h19 typedef ram_addr_t (QEMUBalloonEvent)(void *opaque, ram_addr_t target);
23 void qemu_balloon(ram_addr_t target);
/external/webkit/Tools/MiniBrowser/
H A DMBToolbarItem.m32 [self setEnabled:[[self target] validateUserInterfaceItem:self]];
/external/llvm/bindings/ocaml/target/
H A DMakefile1 ##===- bindings/ocaml/target/Makefile ----------------------*- Makefile -*-===##
16 UsedComponents := target
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dcontext_menu_button.js44 var target = getContextMenuTarget(this);
45 return target && target.contextMenu;
60 var target = getContextMenuTarget(this);
61 if (target)
62 target.focus();
/external/webkit/LayoutTests/fast/events/touch/resources/
H A Dtouch-stale-node-crash.js5 var target = e.touches[0].target;
6 document.body.removeChild(target);
/external/skia/gpu/include/
H A DGrTesselatedPathRenderer.h26 virtual void drawPath(GrDrawTarget* target,
31 virtual bool canDrawPath(const GrDrawTarget* target,
35 virtual bool requiresStencilPass(const GrDrawTarget* target, argument
38 virtual void drawPathToStencil(GrDrawTarget* target,
42 virtual bool supportsAA(GrDrawTarget* target,
H A DGrTBSearch.h22 int GrTBSearch(const ELEM array[], int count, KEY target) { argument
33 if (LT(array[index], target)) {
41 if (EQ(array[high], target)) {
46 if (LT(array[high], target)) {
/external/icu4c/samples/datefmt/
H A Dutil.cpp20 // Append a hex string to the target
23 UnicodeString& target) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
28 return target;
34 UnicodeString target; local
35 target += "\"";
39 target += "\\u";
40 appendHex(ch, 4, target);
42 target += ch;
45 target
21 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
[all...]
/external/icu4c/samples/msgfmt/
H A Dutil.cpp20 // Append a hex string to the target
23 UnicodeString& target) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
28 return target;
34 UnicodeString target; local
35 target += "\"";
39 target += "\\u";
40 appendHex(ch, 4, target);
42 target += ch;
45 target
21 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
[all...]
/external/icu4c/samples/translit/
H A Dutil.cpp20 // Append a hex string to the target
23 UnicodeString& target) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
28 return target;
34 UnicodeString target; local
35 target += "\"";
39 target += "\\u";
40 appendHex(ch, 4, target);
42 target += ch;
45 target
21 appendHex(uint32_t number, int8_t digits, UnicodeString& target) argument
[all...]
/external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
H A DReplaceTest.java29 String target, pattern, repl;
31 target = "foobarfobarfoofo1";
36 Matcher m = p.matcher(target);
43 String target, pattern, repl, s;
47 target = "[31]foo;bar[42];[99]xyz";
52 m = p.matcher(target);
58 target = "[31]foo(42)bar{63}zoo;[12]abc(34)def{56}ghi;{99}xyz[88]xyz(77)xyz;";
62 m = p.matcher(target);
76 String target, pattern, repl, s;
78 target
[all...]
/external/icu4c/common/
H A Ducnvlat1.c34 UChar *target; local
42 target=pArgs->target;
43 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target);
56 /* target will be full */
68 target[0]=source[0];
69 target[1]=source[1];
70 target[2]=source[2];
71 target[3]=source[3];
72 target[
136 uint8_t *target, *oldTarget; local
324 uint8_t *target; local
473 UChar *target, *oldTarget; local
610 uint8_t *target; local
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DLerp.java21 public static float lerp(float start, float target, float duration, float timeSinceStart) argument
26 final float range = target - start;
32 value = target;
37 public static float ease(float start, float target, float duration, float timeSinceStart) argument
42 final float range = target - start;
57 value = target;
/external/webkit/Source/WebKit/chromium/tests/
H A DCCThreadTest.cpp54 PingPongUsingCondition target; local
56 thread->postTask(createCCThreadTask(&target, &PingPongUsingCondition::ping, &completion));
59 EXPECT_EQ(thread->threadID(), target.hitThreadID);
83 PingPongTestUsingTasks target; local
84 thread->postTask(createCCThreadTask(&target, &PingPongTestUsingTasks::ping));
87 EXPECT_TRUE(target.hit);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebPolicyDelegate.mm46 id target;
50 - (id)initWithTarget:(id)target action:(SEL)action;
61 target = [t retain];
68 [target release];
76 - (id)_initWithTarget:(id)target action:(SEL)action
81 _private = [[WebPolicyDecisionListenerPrivate alloc] initWithTarget:target action:action];
93 if (_private->target)
94 ((void (*)(id, SEL, PolicyAction))objc_msgSend)(_private->target, _private->action, policy);
99 id target = _private->target;
[all...]
/external/webkit/Source/WebCore/bindings/gobject/
H A DWebKitDOMEventTarget.cpp67 void webkit_dom_event_target_dispatch_event(WebKitDOMEventTarget* target, WebKitDOMEvent* event, GError** error) argument
69 g_return_if_fail(WEBKIT_DOM_IS_EVENT_TARGET(target));
72 WebKitDOMEventTargetIface* iface = WEBKIT_DOM_EVENT_TARGET_GET_IFACE(target);
75 iface->dispatch_event(target, event, error);
78 gboolean webkit_dom_event_target_add_event_listener(WebKitDOMEventTarget* target, const char* eventName, GCallback handler, gboolean bubble, gpointer userData) argument
81 g_return_val_if_fail(WEBKIT_DOM_IS_EVENT_TARGET(target), FALSE);
84 WebKitDOMEventTargetIface* iface = WEBKIT_DOM_EVENT_TARGET_GET_IFACE(target);
87 return iface->add_event_listener(target, eventName, handler, bubble, userData);
92 gboolean webkit_dom_event_target_remove_event_listener(WebKitDOMEventTarget* target, const char* eventName, GCallback handler, gboolean bubble) argument
94 g_return_val_if_fail(WEBKIT_DOM_IS_EVENT_TARGET(target), FALS
[all...]
/external/v8/src/
H A Dsimulator.h40 #error Unsupported target architecture.
/external/webkit/Source/WebCore/bindings/js/
H A DJSEventTarget.cpp107 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, EventTarget* target) argument
109 if (!target)
113 if (EventSource* eventSource = target->toEventSource())
119 if (SVGElementInstance* instance = target->toSVGElementInstance())
123 if (Node* node = target->toNode())
126 if (DOMWindow* domWindow = target->toDOMWindow())
129 if (XMLHttpRequest* xhr = target->toXMLHttpRequest())
132 if (XMLHttpRequestUpload* upload = target->toXMLHttpRequestUpload())
136 if (DOMApplicationCache* cache = target->toDOMApplicationCache())
140 if (MessagePort* messagePort = target
[all...]
/external/skia/src/animator/
H A DSkHitClear.cpp32 SkDisplayable* target = targets[tIndex]; local
33 target->clearBounder();
/external/webkit/Source/WebCore/html/
H A DHTMLBaseElement.idl24 attribute [Reflect] DOMString target;
/external/webkit/Source/WebCore/svg/
H A DSVGAElement.idl35 readonly attribute SVGAnimatedString target;

Completed in 601 milliseconds

1234567891011>>