/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/bitmap/ |
D | BitmapGlyphInfo.java | 30 private final int startOffset; field in BitmapGlyphInfo 44 public BitmapGlyphInfo(int glyphId, int blockOffset, int startOffset, int length, int format) { in BitmapGlyphInfo() argument 48 this.startOffset = startOffset; in BitmapGlyphInfo() 62 public BitmapGlyphInfo(int glyphId, int startOffset, int length, int format) { in BitmapGlyphInfo() argument 66 this.startOffset = startOffset; in BitmapGlyphInfo() 84 return this.blockOffset() + this.startOffset(); in offset() 87 public int startOffset() { in startOffset() method in BitmapGlyphInfo 88 return this.startOffset; in startOffset() 107 result = prime * result + startOffset; in hashCode() 144 return (o1.startOffset - o2.startOffset); in compare()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/bitmap/ |
D | BitmapGlyphInfo.java | 30 private final int startOffset; field in BitmapGlyphInfo 44 public BitmapGlyphInfo(int glyphId, int blockOffset, int startOffset, int length, int format) { in BitmapGlyphInfo() argument 48 this.startOffset = startOffset; in BitmapGlyphInfo() 62 public BitmapGlyphInfo(int glyphId, int startOffset, int length, int format) { in BitmapGlyphInfo() argument 66 this.startOffset = startOffset; in BitmapGlyphInfo() 84 return this.blockOffset() + this.startOffset(); in offset() 87 public int startOffset() { in startOffset() method in BitmapGlyphInfo 88 return this.startOffset; in startOffset() 107 result = prime * result + startOffset; in hashCode() 144 return (o1.startOffset - o2.startOffset); in compare()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | DynamicUploader.cpp | 61 uint64_t startOffset = RingBufferAllocator::kInvalidOffset; in AllocateInternal() local 63 startOffset = targetRingBuffer->mAllocator.Allocate(allocationSize, serial); in AllocateInternal() 68 if (startOffset == RingBufferAllocator::kInvalidOffset) { in AllocateInternal() 73 startOffset = targetRingBuffer->mAllocator.Allocate(allocationSize, serial); in AllocateInternal() 76 ASSERT(startOffset != RingBufferAllocator::kInvalidOffset); in AllocateInternal() 92 static_cast<uint8_t*>(uploadHandle.stagingBuffer->GetMappedPointer()) + startOffset; in AllocateInternal() 93 uploadHandle.startOffset = startOffset; in AllocateInternal() 123 Align(uploadHandle.startOffset, offsetAlignment) - uploadHandle.startOffset; in Allocate() 126 uploadHandle.startOffset += additionalOffset; in Allocate()
|
D | RingBufferAllocator.cpp | 79 uint64_t startOffset = kInvalidOffset; in Allocate() local 87 startOffset = mUsedEndOffset; in Allocate() 96 startOffset = 0; in Allocate() 104 startOffset = mUsedEndOffset; in Allocate() 110 if (startOffset != kInvalidOffset) { in Allocate() 119 return startOffset; in Allocate()
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/ |
D | RingBuffer.cpp | 109 size_t startOffset = INVALID_OFFSET; in SubAllocate() local 117 startOffset = mUsedEndOffset; in SubAllocate() 126 startOffset = 0; in SubAllocate() 134 startOffset = mUsedEndOffset; in SubAllocate() 140 if (startOffset == INVALID_OFFSET) in SubAllocate() 145 static_cast<uint8_t*>(mStagingBuffer->GetMappedPointer()) + startOffset; in SubAllocate() 146 uploadHandle.startOffset = startOffset; in SubAllocate()
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLLexer.cpp | 1010 int32_t startOffset = fOffset; in next() local 1011 if (startOffset == fLength) { in next() 1012 return Token(Token::END_OF_FILE, startOffset, 0); in next() 1018 return Token(Token::END_OF_FILE, startOffset, 0); in next() 1034 return Token(kind, startOffset, fOffset - startOffset); in next()
|
/third_party/flutter/flutter/packages/flutter/test/widgets/ |
D | flow_test.dart | 10 TestFlowDelegate({this.startOffset}) : super(repaint: startOffset); 12 final Animation<double> startOffset; 21 double dy = startOffset.value; 29 bool shouldRepaint(TestFlowDelegate oldDelegate) => startOffset == oldDelegate.startOffset; 50 final AnimationController startOffset = AnimationController.unbounded( 71 delegate: TestFlowDelegate(startOffset: startOffset), 95 startOffset.value = 50.0;
|
/third_party/icu/icu4c/source/test/perf/ubrkperf/ |
D | ubrkperf.cpp | 96 UniCharCount startOffset = 0, breakOffset = 0, numUniChars = textSize; 97 startOffset = 0; 100 while (startOffset < numUniChars) 103 startOffset, &breakOffset); 112 startOffset = breakOffset; 116 startOffset = 0; 118 while (startOffset < numUniChars) 121 startOffset, &breakOffset); 123 startOffset = breakOffset;
|
D | ubrkperfold.cpp | 321 UniCharCount startOffset = 0, breakOffset = 0, numUniChars = textSize; in doForwardTest() local 322 startOffset = 0; in doForwardTest() 325 while (startOffset < numUniChars) in doForwardTest() 328 startOffset, &breakOffset); in doForwardTest() 337 startOffset = breakOffset; in doForwardTest() 341 startOffset = 0; in doForwardTest() 343 while (startOffset < numUniChars) in doForwardTest() 346 startOffset, &breakOffset); in doForwardTest() 348 startOffset = breakOffset; in doForwardTest()
|
/third_party/skia/src/sksl/ |
D | SkSLLexer.cpp | 500 int32_t startOffset = fOffset; in next() local 501 if (startOffset == (int32_t)fText.length()) { in next() 502 return Token(Token::Kind::TK_END_OF_FILE, startOffset, 0, fLine); in next() 508 return Token(Token::Kind::TK_END_OF_FILE, startOffset, 0, fLine); in next() 527 return Token(kind, startOffset, fOffset - startOffset, fLine); in next()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | StringRange.java | 255 int startOffset = startCps.length - endCps.length; in expand() local 257 if (requireSameLength && startOffset != 0) { in expand() 259 } else if (startOffset < 0) { in expand() 266 for (int i = 0; i < startOffset; ++i) { in expand() 269 add(0, startOffset, startCps, endCps, builder, output); in expand() 273 …private static void add(int endIndex, int startOffset, int[] starts, int[] ends, StringBuilder bui… in add() argument 274 int start = starts[endIndex+startOffset]; in add() 286 add(endIndex+1, startOffset, starts, ends, builder, output); in add()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | StringRange.java | 248 int startOffset = startCps.length - endCps.length; in expand() local 250 if (requireSameLength && startOffset != 0) { in expand() 252 } else if (startOffset < 0) { in expand() 259 for (int i = 0; i < startOffset; ++i) { in expand() 262 add(0, startOffset, startCps, endCps, builder, output); in expand() 266 …private static void add(int endIndex, int startOffset, int[] starts, int[] ends, StringBuilder bui… in add() argument 267 int start = starts[endIndex+startOffset]; in add() 279 add(endIndex+1, startOffset, starts, ends, builder, output); in add()
|
/third_party/parse5/packages/parse5-sax-parser/test/ |
D | location-info.test.js | 17 assert.strictEqual(typeof sourceCodeLocation.startOffset, 'number'); 19 assert.ok(sourceCodeLocation.startOffset < sourceCodeLocation.endOffset); 40 startOffset: 34, property
|
/third_party/parse5/packages/parse5/lib/extensions/error-reporting/ |
D | parser-mixin.js | 21 err.startOffset = this.ctLoc.startOffset; 25 err.endOffset = this.locBeforeToken ? this.ctLoc.startOffset : this.ctLoc.endOffset;
|
D | mixin-base.js | 16 err.startOffset = err.endOffset = this.posTracker.offset; 24 startOffset: -1, property
|
/third_party/parse5/packages/parse5/docs/source-code-location/ |
D | location.md | 9 * [startOffset](#startoffset) 54 ### startOffset subsection 56 **● startOffset**: *`number`*
|
D | start-tag-location.md | 10 * [startOffset](#startoffset) 64 ### startOffset subsection 66 **● startOffset**: *`number`*
|
D | element-location.md | 11 * [startOffset](#startoffset) 75 ### startOffset subsection 77 **● startOffset**: *`number`*
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/ |
D | ReadableFontData.java | 581 int startOffset, in searchUShort() argument 591 int locationStart = this.readUShort(startIndex + location * startOffset); in searchUShort() 626 int startOffset, in searchULong() argument 636 int locationStart = this.readULongAsInt(startIndex + location * startOffset); in searchULong() 667 public int searchUShort(int startIndex, int startOffset, int length, int key) { in searchUShort() argument 673 int locationStart = this.readUShort(startIndex + location * startOffset); in searchUShort()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/ |
D | ReadableFontData.java | 581 int startOffset, in searchUShort() argument 591 int locationStart = this.readUShort(startIndex + location * startOffset); in searchUShort() 626 int startOffset, in searchULong() argument 636 int locationStart = this.readULongAsInt(startIndex + location * startOffset); in searchULong() 667 public int searchUShort(int startIndex, int startOffset, int length, int key) { in searchUShort() argument 673 int locationStart = this.readUShort(startIndex + location * startOffset); in searchUShort()
|
/third_party/parse5/test/utils/ |
D | generate-location-info-parser-tests.js | 31 let actual = html.substring(loc.startOffset, loc.endOffset); 47 const length = location.startTag.endOffset - location.startTag.startOffset; 55 const length = location.endTag.endOffset - location.endTag.startOffset; 63 const expected = serializedNode.slice(attr.startOffset, attr.endOffset);
|
/third_party/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/ |
D | FlatbuffersDoubleTests.swift | 73 return CountryDouble.end(builder: &builder, startOffset: _start) 76 static func end(builder: inout FlatBufferBuilder, startOffset: UOffset) -> Offset { in end() 77 Offset(offset: builder.endTable(at: startOffset)) in end()
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | refactors.ts | 29 startOffset: 3, 77 startOffset: 1, 129 startOffset: 1,
|
/third_party/parse5/packages/parse5/lib/extensions/location-info/ |
D | tokenizer-mixin.js | 21 startOffset: this.posTracker.offset, 98 this.currentCharacterToken.location.endOffset = ctLoc.startOffset; 104 ctLoc.endOffset = ctLoc.startOffset;
|
/third_party/parse5/packages/parse5/test/ |
D | location-info-parser.test.js | 29 … assert.strictEqual(html.substring(firstPLocation.startOffset, firstPLocation.endOffset), '<p>1'); 44 assert.strictEqual(html.substring(location.startOffset, location.endOffset), '<i>1</i>'); 141 offset: location.startOffset
|