/external/webkit/LayoutTests/storage/indexeddb/ |
D | index-cursor-expected.txt | 7 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 …]
|
D | objectstore-cursor-expected.txt | 7 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 …]
|
D | cursor-update-expected.txt | 7 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 …]
|
D | duplicates-expected.txt | 7 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 …]
|
D | cursor-continue-expected.txt | 7 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 …]
|
D | index-basics-expected.txt | 7 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 …]
|
D | cursor-delete-expected.txt | 7 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 …]
|
D | cursor-index-delete-expected.txt | 7 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/ |
D | ucnvlat1.c | 35 UChar *target; in _Latin1ToUnicodeWithOffsets() local 43 target=pArgs->target; in _Latin1ToUnicodeWithOffsets() 44 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Latin1ToUnicodeWithOffsets() 69 target[0]=source[0]; in _Latin1ToUnicodeWithOffsets() 70 target[1]=source[1]; in _Latin1ToUnicodeWithOffsets() 71 target[2]=source[2]; in _Latin1ToUnicodeWithOffsets() 72 target[3]=source[3]; in _Latin1ToUnicodeWithOffsets() 73 target[4]=source[4]; in _Latin1ToUnicodeWithOffsets() 74 target[5]=source[5]; in _Latin1ToUnicodeWithOffsets() 75 target[6]=source[6]; in _Latin1ToUnicodeWithOffsets() [all …]
|
D | ucnv_u16.c | 52 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 …]
|
D | ucnv_u7.c | 210 UChar *target; in _UTF7ToUnicodeWithOffsets() local 234 target=pArgs->target; in _UTF7ToUnicodeWithOffsets() 263 targetCapacity=(int32_t)(targetLimit-target); in _UTF7ToUnicodeWithOffsets() 277 *target++=b; in _UTF7ToUnicodeWithOffsets() 292 if(source<sourceLimit && target>=targetLimit) { in _UTF7ToUnicodeWithOffsets() 309 if(target<targetLimit) { in _UTF7ToUnicodeWithOffsets() 372 *target++=(UChar)((bits<<4)|(base64Value>>2)); in _UTF7ToUnicodeWithOffsets() 383 *target++=(UChar)((bits<<2)|(base64Value>>4)); in _UTF7ToUnicodeWithOffsets() 394 *target++=(UChar)((bits<<6)|base64Value); in _UTF7ToUnicodeWithOffsets() 412 *target++=PLUS; in _UTF7ToUnicodeWithOffsets() [all …]
|
D | ucnvbocu.cpp | 394 uint8_t *target; in _Bocu1FromUnicodeWithOffsets() local 408 target=(uint8_t *)pArgs->target; in _Bocu1FromUnicodeWithOffsets() 409 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target); in _Bocu1FromUnicodeWithOffsets() 440 *target++=(uint8_t)c; in _Bocu1FromUnicodeWithOffsets() 448 *target++=(uint8_t)PACK_SINGLE_DIFF(diff); in _Bocu1FromUnicodeWithOffsets() 458 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target); in _Bocu1FromUnicodeWithOffsets() 476 *target++=(uint8_t)c; in _Bocu1FromUnicodeWithOffsets() 513 *target++=(uint8_t)PACK_SINGLE_DIFF(diff); in _Bocu1FromUnicodeWithOffsets() 534 *target++=(uint8_t)diff; in _Bocu1FromUnicodeWithOffsets() 535 *target++=(uint8_t)BOCU1_TRAIL_TO_BYTE(m); in _Bocu1FromUnicodeWithOffsets() [all …]
|
/external/protobuf/src/google/protobuf/ |
D | wire_format_lite_inl.h | 485 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/openssh/openbsd-compat/ |
D | base64.c | 134 b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) in b64_ntop() argument 154 target[datalength++] = Base64[output[0]]; in b64_ntop() 155 target[datalength++] = Base64[output[1]]; in b64_ntop() 156 target[datalength++] = Base64[output[2]]; in b64_ntop() 157 target[datalength++] = Base64[output[3]]; in b64_ntop() 173 target[datalength++] = Base64[output[0]]; in b64_ntop() 174 target[datalength++] = Base64[output[1]]; in b64_ntop() 176 target[datalength++] = Pad64; in b64_ntop() 178 target[datalength++] = Base64[output[2]]; in b64_ntop() 179 target[datalength++] = Pad64; in b64_ntop() [all …]
|
/external/antlr/antlr-3.4/runtime/C/src/ |
D | antlr3convertutf.c | 57 UTF16* target = *targetStart; in ConvertUTF32toUTF16() local 60 if (target >= targetEnd) { in ConvertUTF32toUTF16() 72 *target++ = UNI_REPLACEMENT_CHAR; in ConvertUTF32toUTF16() 75 *target++ = (UTF16)ch; /* normal case */ in ConvertUTF32toUTF16() 81 *target++ = UNI_REPLACEMENT_CHAR; in ConvertUTF32toUTF16() 85 if (target + 1 >= targetEnd) { in ConvertUTF32toUTF16() 90 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START); in ConvertUTF32toUTF16() 91 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START); in ConvertUTF32toUTF16() 95 *targetStart = target; in ConvertUTF32toUTF16() 106 UTF32* target = *targetStart; in ConvertUTF16toUTF32() local [all …]
|
/external/llvm/lib/Support/ |
D | ConvertUTF.c | 122 UTF16* target = *targetStart; in ConvertUTF32toUTF16() local 125 if (target >= targetEnd) { in ConvertUTF32toUTF16() 137 *target++ = UNI_REPLACEMENT_CHAR; in ConvertUTF32toUTF16() 140 *target++ = (UTF16)ch; /* normal case */ in ConvertUTF32toUTF16() 146 *target++ = UNI_REPLACEMENT_CHAR; in ConvertUTF32toUTF16() 150 if (target + 1 >= targetEnd) { in ConvertUTF32toUTF16() 155 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START); in ConvertUTF32toUTF16() 156 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START); in ConvertUTF32toUTF16() 160 *targetStart = target; in ConvertUTF32toUTF16() 171 UTF32* target = *targetStart; in ConvertUTF16toUTF32() local [all …]
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
D | TargetInsn.java | 27 private CodeAddress target; field in TargetInsn 42 RegisterSpecList registers, CodeAddress target) { in TargetInsn() argument 45 if (target == null) { in TargetInsn() 49 this.target = target; in TargetInsn() 55 return new TargetInsn(opcode, getPosition(), getRegisters(), target); in withOpcode() 61 return new TargetInsn(getOpcode(), getPosition(), registers, target); in withRegisters() 74 public TargetInsn withNewTargetAndReversed(CodeAddress target) { in withNewTargetAndReversed() argument 77 return new TargetInsn(opcode, getPosition(), getRegisters(), target); in withNewTargetAndReversed() 86 return target; in getTarget() 98 return target.getAddress(); in getTargetAddress() [all …]
|
/external/chromium/sdch/open-vcdiff/src/ |
D | vcdiff_test.sh | 48 -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/open-vcdiff/src/ |
D | vcdiff_test.sh | 48 -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/ |
D | JSEventTarget.cpp | 107 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/guava/guava/src/com/google/common/io/ |
D | AppendableWriter.java | 34 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/ |
D | touch-target-limited-expected.txt | 1 …target 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 …]
|
D | touch-target-expected.txt | 1 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/skia/src/gpu/ |
D | GrPathRenderer.h | 86 const GrDrawTarget* target) const { in getStencilSupport() argument 88 return this->onGetStencilSupport(path, stroke, target); in getStencilSupport() 105 const GrDrawTarget* target, 118 GrDrawTarget* target, in drawPath() argument 120 GrAssert(this->canDrawPath(path, stroke, target, antiAlias)); in drawPath() 121 GrAssert(target->drawState()->getStencil().isDisabled() || in drawPath() 122 kNoRestriction_StencilSupport == this->getStencilSupport(path, stroke, target)); in drawPath() 123 return this->onDrawPath(path, stroke, target, antiAlias); in drawPath() 134 void stencilPath(const SkPath& path, const SkStrokeRec& stroke, GrDrawTarget* target) { in stencilPath() argument 135 GrAssert(kNoSupport_StencilSupport != this->getStencilSupport(path, stroke, target)); in stencilPath() [all …]
|
/external/protobuf/src/google/protobuf/io/ |
D | coded_stream.h | 618 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 …]
|