Home
last modified time | relevance | path

Searched refs:startIndex (Results 1 – 25 of 325) sorted by relevance

12345678910>>...13

/third_party/typescript/tests/baselines/reference/
DoverloadResolutionOverNonCTObjectLit.types6 startIndex:number;
7 >startIndex : number
34 tokens.push({ startIndex: 1, type: '', bracket: 3 });
35 >tokens.push({ startIndex: 1, type: '', bracket: 3 }) : number
39 >{ startIndex: 1, type: '', bracket: 3 } : { startIndex: number; type: string; bracket: number; }
40 >startIndex : number
47 … tokens.push(<IToken>({ startIndex: 1, type: '', bracket: 3, state: null, length: 10 }));
48 >tokens.push(<IToken>({ startIndex: 1, type: '', bracket: 3, state: null, length: 10 })) : number
52 ><IToken>({ startIndex: 1, type: '', bracket: 3, state: null, length: 10 }) : IToken
53 >({ startIndex: 1, type: '', bracket: 3, state: null, length: 10 }) : { startIndex: number; type: s…
[all …]
DundefinedSymbolReferencedInArrayLiteral1.types2 var tokens = [{ startIndex: deltaOffset }];
3 >tokens : { startIndex: any; }[]
4 >[{ startIndex: deltaOffset }] : { startIndex: any; }[]
5 >{ startIndex: deltaOffset } : { startIndex: any; }
6 >startIndex : any
DoverloadResolutionOverNonCTObjectLit.symbols8 startIndex:number;
9 >startIndex : Symbol(IToken.startIndex, Decl(overloadResolutionOverNonCTObjectLit.ts, 1, 41))
41 tokens.push({ startIndex: 1, type: '', bracket: 3 });
45 >startIndex : Symbol(startIndex, Decl(overloadResolutionOverNonCTObjectLit.ts, 17, 45))
49 … tokens.push(<IToken>({ startIndex: 1, type: '', bracket: 3, state: null, length: 10 }));
54 >startIndex : Symbol(startIndex, Decl(overloadResolutionOverNonCTObjectLit.ts, 18, 54))
DoverloadResolutionOverNonCTObjectLit.js4 startIndex:number;
19 tokens.push({ startIndex: 1, type: '', bracket: 3 }); property
20 … tokens.push(<IToken>({ startIndex: 1, type: '', bracket: 3, state: null, length: 10 })); property
29 tokens.push({ startIndex: 1, type: '', bracket: 3 }); property
30 tokens.push(({ startIndex: 1, type: '', bracket: 3, state: null, length: 10 })); property
DundefinedSymbolReferencedInArrayLiteral1.symbols2 var tokens = [{ startIndex: deltaOffset }];
4 >startIndex : Symbol(startIndex, Decl(undefinedSymbolReferencedInArrayLiteral1.ts, 0, 15))
/third_party/protobuf/js/experimental/runtime/kernel/
Dbuffer_decoder.js69 constructor(dataView, startIndex, length) { argument
73 this.startIndex_ = startIndex;
75 this.endIndex_ = startIndex + length;
77 this.cursor_ = startIndex;
84 startIndex() { method in BufferDecoder
286 const startIndex = this.cursor_;
289 checkCriticalPositionIndex(this.cursor_, startIndex + 10);
297 subBufferDecoder(startIndex, length) { argument
299 startIndex >= this.startIndex(),
300 `Current start: ${this.startIndex()}, subBufferDecoder start: ${
[all …]
Dfield.js44 static fromFirstIndexEntry(wireType, startIndex) { argument
45 return new Field([Field.encodeIndexEntry(wireType, startIndex)]);
64 static encodeIndexEntry(wireType, startIndex) { argument
65 return startIndex << WIRE_TYPE_LENGTH_BITS | wireType;
109 addIndexEntry(wireType, startIndex) { argument
111 .push(Field.encodeIndexEntry(wireType, startIndex));
Dindexer.js21 function addIndexEntry(storage, fieldNumber, wireType, startIndex) { argument
24 field.addIndexEntry(wireType, startIndex);
26 storage.set(fieldNumber, Field.fromFirstIndexEntry(wireType, startIndex));
38 bufferDecoder.setCursor(bufferDecoder.startIndex());
/third_party/skia/gm/
Dpathcontourstart.cpp57 drawDirs(canvas, [](const SkRect& rect, SkPathDirection dir, unsigned startIndex) { in onDraw() argument
58 return SkPath::Rect(rect, dir, startIndex); in onDraw()
61 drawDirs(canvas, [](const SkRect& rect, SkPathDirection dir, unsigned startIndex) { in onDraw() argument
62 return SkPath::Oval(rect, dir, startIndex); in onDraw()
65 drawDirs(canvas, [](const SkRect& rect, SkPathDirection dir, unsigned startIndex) { in onDraw() argument
69 return SkPath::RRect(rrect, dir, startIndex); in onDraw()
72 drawDirs(canvas, [](const SkRect& rect, SkPathDirection dir, unsigned startIndex) { in onDraw() argument
75 return SkPath::RRect(rrect, dir, startIndex); in onDraw()
78 drawDirs(canvas, [](const SkRect& rect, SkPathDirection dir, unsigned startIndex) { in onDraw() argument
81 return SkPath::RRect(rrect, dir, startIndex); in onDraw()
/third_party/flutter/skia/gm/
Dpathcontourstart.cpp58 drawDirs(canvas, [](const SkRect& rect, SkPath::Direction dir, unsigned startIndex) { in onDraw() argument
60 path.addRect(rect, dir, startIndex); in onDraw()
64 drawDirs(canvas, [](const SkRect& rect, SkPath::Direction dir, unsigned startIndex) { in onDraw() argument
66 path.addOval(rect, dir, startIndex); in onDraw()
70 drawDirs(canvas, [](const SkRect& rect, SkPath::Direction dir, unsigned startIndex) { in onDraw() argument
76 path.addRRect(rrect, dir, startIndex); in onDraw()
80 drawDirs(canvas, [](const SkRect& rect, SkPath::Direction dir, unsigned startIndex) { in onDraw() argument
85 path.addRRect(rrect, dir, startIndex); in onDraw()
89 drawDirs(canvas, [](const SkRect& rect, SkPath::Direction dir, unsigned startIndex) { in onDraw() argument
94 path.addRRect(rrect, dir, startIndex); in onDraw()
/third_party/skia/src/core/
DSkPathMakers.h17 SkPath_PointIterator(SkPathDirection dir, unsigned startIndex) in SkPath_PointIterator() argument
18 : fCurrent(startIndex % N) in SkPath_PointIterator()
41 SkPath_RectPointIterator(const SkRect& rect, SkPathDirection dir, unsigned startIndex) in SkPath_RectPointIterator() argument
42 : SkPath_PointIterator(dir, startIndex) { in SkPath_RectPointIterator()
53 SkPath_OvalPointIterator(const SkRect& oval, SkPathDirection dir, unsigned startIndex) in SkPath_OvalPointIterator() argument
54 : SkPath_PointIterator(dir, startIndex) { in SkPath_OvalPointIterator()
68 SkPath_RRectPointIterator(const SkRRect& rrect, SkPathDirection dir, unsigned startIndex) in SkPath_RRectPointIterator() argument
69 : SkPath_PointIterator(dir, startIndex) { in SkPath_RRectPointIterator()
/third_party/grpc/src/csharp/Grpc.Core/Internal/
DDefaultCallCredentialsConfigurator.cs52 …lsSafeHandle CompositeToNativeRecursive(IReadOnlyList<CallCredentials> credentials, int startIndex) in CompositeToNativeRecursive() argument
54 if (startIndex == credentials.Count - 1) in CompositeToNativeRecursive()
56 return credentials[startIndex].ToNativeCredentials(); in CompositeToNativeRecursive()
59 using (var cred1 = credentials[startIndex].ToNativeCredentials()) in CompositeToNativeRecursive()
60 using (var cred2 = CompositeToNativeRecursive(credentials, startIndex + 1)) in CompositeToNativeRecursive()
/third_party/node/deps/npm/node_modules/cmd-shim/lib/
Dto-batch-syntax.js38 var startIndex = 0
42 var betweenMatches = value.substring(startIndex, match.index) || ""
44 startIndex = dollarExpressions.lastIndex
47 result += value.substr(startIndex)
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
DGPUAdapter.cpp31 size_t startIndex = 0; in Split() local
32 size_t i = startIndex; in Split()
36 auto token = s.substr(startIndex, i - startIndex); in Split()
39 startIndex = i + 1; in Split()
41 auto token = s.substr(startIndex, i - startIndex + 1); in Split()
/third_party/typescript/tests/cases/compiler/
DoverloadResolutionOverNonCTObjectLit.ts3 startIndex:number; property
18 tokens.push({ startIndex: 1, type: '', bracket: 3 });
19 … tokens.push(<IToken>({ startIndex: 1, type: '', bracket: 3, state: null, length: 10 }));
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DClassTable.java175 int startIndex = 0; in writeClassTable() local
177 while (startIndex < classTable.length) { in writeClassTable()
178 int startID = classTable[startIndex].getGlyphID(); in writeClassTable()
179 int classID = classTable[startIndex].getClassID(); in writeClassTable()
184 for (endIndex = startIndex; endIndex < classTable.length; endIndex += 1) { in writeClassTable()
200 startIndex = endIndex; in writeClassTable()
/third_party/wayland-ivi-extension/ivi-layermanagement-examples/LayerManagerControl/src/
Dsceneio.cpp212 int startIndex = in.find('[') + 1; in importSceneFromTXTHelper() local
214 string propertyName = in.substr(startIndex, endIndex - startIndex); in importSceneFromTXTHelper()
217 startIndex = endIndex + 1; in importSceneFromTXTHelper()
219 string propertyType = in.substr(startIndex, endIndex - startIndex); in importSceneFromTXTHelper()
222 startIndex = in.find('[', endIndex) + 1; in importSceneFromTXTHelper()
224 string propertyValue = in.substr(startIndex, endIndex - startIndex); in importSceneFromTXTHelper()
/third_party/flutter/skia/src/gpu/
DGrDrawingManager.cpp66 void GrDrawingManager::RenderTaskDAG::removeRenderTasks(int startIndex, int stopIndex) { in removeRenderTasks() argument
67 for (int i = startIndex; i < stopIndex; ++i) { in removeRenderTasks()
315 int startIndex, stopIndex; in flush() local
331 while (alloc.assign(&startIndex, &stopIndex, &error)) { in flush()
333 for (int i = startIndex; i < stopIndex; ++i) { in flush()
348 startIndex, stopIndex, &flushState, &numRenderTasksExecuted)) { in flush()
398 bool GrDrawingManager::executeRenderTasks(int startIndex, int stopIndex, GrOpFlushState* flushState, in executeRenderTasks() argument
400 SkASSERT(startIndex <= stopIndex && stopIndex <= fDAG.numRenderTasks()); in executeRenderTasks()
404 startIndex, stopIndex, 0, fDAG.numRenderTasks()); in executeRenderTasks()
405 for (int i = startIndex; i < stopIndex; ++i) { in executeRenderTasks()
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
DRangeDateRule.java63 int index = startIndex(start); in firstAfter()
92 int index = startIndex(start); in firstBetween()
115 Range r = rangeAt(startIndex(date)); in isOn()
132 private int startIndex(Date start) { in startIndex() method in RangeDateRule
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DRangeDateRule.java62 int index = startIndex(start); in firstAfter()
92 int index = startIndex(start); in firstBetween()
116 Range r = rangeAt(startIndex(date)); in isOn()
134 private int startIndex(Date start) { in startIndex() method in RangeDateRule
/third_party/flutter/skia/tests/
DResourceAllocatorTest.cpp90 int startIndex, stopIndex; in overlap_test() local
92 alloc.assign(&startIndex, &stopIndex, &error); in overlap_test()
122 int startIndex, stopIndex; in non_overlap_test() local
124 alloc.assign(&startIndex, &stopIndex, &error); in non_overlap_test()
336 int startIndex, stopIndex; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local
338 alloc.assign(&startIndex, &stopIndex, &error); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
388 int startIndex, stopIndex; in DEF_GPUTEST_FOR_RENDERING_CONTEXTS() local
393 alloc.assign(&startIndex, &stopIndex, &error); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
395 REPORTER_ASSERT(reporter, 0 == startIndex && 1 == stopIndex); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
397 alloc.assign(&startIndex, &stopIndex, &error); in DEF_GPUTEST_FOR_RENDERING_CONTEXTS()
[all …]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
DReadableFontData.java580 public int searchUShort(int startIndex, in searchUShort() argument
591 int locationStart = this.readUShort(startIndex + location * startOffset); in searchUShort()
625 public int searchULong(int startIndex, 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/
DReadableFontData.java580 public int searchUShort(int startIndex, in searchUShort() argument
591 int locationStart = this.readUShort(startIndex + location * startOffset); in searchUShort()
625 public int searchULong(int startIndex, 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/typescript/scripts/eslint/rules/
Dobject-literal-surrounding-space.ts30 const manySpaces = (text: string, startIndex: number): boolean => (
31 [startIndex, startIndex + 1].every(i => text.charAt(i) === SPACE_SYMBOL)
/third_party/glslang/glslang/MachineIndependent/
DparseConst.cpp170 const int startIndex = index; in visitConstantUnion() local
172 for (int i = startIndex; i < endIndex; i++) { in visitConstantUnion()
180 if (i == startIndex || (i - startIndex) % (matrixRows + 1) == 0 ) in visitConstantUnion()

12345678910>>...13