HomeSort by relevance Sort by last modified time
    Searched refs:target (Results 126 - 150 of 2827) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/LayoutTests/fast/events/touch/resources/
touch-stale-node-crash.js 5 var target = e.touches[0].target;
6 document.body.removeChild(target);
  /external/webkit/Source/WebCore/bindings/gobject/
GObjectEventListener.h 36 static bool addEventListener(GObject* object, EventTarget* target, const char* domEventName, GCallback handler, bool useCapture, void* userData)
38 RefPtr<GObjectEventListener> listener(adoptRef(new GObjectEventListener(object, target, domEventName, handler, useCapture, userData)));
39 return target->addEventListener(domEventName, listener.release(), useCapture);
42 static bool removeEventListener(GObject* object, EventTarget* target, const char* domEventName, GCallback handler, bool useCapture)
44 GObjectEventListener key(object, target, domEventName, handler, useCapture, 0);
45 return target->removeEventListener(domEventName, &key, useCapture);
WebKitDOMEventTarget.h 40 void (* dispatch_event)(WebKitDOMEventTarget *target,
44 gboolean (* add_event_listener)(WebKitDOMEventTarget *target,
49 gboolean (* remove_event_listener)(WebKitDOMEventTarget *target,
58 WEBKIT_API void webkit_dom_event_target_dispatch_event(WebKitDOMEventTarget *target,
62 WEBKIT_API gboolean webkit_dom_event_target_add_event_listener(WebKitDOMEventTarget *target,
68 WEBKIT_API gboolean webkit_dom_event_target_remove_event_listener(WebKitDOMEventTarget *target,
  /external/icu4c/common/
ucnv_u7.c 209 UChar *target; local
233 target=pArgs->target;
262 targetCapacity=(int32_t)(targetLimit-target);
276 *target++=b;
291 if(source<sourceLimit && target>=targetLimit) {
292 /* target is full */
308 if(target<targetLimit) {
371 *target++=(UChar)((bits<<4)|(base64Value>>2));
382 *target++=(UChar)((bits<<2)|(base64Value>>4))
460 uint8_t *target, *targetLimit; local
890 UChar *target; local
1158 uint8_t *target, *targetLimit; local
    [all...]
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 26 * This subclass of {@link ValueAnimator} provides support for animating properties on target objects.
27 * The constructors of this class take parameters to define the target object that will be animated
45 // The target object on which the property exists, set in the constructor
56 * in a call to the function <code>setFoo()</code> on the target object. If either
89 // New property/values/target should cause re-initialization prior to starting
114 // New property/values/target should cause re-initialization prior to starting
122 * in a call to the function <code>setFoo()</code> on the target object. If either
139 * Private utility constructor that initializes the target object and name of the
142 * @param target The object whose property is to be animated. This object should
147 private ObjectAnimator(Object target, String propertyName)
    [all...]
  /bootable/recovery/applypatch/
imgdiff_test.sh 70 run_command rm $WORK_DIR/target
85 unzip -p $END_OTA_PACKAGE $fn > $tmpdir/target
86 imgdiff "$@" $tmpdir/source $tmpdir/target $tmpdir/patch
87 bsdiff $tmpdir/source $tmpdir/target $tmpdir/patch.bs
88 echo "patch for $fn is $(size $tmpdir/patch) [of $(size $tmpdir/target)] ($(size $tmpdir/patch.bs) with bsdiff)"
89 echo "$fn $(size $tmpdir/patch) of $(size $tmpdir/target) bsdiff $(size $tmpdir/patch.bs)" >> /tmp/stats.txt
91 run_command rm /data/local/tmp/target
94 /data/local/tmp/target $(sha1 $tmpdir/target) $(size $tmpdir/target) \
    [all...]
  /external/icu4c/samples/numfmt/
util.cpp 31 // Append a hex string to the target
34 UnicodeString& target) {
38 target += (UChar)(digit < 10 ? 0x30 + digit : 0x41 - 10 + digit);
40 return target;
46 UnicodeString target; local
47 target += (UChar)U_DQUOTE;
51 (target += (UChar)U_BACKSLASH) += (UChar)U_SMALL_U;
52 appendHex(ch, 4, target);
54 target += ch;
57 target += (UChar)U_DQUOTE
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
MemoryHandler.java 28 * Every {@code MemoryHandler} has a target handler, and push action can be
29 * triggered so that all buffered records will be output to the target handler
50 * <li>java.util.logging.MemoryHandler.target specifies the class of the target
60 // target handler
61 private Handler target; field in class:MemoryHandler
88 // init target
89 final String targetName = manager.getProperty(className + ".target");
96 target = (Handler) targetClass.newInstance();
98 throw new RuntimeException("Cannot load target handler '" + targetName + "'")
    [all...]
  /external/freetype/src/base/
ftbitmap.c 43 FT_Bitmap *target)
51 if ( source == target )
56 *target = *source;
65 if ( target->buffer )
67 FT_Int target_pitch = target->pitch;
73 target_size = (FT_ULong)( target_pitch * target->rows );
76 (void)FT_QREALLOC( target->buffer, target_size, size );
79 (void)FT_QALLOC( target->buffer, size );
86 p = target->buffer;
87 *target = *source
    [all...]
  /external/iptables/extensions/
libxt_NFQUEUE.c 23 "NFQUEUE target options\n"
59 xtables_error(PARAMETER_PROBLEM, "NFQUEUE target: "
96 const struct xt_entry_target *target, int numeric)
99 (const struct xt_NFQ_info *)target->data;
104 const struct xt_entry_target *target, int numeric)
106 const struct xt_NFQ_info_v1 *tinfo = (const void *)target->data;
118 const struct xt_entry_target *target, int numeric)
120 const struct xt_NFQ_info_v2 *info = (void *) target->data;
122 NFQUEUE_print_v1(ip, target, numeric);
127 static void NFQUEUE_save(const void *ip, const struct xt_entry_target *target)
    [all...]
  /external/jpeg/
jutils.c 107 #define FMEMZERO(target,size) MEMZERO(target,size)
111 #define FMEMZERO(target,size) _fmemset((void FAR *)(target), 0, (size_t)(size))
171 jzero_far (void FAR * target, size_t bytestozero)
176 FMEMZERO(target, bytestozero);
178 register char FAR * ptr = (char FAR *) target;
  /external/qemu/distrib/jpeg-6b/
jutils.c 107 #define FMEMZERO(target,size) MEMZERO(target,size)
111 #define FMEMZERO(target,size) _fmemset((void FAR *)(target), 0, (size_t)(size))
171 jzero_far (void FAR * target, size_t bytestozero)
176 FMEMZERO(target, bytestozero);
178 register char FAR * ptr = (char FAR *) target;
  /external/webkit/Source/WebCore/html/canvas/
WebGLTexture.h 43 void setTarget(GC3Denum target, GC3Dint maxLevel);
51 void setLevelInfo(GC3Denum target, GC3Dint level, GC3Denum internalFormat, GC3Dsizei width, GC3Dsizei height, GC3Denum type);
57 GC3Denum getInternalFormat(GC3Denum target, GC3Dint level) const;
58 GC3Denum getType(GC3Denum target, GC3Dint level) const;
59 GC3Dsizei getWidth(GC3Denum target, GC3Dint level) const;
60 GC3Dsizei getHeight(GC3Denum target, GC3Dint level) const;
112 const LevelInfo* getLevelInfo(GC3Denum target, GC3Dint level) const;
  /external/javassist/src/main/javassist/bytecode/
CodeAnalyzer.java 104 int target = index + ci.s16bitAt(index + 1); local
105 checkTarget(index, target, codeLength, stack, stackDepth);
108 int target, index2; local
111 target = index + ci.s16bitAt(index + 1);
112 checkTarget(index, target, codeLength, stack, stackDepth);
115 target = index + ci.s32bitAt(index + 1);
116 checkTarget(index, target, codeLength, stack, stackDepth);
121 target = index + ci.s16bitAt(index + 1);
123 target = index + ci.s32bitAt(index + 1);
125 checkTarget(index, target, codeLength, stack, stackDepth)
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL11ExtensionPack.java 111 int target,
116 int target,
121 int target,
142 int target
146 int target,
157 int target,
194 int target,
201 int target,
209 int target
235 int target,
    [all...]
  /external/icu4c/test/intltest/
tscoll.cpp 108 IntlTestCollator::compareUsingPartials(UCollator *coll, const UChar source[], int32_t sLen, const UChar target[], int32_t tLen, int32_t pieceSize, UErrorCode &status) {
120 uiter_setString(&tIter, target, tLen);
142 IntlTestCollator::doTestVariant(Collator* col, const UnicodeString &source, const UnicodeString &target, Collator::EComparisonResult result)
148 Collator::EComparisonResult compareResult = col->compare(source, target);
152 col->getCollationKey(target, tgtkey, status);
158 reportCResult(source, target, srckey, tgtkey, compareResult, keyResult, result, result);
162 int32_t sLen = source.length(), tLen = target.length();
164 const UChar* trg = target.getBuffer();
173 errln("Different result for iterative comparison "+source+" "+target);
188 /*log_verbose("Strings converted to UTF-8:%s, %s\n", aescstrdup(source,-1), aescstrdup(target,-1));*
    [all...]
  /external/libxslt/libxslt/
namespaces.c 170 * Same alias for multiple different target namespace URIs:
179 * Same target namespace URI for multiple different aliases:
321 * @target: the result element on which to anchor a namespace
339 xmlNodePtr target)
344 if ((ctxt == NULL) || (target == NULL) ||
345 (target->type != XML_ELEMENT_NODE))
376 if (target->nsDef != NULL) {
377 ns = target->nsDef;
388 "'%s'.\n", ns->href, target->name);
402 if ((target->parent != NULL) &
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
SparseSwitchMethodItem.java 56 SparseSwitchDataPseudoInstruction.SparseSwitchTarget target = iterator.next(); local
58 sparseSwitchLabelTarget.Key = target.key;
60 LabelMethodItem label = new LabelMethodItem(baseCodeAddress + target.targetAddressOffset, "sswitch_");
62 sparseSwitchLabelTarget.Target = label;
69 SparseSwitchDataPseudoInstruction.SparseSwitchTarget target = iterator.next(); local
71 sparseSwitchOffsetTarget.Key = target.key;
73 sparseSwitchOffsetTarget.Target = target.targetAddressOffset;
83 for (SparseSwitchTarget target: targets) {
84 IntegerRenderer.writeTo(writer, target.Key)
    [all...]
  /external/valgrind/main/auxprogs/
gen-mdg 143 my $target;
147 # the target module is "m_foo".
150 $target = "m_$2";
154 if ($hide{$target}) {
155 $target = "";
159 # Otherwise use the #include string as-is for the target.
163 $target = clean_nodename($include_string);
168 $target = "";
173 if ($target ne "" and $target ne $module)
    [all...]
  /external/webkit/Source/WebCore/bindings/generic/
BindingSecurity.h 52 // Check if the active execution context can access the target frame.
57 static bool checkNodeSecurity(State<Binding>*, Node* target);
69 // Check if the current DOMWindow's security context can access the target
72 static bool canAccessWindow(State<Binding>*, DOMWindow* target);
87 Frame* target,
91 if (!target)
94 if (!canAccessWindow(state, getDOMWindow(target))) {
96 state->immediatelyReportUnsafeAccessTo(target);
108 Frame* target = getFrame(node);
110 if (!target)
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultHttpRoutePlanner.java 78 public HttpRoute determineRoute(HttpHost target,
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) {
99 ("Target host must not be 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/chromium/chrome/common/extensions/docs/examples/extensions/fx/
content.js 39 function listenAndCoalesce(target, type, validator) {
40 target.addEventListener(type, function(event) {
59 return event.target.tagName == "TEXTAREA" ||
60 event.target.tagName == "INPUT" ||
61 event.target.isContentEditable;
  /external/icu4c/tools/genrb/
ustr.h 23 #define U_APPEND_CHAR32(c,target,len) { \
26 *(target)++ = (UChar) c; \
31 target[0] = U16_LEAD(c); \
32 target[1] = U16_TRAIL(c); \
34 target +=2; \
  /external/replicaisland/src/com/replica/replicaisland/
Interpolator.java 20 * Helper class for interpolating velocity over time given a target velocity and acceleration.
21 * The current velocity will be accelerated towards the target until the target is reached.
23 * the target velocity.
52 public void set(float current, float target, float acceleration) {
54 mTarget = target;
63 // point the acceleration at the target, or zero it if we are already
77 // check to see if we've passed our target velocity since the last time
78 // step. If so, clamp to the target
105 // in this system, acceleration always points toward target velocit
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldByteArrayOutputStreamTest.java 68 byte[] target = new byte[10];
71 bos.write(target, -1, 1);
77 bos.write(target, 0, -1);
83 bos.write(target, 1, target.length);

Completed in 835 milliseconds

1 2 3 4 56 7 8 91011>>