Home
last modified time | relevance | path

Searched refs:startIndex (Results 1 - 25 of 220) sorted by relevance

123456789

/third_party/protobuf/js/experimental/runtime/kernel/
H A Dbuffer_decoder.js65 * @param {number} startIndex
69 constructor(dataView, startIndex, length) {
73 this.startIndex_ = startIndex;
75 this.endIndex_ = startIndex + length;
77 this.cursor_ = startIndex;
84 startIndex() {
286 const startIndex = this.cursor_;
289 checkCriticalPositionIndex(this.cursor_, startIndex + 10);
293 * @param {number} startIndex
297 subBufferDecoder(startIndex, lengt
[all...]
H A Dindexer.js19 * @param {number} startIndex
21 function addIndexEntry(storage, fieldNumber, wireType, startIndex) {
24 field.addIndexEntry(wireType, startIndex);
26 storage.set(fieldNumber, Field.fromFirstIndexEntry(wireType, startIndex));
38 bufferDecoder.setCursor(bufferDecoder.startIndex());
/third_party/skia/modules/skparagraph/src/
H A DParagraphLineFetcherImpl.cpp26 size_t ParagraphLineFetcherImpl::getLineBreak(size_t startIndex, SkScalar width) const { in getLineBreak() argument
27 if (startIndex >= fRootParagraph->unicodeText().size()) { in getLineBreak()
30 auto newParagraph = fRootParagraph->createCroppedCopy(startIndex); in getLineBreak()
47 std::unique_ptr<TextLineBase> ParagraphLineFetcherImpl::createLine(size_t startIndex, in createLine() argument
50 if (startIndex >= unicodeSize) { in createLine()
53 if (startIndex + count >= unicodeSize || count == 0) { in createLine()
54 count = unicodeSize - startIndex; in createLine()
56 fTempParagraph = fRootParagraph->createCroppedCopy(startIndex, count); in createLine()
H A DParagraphLineFetcherImpl.h29 size_t getLineBreak(size_t startIndex, SkScalar width) const override;
30 std::unique_ptr<TextLineBase> createLine(size_t startIndex, size_t count) override;
/third_party/skia/gm/
H A Dpathcontourstart.cpp57 drawDirs(canvas, [](const SkRect& rect, SkPathDirection dir, unsigned startIndex) {
58 return SkPath::Rect(rect, dir, startIndex);
61 drawDirs(canvas, [](const SkRect& rect, SkPathDirection dir, unsigned startIndex) {
62 return SkPath::Oval(rect, dir, startIndex);
65 drawDirs(canvas, [](const SkRect& rect, SkPathDirection dir, unsigned startIndex) {
69 return SkPath::RRect(rrect, dir, startIndex);
72 drawDirs(canvas, [](const SkRect& rect, SkPathDirection dir, unsigned startIndex) {
75 return SkPath::RRect(rrect, dir, startIndex);
78 drawDirs(canvas, [](const SkRect& rect, SkPathDirection dir, unsigned startIndex) {
81 return SkPath::RRect(rrect, dir, startIndex);
[all...]
/third_party/skia/src/core/
H A 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()
H A DSkPathBuilder.cpp406 SkScalar startIndex = std::fmod(startOver90I + 1.f, 4.f); in addArc() local
407 startIndex = startIndex < 0 ? startIndex + 4.f : startIndex; in addArc()
409 (unsigned) startIndex); in addArc()
590 PointIterator(SkPathDirection dir, unsigned startIndex) in PointIterator() argument
591 : fCurrent(startIndex % N) in PointIterator()
615 RectPointIterator(const SkRect& rect, SkPathDirection dir, unsigned startIndex) in RectPointIterator() argument
616 : PointIterator(dir, startIndex) { in RectPointIterator()
627 OvalPointIterator(const SkRect& oval, SkPathDirection dir, unsigned startIndex) OvalPointIterator() argument
642 RRectPointIterator(const SkRRect& rrect, SkPathDirection dir, unsigned startIndex) RRectPointIterator() argument
[all...]
/third_party/typescript/tests/baselines/reference/
H A DoverloadResolutionOverNonCTObjectLit.js4 startIndex:number;
19 tokens.push({ startIndex: 1, type: '', bracket: 3 });
20 tokens.push(<IToken>({ startIndex: 1, type: '', bracket: 3, state: null, length: 10 }));
29 tokens.push({ startIndex: 1, type: '', bracket: 3 });
30 tokens.push(({ startIndex: 1, type: '', bracket: 3, state: null, length: 10 }));
/third_party/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBitTree.cs74 public static UInt32 ReverseGetPrice(BitEncoder[] Models, UInt32 startIndex, in ReverseGetPrice()
83 price += Models[startIndex + m].GetPrice(bit); in ReverseGetPrice()
89 public static void ReverseEncode(BitEncoder[] Models, UInt32 startIndex, in ReverseEncode()
96 Models[startIndex + m].Encode(rangeEncoder, bit); in ReverseEncode()
142 public static uint ReverseDecode(BitDecoder[] Models, UInt32 startIndex, in ReverseDecode()
149 uint bit = Models[startIndex + m].Decode(rangeDecoder); in ReverseDecode()
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
H A 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/lzma/Java/SevenZip/Compression/RangeCoder/
H A DBitTreeEncoder.java72 public static int ReverseGetPrice(short[] Models, int startIndex, in ReverseGetPrice() argument
81 price += Encoder.GetPrice(Models[startIndex + m], bit); in ReverseGetPrice()
87 public static void ReverseEncode(short[] Models, int startIndex, in ReverseEncode() argument
94 rangeEncoder.Encode(Models, startIndex + m, bit); in ReverseEncode()
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DClassTable.java175 int startIndex = 0; in writeClassTable()
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/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A 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/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A 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/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/d3d/
H A DRemoveSwitchFallThrough.cpp47 void outputSequence(TIntermSequence *sequence, size_t startIndex);
156 void RemoveSwitchFallThroughTraverser::outputSequence(TIntermSequence *sequence, size_t startIndex) in outputSequence() argument
158 for (size_t i = startIndex; i < sequence->size(); ++i) in outputSequence()
190 size_t startIndex = in handlePreviousCase() local
192 outputSequence(mCasesSharingBreak.at(j)->getSequence(), startIndex); in handlePreviousCase()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
H A DReadableFontData.java571 * @param startIndex the position to read the first start value from
580 public int searchUShort(int startIndex, in searchUShort() argument
591 int locationStart = this.readUShort(startIndex + location * startOffset); in searchUShort()
616 * @param startIndex the position to read the first start value from
625 public int searchULong(int startIndex, in searchULong() argument
636 int locationStart = this.readULongAsInt(startIndex + location * startOffset); in searchULong()
660 * @param startIndex the position to read the first start value from
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/skia/third_party/externals/swiftshader/src/Vulkan/Debug/
H A DVariable.hpp65 // indexed range: [startIndex, startIndex+count), while cb returns true.
67 virtual void foreach(size_t startIndex, size_t count, const ForeachCallback &cb) = 0;
98 inline void foreach(size_t startIndex, size_t count, const ForeachCallback &cb) override;
128 void VariableContainer::foreach(size_t startIndex, size_t count, const ForeachCallback &cb) in foreach() argument
130 auto index = ForeachIndex{ startIndex, count }; in foreach()
/third_party/skia/modules/skparagraph/include/
H A DParagraphLineFetcher.h26 virtual size_t getLineBreak(size_t startIndex, SkScalar width) const = 0;
27 virtual std::unique_ptr<TextLineBase> createLine(size_t startIndex, size_t count) = 0;
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dcollationinfo.cpp115 CollationInfo::getDataLength(const int32_t indexes[], int32_t startIndex) { in getDataLength() argument
116 return indexes[startIndex + 1] - indexes[startIndex]; in getDataLength()
/third_party/icu/icu4c/source/tools/toolutil/
H A Dcollationinfo.cpp115 CollationInfo::getDataLength(const int32_t indexes[], int32_t startIndex) { in getDataLength() argument
116 return indexes[startIndex + 1] - indexes[startIndex]; in getDataLength()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Dcollationinfo.cpp115 CollationInfo::getDataLength(const int32_t indexes[], int32_t startIndex) { in getDataLength() argument
116 return indexes[startIndex + 1] - indexes[startIndex]; in getDataLength()
/third_party/icu/icu4c/source/i18n/unicode/
H A Duregex.h435 * If startIndex >= zero the match operation starts at the specified
439 * If startIndex == -1 the match must cover the input region, or the entire
444 * @param startIndex The input string (native) index at which to begin matching, or -1
452 int32_t startIndex,
461 * If startIndex >= zero the match operation starts at the specified
465 * If startIndex == -1 the match must cover the input region, or the entire
470 * @param startIndex The input string (native) index at which to begin matching, or -1
478 int64_t startIndex,
486 * <p>If startIndex is >= 0 any input region that was set for this
498 * @param startIndex Th
[all...]
/third_party/icu/icu4c/source/common/
H A Duvector.cpp288 int32_t UVector::indexOf(void* obj, int32_t startIndex) const { in indexOf()
291 return indexOf(key, startIndex, HINT_KEY_POINTER); in indexOf()
294 int32_t UVector::indexOf(int32_t obj, int32_t startIndex) const { in indexOf()
297 return indexOf(key, startIndex, HINT_KEY_INTEGER); in indexOf()
300 int32_t UVector::indexOf(UElement key, int32_t startIndex, int8_t hint) const { in indexOf() argument
302 for (int32_t i=startIndex; i<count; ++i) { in indexOf()
308 for (int32_t i=startIndex; i<count; ++i) { in indexOf()
/third_party/node/deps/icu-small/source/common/
H A Duvector.cpp288 int32_t UVector::indexOf(void* obj, int32_t startIndex) const { in indexOf()
291 return indexOf(key, startIndex, HINT_KEY_POINTER); in indexOf()
294 int32_t UVector::indexOf(int32_t obj, int32_t startIndex) const { in indexOf()
297 return indexOf(key, startIndex, HINT_KEY_INTEGER); in indexOf()
300 int32_t UVector::indexOf(UElement key, int32_t startIndex, int8_t hint) const { in indexOf() argument
302 for (int32_t i=startIndex; i<count; ++i) { in indexOf()
308 for (int32_t i=startIndex; i<count; ++i) { in indexOf()
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Duregex.h435 * If startIndex >= zero the match operation starts at the specified
439 * If startIndex == -1 the match must cover the input region, or the entire
444 * @param startIndex The input string (native) index at which to begin matching, or -1
452 int32_t startIndex,
461 * If startIndex >= zero the match operation starts at the specified
465 * If startIndex == -1 the match must cover the input region, or the entire
470 * @param startIndex The input string (native) index at which to begin matching, or -1
478 int64_t startIndex,
486 * <p>If startIndex is >= 0 any input region that was set for this
498 * @param startIndex Th
[all...]

Completed in 15 milliseconds

123456789