Home
last modified time | relevance | path

Searched refs:endOffset (Results 1 – 25 of 55) sorted by relevance

123

/third_party/flatbuffers/tests/FlatBuffers.Test/
DFlatBufferBuilderTests.cs37 var endOffset = fbb.Offset; in FlatBufferBuilder_WithForceDefaults_WhenAddBool_AndDefaultValue_OffsetIncreasesBySize()
38 Assert.AreEqual(sizeof(bool), endOffset-storedOffset); in FlatBufferBuilder_WithForceDefaults_WhenAddBool_AndDefaultValue_OffsetIncreasesBySize()
47 var endOffset = fbb.Offset; in FlatBufferBuilder_WithForceDefaults_WhenAddSByte_AndDefaultValue_OffsetIncreasesBySize()
48 Assert.AreEqual(sizeof(sbyte), endOffset - storedOffset); in FlatBufferBuilder_WithForceDefaults_WhenAddSByte_AndDefaultValue_OffsetIncreasesBySize()
57 var endOffset = fbb.Offset; in FlatBufferBuilder_WithForceDefaults_WhenAddByte_AndDefaultValue_OffsetIncreasesBySize()
58 Assert.AreEqual(sizeof(byte), endOffset - storedOffset); in FlatBufferBuilder_WithForceDefaults_WhenAddByte_AndDefaultValue_OffsetIncreasesBySize()
67 var endOffset = fbb.Offset; in FlatBufferBuilder_WithForceDefaults_WhenAddShort_AndDefaultValue_OffsetIncreasesBySize()
68 Assert.AreEqual(sizeof(short), endOffset - storedOffset); in FlatBufferBuilder_WithForceDefaults_WhenAddShort_AndDefaultValue_OffsetIncreasesBySize()
77 var endOffset = fbb.Offset; in FlatBufferBuilder_WithForceDefaults_WhenAddUShort_AndDefaultValue_OffsetIncreasesBySize()
78 Assert.AreEqual(sizeof(ushort), endOffset - storedOffset); in FlatBufferBuilder_WithForceDefaults_WhenAddUShort_AndDefaultValue_OffsetIncreasesBySize()
[all …]
/third_party/parse5/packages/parse5/lib/extensions/location-info/
Dtokenizer-mixin.js24 endOffset: -1
31 this.currentAttrLocation.endOffset = this.posTracker.offset;
98 this.currentCharacterToken.location.endOffset = ctLoc.startOffset;
104 ctLoc.endOffset = ctLoc.startOffset;
108 ctLoc.endOffset = mxn.posTracker.offset + 1;
122 if (ctLoc && ctLoc.endOffset === -1) {
125 ctLoc.endOffset = mxn.posTracker.offset;
Dparser-mixin.js51 endLoc.endOffset = ctLoc.endOffset;
55 endLoc.endOffset = ctLoc.startOffset;
213 const { endLine, endCol, endOffset } = token.location;
214 … this.treeAdapter.updateNodeSourceCodeLocation(textNode, { endLine, endCol, endOffset }); field
/third_party/parse5/packages/parse5-sax-parser/test/
Dlocation-info.test.js18 assert.strictEqual(typeof sourceCodeLocation.endOffset, 'number');
19 assert.ok(sourceCodeLocation.startOffset < sourceCodeLocation.endOffset);
43 endOffset: 49 property
/third_party/parse5/packages/parse5/docs/source-code-location/
Dend-location.md6 * [endOffset](#endoffset)
25 ### endOffset subsection
27 **● endOffset**: *`number`*
Dlocation.md6 * [endOffset](#endoffset)
27 ### endOffset subsection
29 **● endOffset**: *`number`*
Dstart-tag-location.md7 * [endOffset](#endoffset)
37 ### endOffset subsection
39 **● endOffset**: *`number`*
Delement-location.md7 * [endOffset](#endoffset)
39 ### endOffset subsection
41 **● endOffset**: *`number`*
/third_party/parse5/test/utils/
Dgenerate-location-info-parser-tests.js31 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/skia/third_party/externals/dawn/src/dawn_native/
DCompilationMessages.cpp83 uint64_t endOffset = offset; in AddMessage() local
85 endOffset += lines[i].length() + 1; in AddMessage()
91 endOffset += endLinePos - 1; in AddMessage()
95 length = endOffset - offset; in AddMessage()
DRingBufferAllocator.cpp37 mUsedStartOffset = request.endOffset; in Deallocate()
112 request.endOffset = mUsedEndOffset; in Allocate()
DRingBufferAllocator.h46 uint64_t endOffset; member
/third_party/parse5/packages/parse5/test/
Dlocation-info-parser.test.js29 … assert.strictEqual(html.substring(firstPLocation.startOffset, firstPLocation.endOffset), '<p>1');
44 assert.strictEqual(html.substring(location.startOffset, location.endOffset), '<i>1</i>');
146 offset: location.endOffset
157 offset: endLocation.endOffset
/third_party/parse5/packages/parse5/lib/extensions/error-reporting/
Dmixin-base.js16 err.startOffset = err.endOffset = this.posTracker.offset;
27 endOffset: -1 property
Dparser-mixin.js25 err.endOffset = this.locBeforeToken ? this.ctLoc.startOffset : this.ctLoc.endOffset;
/third_party/typescript/src/testRunner/unittests/tsserver/
Drefactors.ts31 endOffset: 4,
79 endOffset: 20,
131 endOffset: aTs.content.length,
DcompileOnSave.ts96 endOffset: 1,
106 endOffset: 1,
131 endOffset: 46,
154 endOffset: 28,
167 endOffset: 1,
178 endOffset: 1,
279 endOffset: 1,
364 endOffset: 27,
393 endOffset: 27,
417 endOffset: 1,
[all …]
DduplicatePackages.ts31 endOffset: 4,
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
DReadableFontData.java583 int endOffset, in searchUShort() argument
597 int locationEnd = this.readUShort(endIndex + location * endOffset); in searchUShort()
628 int endOffset, in searchULong() argument
642 int locationEnd = this.readULongAsInt(endIndex + location * endOffset); in searchULong()
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
DReadableFontData.java583 int endOffset, in searchUShort() argument
597 int locationEnd = this.readUShort(endIndex + location * endOffset); in searchUShort()
628 int endOffset, in searchULong() argument
642 int locationEnd = this.readULongAsInt(endIndex + location * endOffset); in searchULong()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSROA.cpp178 uint64_t endOffset() const { return EndOffset; } in endOffset() function in __anon644338d20111::Slice
201 if (endOffset() > RHS.endOffset()) in operator <()
218 beginOffset() == RHS.beginOffset() && endOffset() == RHS.endOffset(); in operator ==()
386 uint64_t endOffset() const { return EndOffset; } in endOffset() function in llvm::sroa::Partition
475 return S->endOffset() <= in advance()
481 return S->endOffset() == MaxSplitSliceEndOffset; in advance()
486 return S->endOffset() <= MaxSplitSliceEndOffset; in advance()
505 if (S.isSplittable() && S.endOffset() > P.EndOffset) { in advance()
508 std::max(S.endOffset(), MaxSplitSliceEndOffset); in advance()
538 P.EndOffset = P.SI->endOffset(); in advance()
[all …]
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DRingBuffer.cpp54 request.endOffset = mUsedEndOffset; in Track()
67 mUsedStartOffset = request.endOffset; in Tick()
DRingBuffer.h56 size_t endOffset; member
/third_party/parse5/packages/parse5-sax-parser/lib/
Dindex.js90 const { endLine, endCol, endOffset } = token.location;
94 endOffset field
/third_party/flutter/flutter/dev/manual_tests/lib/
Dmaterial_arc.dart142 final double endOffset = (box.localToGlobal(_end) - position).distanceSquared;
144 if (startOffset < endOffset && startOffset < _kTargetSlop)
146 else if (endOffset < _kTargetSlop)
310 final double endOffset = (box.localToGlobal(_end.center) - position).distanceSquared;
312 if (startOffset < endOffset && startOffset < _kTargetSlop)
314 else if (endOffset < _kTargetSlop)

123