Searched defs:target (Results 1 - 25 of 880) sorted by relevance

1234567891011>>

/external/clang/test/CXX/except/except.spec/
H A Dp9-dynamic.cpp5 void target() throw(int) function
/external/icu4c/i18n/
H A Danytrans.h24 * A transliterator named Any-T or Any-T/V, where T is the target
27 * The target must be a script. It partitions text into runs of the
29 * transliterates from that script to the given target or
30 * target/variant. Adjacent COMMON or INHERITED script characters are
43 * The target or target/variant string.
45 UnicodeString target; member in class:AnyTransliterator
48 * The target script code. Never USCRIPT_INVALID_CODE.
91 * @param theTarget the target name. Must not be empty, and must
107 * Returns a transliterator from the given source to our target o
[all...]
/external/webkit/LayoutTests/fast/events/touch/script-tests/
H A Ddocument-create-touch.js11 var target = document.getElementById("box"); variable
12 var touch = document.createTouch(window, target, 1, 100, 101, 102, 103);
14 shouldBe("touch.target", "box");
23 shouldBeNull("emptyTouch.target");
33 shouldBeNull("badParamsTouch.target");
/external/skia/src/animator/
H A DSkHitClear.cpp24 SkDisplayable* target = targets[tIndex]; local
25 target->clearBounder();
/external/valgrind/main/none/tests/s390x/
H A Dex_sig.c12 char target[40] = " \0"; variable
28 printf("%s\n", target);
43 ::"a" (target), "a" (source)
H A Dex_clone.c11 char target[40] = " \0"; variable
55 ::"a" (target), "a" (source)
58 printf("%s\n", target);
H A Dmvst.c14 char target[512]; variable
40 printf("CC:%d\n", mvst(target, buffer));
41 printf("%s\n", target);
42 printf("CC:%d\n",mvst_full(target, bigbuf));
43 printf("%s\n", target);
/external/webkit/Source/WebCore/dom/
H A DEventContext.cpp37 EventContext::EventContext(PassRefPtr<Node> node, PassRefPtr<EventTarget> currentTarget, PassRefPtr<EventTarget> target) argument
40 , m_target(target)
H A DEventContext.h41 EventContext(PassRefPtr<Node>, PassRefPtr<EventTarget> currentTarget, PassRefPtr<EventTarget> target);
44 EventTarget* target() const;
58 inline EventTarget* EventContext::target() const function in class:WebCore::EventContext
H A DWindowEventContext.h45 EventTarget* target() const;
58 inline EventTarget* WindowEventContext::target() const function in class:WebCore::WindowEventContext
/external/webkit/Source/WebCore/svg/
H A DSVGAElement.h49 virtual String target() const { return svgTarget(); } function in class:WebCore::SVGAElement
71 // This declaration used to define a non-virtual "String& target() const" method, that clashes with "virtual String Element::target() const".
/external/apache-http/src/org/apache/http/client/
H A DRequestDirector.java73 * @param target the target host for the request.
76 * to a default target or by inspecting the request.
87 HttpResponse execute(HttpHost target, HttpRequest request, argument
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/ui/cocoa/bookmarks/
H A Dbookmark_tree_browser_cell.h14 // browser view. This cell customization adds target and action support
27 @property(nonatomic, assign) id target; variable
/external/guava/guava/src/com/google/common/eventbus/
H A DSynchronizedEventHandler.java34 * {@code target}.
36 * @param target object to which the method applies.
39 public SynchronizedEventHandler(Object target, Method method) { argument
40 super(target, method);
/external/icu4c/i18n/unicode/
H A Dbmsearch.h41 * string and the target string. Then you call the <code>search</code> method. Here's a code sample:
44 * void boyerMooreExample(UCollator *collator, UnicodeString *pattern, UnicodeString *target)
54 * BoyerMooreSearch *search = new BoyerMooreSearch(collData, *patternString, target, status);
144 * Search for the pattern string in the target string.
146 * @param offset - the offset in the target string at which to begin the search
157 * Set the target string for the match.
159 * @param targetString - the new target string
220 Target *target; member in class:BoyerMooreSearch
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/
H A DShadowCamera.java48 private Light target; field in class:ShadowCamera
50 public ShadowCamera(Light target) { argument
51 this.target = target;
61 if (target.getType() == Light.Type.Directional) {
62 DirectionalLight dl = (DirectionalLight) target;
68 PointLight pl = (PointLight) target;
/external/junit/src/org/junit/rules/
H A DMethodRule.java35 * @param target The object on with the method will be run.
39 Statement apply(Statement base, FrameworkMethod method, Object target); argument
/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/skia/src/gpu/
H A DGrTBSearch.h15 int GrTBSearch(const ELEM array[], int count, KEY target) { argument
26 if (LT(array[index], target)) {
34 if (EQ(array[high], target)) {
39 if (LT(array[high], target)) {
/external/srec/srec/include/
H A Dchannorm.h39 int target[MAX_CHAN_DIM]; /* Values located in the .TMN file */ member in struct:__anon12400
/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/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/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DTransition.java34 * transitions) and has a label/target pair. I have abstracted the notion
38 /** What label must be consumed to transition to target */
41 /** The target of this transition */
42 public State target; field in class:Transition
44 public Transition(Label label, State target) { argument
46 this.target = target;
49 public Transition(int label, State target) { argument
51 this.target = target;
[all...]

Completed in 793 milliseconds

1234567891011>>