Searched refs:target (Results 1 - 25 of 1714) 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/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...]
/external/valgrind/main/none/tests/s390x/
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);
H A Dex_sig.c12 char target[40] = " \0"; variable
28 printf("%s\n", target);
43 ::"a" (target), "a" (source)
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DTargetInsn.java23 * Instruction which has a single branch target.
26 /** {@code non-null;} the branch target */
27 private CodeAddress target; field in class:TargetInsn
31 * unknown ({@code -1}), and the target is initially
39 * @param target {@code non-null;} the branch target
42 RegisterSpecList registers, CodeAddress target) {
45 if (target == null) {
46 throw new NullPointerException("target == null");
49 this.target
41 TargetInsn(Dop opcode, SourcePosition position, RegisterSpecList registers, CodeAddress target) argument
74 withNewTargetAndReversed(CodeAddress target) argument
[all...]
/external/guava/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/valgrind/main/coregrind/m_gdbserver/
H A Dvalgrind_low.h29 /* defines the characteristics of the "low" valgrind target architecture.
84 extern void x86_init_architecture (struct valgrind_target_ops *target);
85 extern void amd64_init_architecture (struct valgrind_target_ops *target);
86 extern void arm_init_architecture (struct valgrind_target_ops *target);
87 extern void ppc32_init_architecture (struct valgrind_target_ops *target);
88 extern void ppc64_init_architecture (struct valgrind_target_ops *target);
89 extern void s390x_init_architecture (struct valgrind_target_ops *target);
/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/chromium-trace/src/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/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/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/openssh/openbsd-compat/
H A Dbase64.c134 b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) argument
154 target[datalength++] = Base64[output[0]];
155 target[datalength++] = Base64[output[1]];
156 target[datalength++] = Base64[output[2]];
157 target[datalength++] = Base64[output[3]];
173 target[datalength++] = Base64[output[0]];
174 target[datalength++] = Base64[output[1]];
176 target[datalength++] = Pad64;
178 target[datalength++] = Base64[output[2]];
179 target[datalengt
197 b64_pton(char const *src, u_char *target, size_t targsize) argument
[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...]

Completed in 465 milliseconds

1234567891011>>