Home
last modified time | relevance | path

Searched refs:target (Results 1 – 25 of 3227) sorted by relevance

12345678910>>...130

/external/webkit/LayoutTests/storage/indexeddb/
Dindex-cursor-expected.txt7 db = event.target.result
9 trans = event.target.result
26 PASS event.target.result.primaryKey is expectedIndex
27 PASS event.target.result.key is testData[2]
28 PASS event.target.result.primaryKey is expectedIndex
29 PASS event.target.result.key is testData[3]
30 PASS event.target.result.primaryKey is expectedIndex
31 PASS event.target.result.key is testData[4]
32 PASS event.target.result.primaryKey is expectedIndex
33 PASS event.target.result.key is testData[5]
[all …]
Dobjectstore-cursor-expected.txt7 db = event.target.result
9 trans = event.target.result
24 PASS event.target.result.key is testData[1]
25 PASS event.target.result.key is testData[2]
26 PASS event.target.result.key is testData[3]
27 PASS event.target.result.key is testData[4]
28 PASS event.target.result.key is testData[5]
29 PASS event.target.result.key is testData[6]
30 PASS event.target.result is null
33 PASS event.target.result.key is testData[0]
[all …]
Dcursor-update-expected.txt7 db = event.target.result
10 trans = event.target.result
34 PASS event.target.source is objectStore
35 event.target.result.update('myUpdatedValue' + counter++)
36 event.target.source.continue()
38 PASS event.target.source is objectStore
39 event.target.result.update('myUpdatedValue' + counter++)
40 event.target.source.continue()
42 PASS event.target.source is objectStore
43 event.target.result.update('myUpdatedValue' + counter++)
[all …]
Dduplicates-expected.txt7 db = event.target.result
10 trans = event.target.result
16 event.target.source.add({x: 'value2', y: 'zzz2'}, 'key2')
18 PASS event.target.result is "key"
20 PASS event.target.result.x is "value"
21 PASS event.target.result.y is "zzz"
23 PASS event.target.errorCode is webkitIDBDatabaseException.NOT_FOUND_ERR
26 PASS event.target.errorCode is webkitIDBDatabaseException.NOT_FOUND_ERR
29 PASS event.target.result === null is false
30 PASS event.target.result.key is "value"
[all …]
Dcursor-continue-expected.txt7 db = event.target.result
9 trans = event.target.result
34 PASS event.target.result.primaryKey is 0
35 event.target.result.continue(3.14159)
36 PASS event.target.result.primaryKey is 3
37 event.target.result.continue(3.14159)
38 PASS event.target.result.primaryKey is 4
39 event.target.result.continue(3.14159)
40 PASS event.target.result.primaryKey is 5
41 event.target.result.continue(12)
[all …]
Dindex-basics-expected.txt7 db = event.target.result
10 trans = event.target.result
30 event.target.source.add({x: 'value2', y: 'zzz2', z: 2.71, foobar: 12}, 'key2')
34 PASS event.target.result is "key"
36 PASS event.target.result is "key"
38 PASS event.target.result.x is "value2"
40 PASS event.target.result.x is "value"
41 PASS event.target.result.y is "zzz"
43 PASS event.target.errorCode is webkitIDBDatabaseException.NOT_FOUND_ERR
46 PASS event.target.errorCode is webkitIDBDatabaseException.NOT_FOUND_ERR
[all …]
Dcursor-delete-expected.txt7 db = event.target.result
10 trans = event.target.result
21 event.target.result.delete()
22 PASS event.target.result.value is "myValue1"
23 event.target.result.continue()
24 event.target.result.delete()
25 PASS event.target.result.value is "myValue2"
26 event.target.result.continue()
27 event.target.result.delete()
28 PASS event.target.result.value is "myValue3"
[all …]
Dcursor-index-delete-expected.txt7 db = event.target.result
10 trans = event.target.result
22 event.target.result.delete()
23 PASS event.target.result.key is counter++
24 event.target.result.continue()
25 event.target.result.delete()
26 PASS event.target.result.key is counter++
27 event.target.result.continue()
28 event.target.result.delete()
29 PASS event.target.result.key is counter++
[all …]
/external/icu4c/common/
Ducnvlat1.c34 UChar *target; in _Latin1ToUnicodeWithOffsets() local
42 target=pArgs->target; in _Latin1ToUnicodeWithOffsets()
43 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Latin1ToUnicodeWithOffsets()
68 target[0]=source[0]; in _Latin1ToUnicodeWithOffsets()
69 target[1]=source[1]; in _Latin1ToUnicodeWithOffsets()
70 target[2]=source[2]; in _Latin1ToUnicodeWithOffsets()
71 target[3]=source[3]; in _Latin1ToUnicodeWithOffsets()
72 target[4]=source[4]; in _Latin1ToUnicodeWithOffsets()
73 target[5]=source[5]; in _Latin1ToUnicodeWithOffsets()
74 target[6]=source[6]; in _Latin1ToUnicodeWithOffsets()
[all …]
Ducnv_u7.c209 UChar *target; in _UTF7ToUnicodeWithOffsets() local
233 target=pArgs->target; in _UTF7ToUnicodeWithOffsets()
262 targetCapacity=(int32_t)(targetLimit-target); in _UTF7ToUnicodeWithOffsets()
276 *target++=b; in _UTF7ToUnicodeWithOffsets()
291 if(source<sourceLimit && target>=targetLimit) { in _UTF7ToUnicodeWithOffsets()
308 if(target<targetLimit) { in _UTF7ToUnicodeWithOffsets()
332 *target++=(UChar)((bits<<4)|(base64Value>>2)); in _UTF7ToUnicodeWithOffsets()
343 *target++=(UChar)((bits<<2)|(base64Value>>4)); in _UTF7ToUnicodeWithOffsets()
354 *target++=(UChar)((bits<<6)|base64Value); in _UTF7ToUnicodeWithOffsets()
372 *target++=PLUS; in _UTF7ToUnicodeWithOffsets()
[all …]
Ducnv_u16.c52 char *target; in _UTF16BEFromUnicodeWithOffsets() local
73 &pArgs->target, pArgs->targetLimit, in _UTF16BEFromUnicodeWithOffsets()
79 target=pArgs->target; in _UTF16BEFromUnicodeWithOffsets()
80 if(target >= pArgs->targetLimit) { in _UTF16BEFromUnicodeWithOffsets()
85 targetCapacity=(uint32_t)(pArgs->targetLimit-target); in _UTF16BEFromUnicodeWithOffsets()
95 target[0]=(uint8_t)(c>>8); in _UTF16BEFromUnicodeWithOffsets()
96 target[1]=(uint8_t)c; in _UTF16BEFromUnicodeWithOffsets()
97 target[2]=(uint8_t)(trail>>8); in _UTF16BEFromUnicodeWithOffsets()
98 target[3]=(uint8_t)trail; in _UTF16BEFromUnicodeWithOffsets()
99 target+=4; in _UTF16BEFromUnicodeWithOffsets()
[all …]
Ducnvbocu.c389 uint8_t *target; in _Bocu1FromUnicodeWithOffsets() local
403 target=(uint8_t *)pArgs->target; in _Bocu1FromUnicodeWithOffsets()
404 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicodeWithOffsets()
435 *target++=(uint8_t)c; in _Bocu1FromUnicodeWithOffsets()
443 *target++=(uint8_t)PACK_SINGLE_DIFF(diff); in _Bocu1FromUnicodeWithOffsets()
453 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicodeWithOffsets()
471 *target++=(uint8_t)c; in _Bocu1FromUnicodeWithOffsets()
508 *target++=(uint8_t)PACK_SINGLE_DIFF(diff); in _Bocu1FromUnicodeWithOffsets()
529 *target++=(uint8_t)diff; in _Bocu1FromUnicodeWithOffsets()
530 *target++=(uint8_t)BOCU1_TRAIL_TO_BYTE(m); in _Bocu1FromUnicodeWithOffsets()
[all …]
/external/protobuf/src/google/protobuf/
Dwire_format_lite_inl.h485 uint8* target) { in WriteTagToArray() argument
487 target); in WriteTagToArray()
491 uint8* target) { in WriteInt32NoTagToArray() argument
492 return io::CodedOutputStream::WriteVarint32SignExtendedToArray(value, target); in WriteInt32NoTagToArray()
495 uint8* target) { in WriteInt64NoTagToArray() argument
497 static_cast<uint64>(value), target); in WriteInt64NoTagToArray()
500 uint8* target) { in WriteUInt32NoTagToArray() argument
501 return io::CodedOutputStream::WriteVarint32ToArray(value, target); in WriteUInt32NoTagToArray()
504 uint8* target) { in WriteUInt64NoTagToArray() argument
505 return io::CodedOutputStream::WriteVarint64ToArray(value, target); in WriteUInt64NoTagToArray()
[all …]
/external/clang/lib/Basic/
DConvertUTF.c123 UTF16* target = *targetStart; in ConvertUTF32toUTF16() local
126 if (target >= targetEnd) { in ConvertUTF32toUTF16()
138 *target++ = UNI_REPLACEMENT_CHAR; in ConvertUTF32toUTF16()
141 *target++ = (UTF16)ch; /* normal case */ in ConvertUTF32toUTF16()
147 *target++ = UNI_REPLACEMENT_CHAR; in ConvertUTF32toUTF16()
151 if (target + 1 >= targetEnd) { in ConvertUTF32toUTF16()
156 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START); in ConvertUTF32toUTF16()
157 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START); in ConvertUTF32toUTF16()
161 *targetStart = target; in ConvertUTF32toUTF16()
172 UTF32* target = *targetStart; in ConvertUTF16toUTF32() local
[all …]
/external/chromium/sdch/open-vcdiff/src/
Dvcdiff_test.sh48 -dictionary $DICTIONARY_FILE -target $TARGET_FILE -delta $DELTA_FILE \
56 -target $TARGET_FILE \
62 -target $OUTPUT_TARGET_FILE \
96 -target $TARGET_FILE \
121 -target $OUTPUT_TARGET_FILE; } \
137 -target $OUTPUT_TARGET_FILE \
148 -target $TARGET_FILE \
159 -target $TARGET_FILE \
168 -target $TEST_TMPDIR/nonexistent_file \
177 -target $OUTPUT_TARGET_FILE \
[all …]
/external/webkit/Source/WebCore/bindings/js/
DJSEventTarget.cpp107 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, EventTarget* target) in toJS() argument
109 if (!target) in toJS()
113 if (EventSource* eventSource = target->toEventSource()) in toJS()
119 if (SVGElementInstance* instance = target->toSVGElementInstance()) in toJS()
123 if (Node* node = target->toNode()) in toJS()
126 if (DOMWindow* domWindow = target->toDOMWindow()) in toJS()
129 if (XMLHttpRequest* xhr = target->toXMLHttpRequest()) in toJS()
132 if (XMLHttpRequestUpload* upload = target->toXMLHttpRequestUpload()) in toJS()
136 if (DOMApplicationCache* cache = target->toDOMApplicationCache()) in toJS()
140 if (MessagePort* messagePort = target->toMessagePort()) in toJS()
[all …]
/external/skia/gpu/src/
DGrContext.cpp457 bool GrContext::doOffscreenAA(GrDrawTarget* target, in doOffscreenAA() argument
469 if (target->getRenderTarget()->isMultisampled()) { in doOffscreenAA()
486 bool GrContext::setupOffscreenAAPass1(GrDrawTarget* target, in setupOffscreenAAPass1() argument
546 target->saveCurrentDrawState(&record->fSavedState); in setupOffscreenAAPass1()
550 SetPaint(tempPaint, target); in setupOffscreenAAPass1()
551 target->setRenderTarget(offRT0); in setupOffscreenAAPass1()
555 target->postConcatViewMatrix(transM); in setupOffscreenAAPass1()
558 target->postConcatViewMatrix(scaleM); in setupOffscreenAAPass1()
561 target->disableState(GrDrawTarget::kClip_StateBit); in setupOffscreenAAPass1()
564 target->clear(&clear, 0x0); in setupOffscreenAAPass1()
[all …]
/external/guava/src/com/google/common/io/
DAppendableWriter.java34 private final Appendable target; field in AppendableWriter
42 AppendableWriter(Appendable target) { in AppendableWriter() argument
43 this.target = target; in AppendableWriter()
55 target.append(new String(cbuf, off, len)); in write()
60 if (target instanceof Flushable) { in flush()
61 ((Flushable) target).flush(); in flush()
67 if (target instanceof Closeable) { in close()
68 ((Closeable) target).close(); in close()
79 target.append((char) c); in write()
84 target.append(str); in write()
[all …]
/external/webkit/LayoutTests/fast/events/touch/
Dtouch-target-limited-expected.txt1target of touches match the element where the event originated, not where the touch is currently o…
8 PASS event.touches[0].target.id is "targetA"
9 PASS event.touches[1].target.id is "targetB"
12 PASS event.touches[0].target.id is "targetA"
13 PASS event.touches[1].target.id is "targetB"
16 PASS event.touches[0].target.id is "targetA"
17 PASS event.touches[1].target.id is "targetB"
20 PASS event.touches[0].target.id is "targetA"
21 PASS event.touches[1].target.id is "targetB"
24 PASS event.touches[0].target.id is "targetA"
[all …]
Dtouch-target-expected.txt1 Tests that the target of touches match the element where the event originated, not where the touch …
8 PASS event.touches[0].target.id is "targetA"
9 PASS event.touches[1].target.id is "targetB"
12 PASS event.touches[0].target.id is "targetA"
13 PASS event.touches[1].target.id is "targetB"
16 PASS event.touches[0].target.id is "targetA"
17 PASS event.touches[1].target.id is "targetB"
20 PASS event.touches[0].target.id is "targetA"
21 PASS event.touches[1].target.id is "targetB"
24 PASS event.touches[0].target.id is "targetA"
[all …]
/external/protobuf/src/google/protobuf/io/
Dcoded_stream.h618 static uint8* WriteRawToArray(const void* buffer, int size, uint8* target);
623 static uint8* WriteStringToArray(const string& str, uint8* target);
629 static uint8* WriteLittleEndian32ToArray(uint32 value, uint8* target);
633 static uint8* WriteLittleEndian64ToArray(uint64 value, uint8* target);
640 static uint8* WriteVarint32ToArray(uint32 value, uint8* target);
644 static uint8* WriteVarint64ToArray(uint64 value, uint8* target);
650 static uint8* WriteVarint32SignExtendedToArray(int32 value, uint8* target);
660 uint32 value, uint8* target) GOOGLE_ATTRIBUTE_ALWAYS_INLINE;
693 static uint8* WriteVarint32FallbackToArray(uint32 value, uint8* target);
703 uint32 value, uint8* target) GOOGLE_ATTRIBUTE_ALWAYS_INLINE;
[all …]
/external/chromium/chrome/browser/sync/engine/
Dsyncer_util.cc381 MutableEntry* target, in UpdateServerFieldsFromUpdate() argument
385 if (target->Get(SERVER_IS_DEL)) { in UpdateServerFieldsFromUpdate()
394 target->Put(SERVER_IS_DEL, true); in UpdateServerFieldsFromUpdate()
395 if (!target->Get(UNIQUE_CLIENT_TAG).empty()) { in UpdateServerFieldsFromUpdate()
398 target->Put(SERVER_VERSION, 0); in UpdateServerFieldsFromUpdate()
401 target->Put(SERVER_VERSION, in UpdateServerFieldsFromUpdate()
402 std::max(target->Get(SERVER_VERSION), in UpdateServerFieldsFromUpdate()
403 target->Get(BASE_VERSION)) + 1); in UpdateServerFieldsFromUpdate()
405 target->Put(IS_UNAPPLIED_UPDATE, true); in UpdateServerFieldsFromUpdate()
409 DCHECK(target->Get(ID) == update.id()) in UpdateServerFieldsFromUpdate()
[all …]
/external/chromium/build/
Dinstall-chroot.sh133 target="${distname}${arch}"
136 [ -d /var/lib/chroot/"${target}" ] && {
138 echo "Delete /var/lib/chroot/${target} if you want to start over." >&2
141 sudo mkdir -p /var/lib/chroot/"${target}"
178 sudo debootstrap ${archflag} "${distname}" /var/lib/chroot/"${target}" \
188 [${target%bit}]
191 directory=/var/lib/chroot/${target}
197 script-config=script-${target}
203 sed '/^FSTAB=/s,/mount-defaults",/mount-'"${target}"'",' \
205 sudo sh -c 'cat >/etc/schroot/script-'"${target}"
[all …]
/external/guava/src/com/google/common/primitives/
DBytes.java67 public static boolean contains(byte[] array, byte target) { in contains() argument
69 if (value == target) { in contains()
85 public static int indexOf(byte[] array, byte target) { in indexOf() argument
86 return indexOf(array, target, 0, array.length); in indexOf()
91 byte[] array, byte target, int start, int end) { in indexOf() argument
93 if (array[i] == target) { in indexOf()
111 public static int indexOf(byte[] array, byte[] target) { in indexOf() argument
113 checkNotNull(target, "target"); in indexOf()
114 if (target.length == 0) { in indexOf()
119 for (int i = 0; i < array.length - target.length + 1; i++) { in indexOf()
[all …]
/external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
DReplaceTest.java29 String target, pattern, repl; in testSimpleReplace() local
31 target = "foobarfobarfoofo1"; in testSimpleReplace()
36 Matcher m = p.matcher(target); in testSimpleReplace()
43 String target, pattern, repl, s; in testCaptureReplace() local
47 target = "[31]foo;bar[42];[99]xyz"; in testCaptureReplace()
52 m = p.matcher(target); in testCaptureReplace()
58 target = "[31]foo(42)bar{63}zoo;[12]abc(34)def{56}ghi;{99}xyz[88]xyz(77)xyz;"; in testCaptureReplace()
62 m = p.matcher(target); in testCaptureReplace()
76 String target, pattern, repl, s; in testEscapeReplace() local
78 target = "foo'bar''foo"; in testEscapeReplace()
[all …]

12345678910>>...130