Searched defs:target (Results 1 - 25 of 690) 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/v8/src/mips/
H A Dregister-allocator-mips.cc46 void Result::ToRegister(Register target) { argument
/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/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/skia/src/animator/
H A DSkHitClear.cpp32 SkDisplayable* target = targets[tIndex]; local
33 target->clearBounder();
/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/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/llvm/tools/llvm-ld/
H A DOptimize.cpp103 std::auto_ptr<TargetMachine> target; local
/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/srec/srec/include/
H A Dchannorm.h39 int target[MAX_CHAN_DIM]; /* Values located in the .TMN file */ member in struct:__anon9844
/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/apache-http/src/org/apache/http/conn/
H A DClientConnectionOperator.java76 * Opens a connection to the given target host.
79 * @param target the target host to connect to
88 HttpHost target,
102 * @param target the target host for the updated connection.
104 * to the host and port, but the scheme of the target
112 HttpHost target,
87 openConnection(OperatedClientConnection conn, HttpHost target, InetAddress local, HttpContext context, HttpParams params) argument
111 updateSecureConnection(OperatedClientConnection conn, HttpHost target, HttpContext context, HttpParams params) argument
H A DOperatedClientConnection.java61 * Obtains the target host for this connection.
64 * this is the target of the tunnel.
94 * {@link #getTargetHost target host}
123 * @param target the target host of this connection
125 void opening(Socket sock, HttpHost target) argument
158 * @param sock the new socket for communicating with the target host,
163 * @param target the new target host of this connection
168 void update(Socket sock, HttpHost target, argument
[all...]
/external/apache-http/src/org/apache/http/impl/conn/
H A DDefaultHttpRoutePlanner.java78 public HttpRoute determineRoute(HttpHost target, argument
88 // If we have a forced route, we can do without a target.
95 // So we need a target to compute a route.
97 if (target == null) {
107 final Scheme schm = schemeRegistry.getScheme(target.getSchemeName());
113 route = new HttpRoute(target, local, secure);
115 route = new HttpRoute(target, local, proxy, secure);
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorKey.java84 * @param target The target element where the properties will be set.
88 org.apache.xalan.templates.ElemTemplateElement target)
126 target);
142 attrDef.setDefAttrValue(handler, target);
86 setPropertiesFromAttributes( StylesheetHandler handler, String rawName, Attributes attributes, org.apache.xalan.templates.ElemTemplateElement target) argument

Completed in 1795 milliseconds

1234567891011>>