Home
last modified time | relevance | path

Searched refs:lineIndex (Results 1 - 25 of 26) sorted by relevance

12

/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DBiDiConformanceTest.java46 lineIndex = 0; in TestBidiTest()
55 if (line.charAt(lineIndex) == '@') { in TestBidiTest()
56 ++lineIndex; in TestBidiTest()
57 if (line.startsWith("Levels:", lineIndex)) { in TestBidiTest()
58 lineIndex += 7; in TestBidiTest()
59 if (!parseLevels(line.substring(lineIndex))) { in TestBidiTest()
62 } else if (line.startsWith("Reorder:", lineIndex)) { in TestBidiTest()
63 lineIndex += 8; in TestBidiTest()
64 if (!parseOrdering(line.substring(lineIndex))) { in TestBidiTest()
71 if (!skipWhitespace() || line.charAt(lineIndex in TestBidiTest()
606 private int lineIndex; global() field in BiDiConformanceTest
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/
H A DBiDiConformanceTest.java49 lineIndex = 0; in TestBidiTest()
58 if (line.charAt(lineIndex) == '@') { in TestBidiTest()
59 ++lineIndex; in TestBidiTest()
60 if (line.startsWith("Levels:", lineIndex)) { in TestBidiTest()
61 lineIndex += 7; in TestBidiTest()
62 if (!parseLevels(line.substring(lineIndex))) { in TestBidiTest()
65 } else if (line.startsWith("Reorder:", lineIndex)) { in TestBidiTest()
66 lineIndex += 8; in TestBidiTest()
67 if (!parseOrdering(line.substring(lineIndex))) { in TestBidiTest()
74 if (!skipWhitespace() || line.charAt(lineIndex in TestBidiTest()
609 private int lineIndex; global() field in BiDiConformanceTest
[all...]
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/
H A DRuleParser.java79 for (int lineIndex = 0; lineIndex < configLines.size(); lineIndex++) { in parseLines()
80 String line = configLines.get(lineIndex); in parseLines()
85 int ruleLineNumber = lineIndex + 1; in parseLines()
94 specs.add(parseResultSpec(line.substring(xpathEnd), lineIndex + 1)); in parseLines()
97 while (++lineIndex < configLines.size() in parseLines()
98 && RULE_PARTS_SEPERATOR.matcher(configLines.get(lineIndex)).lookingAt()) { in parseLines()
99 specs.add(parseResultSpec(configLines.get(lineIndex), lineIndex in parseLines()
[all...]
/third_party/node/deps/icu-small/source/tools/toolutil/
H A Dppucd.cpp68 defaultLineIndex(-1), blockLineIndex(-1), lineIndex(0), in PreparsedUCD()
116 while(!isLineBufferAvailable(lineIndex)) { in readLine()
117 ++lineIndex; in readLine()
118 if (lineIndex == kNumLineBuffers) { in readLine()
119 lineIndex = 0; in readLine()
122 char *line=lines[lineIndex]; in readLine()
179 char *field=lines[lineIndex]; in firstField()
240 defaultLineIndex=lineIndex; in getProps()
245 blockLineIndex=lineIndex; in getProps()
H A Dppucd.h164 int32_t defaultLineIndex, blockLineIndex, lineIndex; member in PreparsedUCD
/third_party/icu/icu4c/source/tools/toolutil/
H A Dppucd.cpp68 defaultLineIndex(-1), blockLineIndex(-1), lineIndex(0), in PreparsedUCD()
116 while(!isLineBufferAvailable(lineIndex)) { in readLine()
117 ++lineIndex; in readLine()
118 if (lineIndex == kNumLineBuffers) { in readLine()
119 lineIndex = 0; in readLine()
122 char *line=lines[lineIndex]; in readLine()
179 char *field=lines[lineIndex]; in firstField()
240 defaultLineIndex=lineIndex; in getProps()
245 blockLineIndex=lineIndex; in getProps()
H A Dppucd.h164 int32_t defaultLineIndex, blockLineIndex, lineIndex; member in PreparsedUCD
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
H A Dppucd.cpp60 defaultLineIndex(-1), blockLineIndex(-1), lineIndex(0), in PreparsedUCD()
109 while(!isLineBufferAvailable(lineIndex)) { in readLine()
110 ++lineIndex; in readLine()
111 if (lineIndex == kNumLineBuffers) { in readLine()
112 lineIndex = 0; in readLine()
115 char *line=lines[lineIndex]; in readLine()
172 char *field=lines[lineIndex]; in firstField()
233 defaultLineIndex=lineIndex; in getProps()
238 blockLineIndex=lineIndex; in getProps()
H A Dppucd.h165 int32_t defaultLineIndex, blockLineIndex, lineIndex; member in PreparsedUCD
/third_party/skia/experimental/sktext/include/
H A DInterface.h141 Position(PositionType positionType, size_t lineIndex, GlyphRange glyphRange, TextRange textRange, SkRect rect);
179 Position firstInLinePosition(PositionType positionType, LineIndex lineIndex) const;
180 Position lastInLinePosition(PositionType positionType, LineIndex lineIndex) const;
186 BoxLine getLine(size_t lineIndex) const;
H A DText.h276 Position(PositionType positionType, size_t lineIndex, GlyphRange glyphRange, TextRange textRange, SkRect rect) in Position()
278 , fLineIndex(lineIndex) in Position()
326 Position firstInLinePosition(PositionType positionType, LineIndex lineIndex) const;
327 Position lastInLinePosition(PositionType positionType, LineIndex lineIndex) const;
337 BoxLine getLine(size_t lineIndex) const { in getLine()
338 SkASSERT(lineIndex < fBoxLines.size()); in getLine()
339 return fBoxLines[lineIndex]; in getLine()
/third_party/skia/experimental/sktext/tests/
H A DWrappedText.cpp125 for (int lineIndex = 0; lineIndex < testVisitor.fTestLines.size(); ++lineIndex) { in UNIX_ONLY_TEST()
126 auto& line = testVisitor.fTestLines[lineIndex]; in UNIX_ONLY_TEST()
H A DSelectableText.cpp112 for (LineIndex lineIndex = 0; lineIndex < selectableText->countLines(); ++lineIndex) { in UNIX_ONLY_TEST()
113 auto& testLine = testVisitor.fTestLines[lineIndex]; in UNIX_ONLY_TEST()
114 auto boxLine = selectableText->getLine(lineIndex); in UNIX_ONLY_TEST()
136 REPORTER_ASSERT(reporter, boxLine.fIndex == lineIndex); in UNIX_ONLY_TEST()
/third_party/skia/experimental/sktext/src/
H A DText.cpp522 size_t lineIndex = 0;
525 visitor->onBeginLine(lineIndex, line.text(), line.isHardBreak(), SkRect::MakeXYWH(0, verticalOffset, line.fActualWidth, line.fTextMetrics.height()));
535 visitor->onEndLine(lineIndex, line.text(), line.trailingSpaces(), glyphCount);
537 ++lineIndex;
579 LineIndex lineIndex = 0ul;
582 visitor->onBeginLine(lineIndex, line.text(), line.isHardBreak(), SkRect::MakeXYWH(0, verticalOffset, line.fActualWidth, line.fTextMetrics.height()));
606 visitor->onEndLine(lineIndex, line.text(), line.trailingSpaces(), glyphCount);
608 ++lineIndex;
858 Position SelectableText::firstInLinePosition(PositionType positionType, LineIndex lineIndex) const {
859 SkASSERT(lineIndex >
[all...]
/third_party/skia/bench/
H A DTypefaceBench.cpp256 std::unique_ptr<Line> convertLine(int lineIndex) { in convertLine() argument
259 const char* cursor = fText[lineIndex]; in convertLine()
/third_party/skia/experimental/sktext/editor/
H A DTexts.h111 BoxLine getLine(size_t lineIndex) { in getLine() argument
112 SkASSERT(lineIndex < fSelectableText->countLines()); in getLine()
113 return fSelectableText->getLine(lineIndex); in getLine()
/third_party/node/lib/internal/readline/
H A Dinterface.js714 let lineIndex = 0;
718 if (completion === '' || lineIndex === maxColumns) {
720 lineIndex = 0;
728 lineIndex++;
733 if (lineIndex !== 0) {
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dmacro_checker_file.py293 for lineIndex, line in enumerate(f):
296 self.processLine(lineIndex + 1, trimmedLine)
/third_party/skia/src/core/
H A DSkGeometry.cpp1083 // by the line segment src[lineIndex], src[lineIndex+1].
1084 static bool on_same_side(const SkPoint src[4], int testIndex, int lineIndex) {
1085 SkPoint origin = src[lineIndex];
1086 SkVector line = src[lineIndex + 1] - origin;
/third_party/typescript/lib/
H A Dtsserverlibrary.js[all...]
H A Dtsserver.js[all...]
H A DtypingsInstaller.js[all...]
H A Dtsc.js11393 var lineIndex = line;
11395 if (lineIndex + 1 === lineStarts.length) {
11399 var start = lineStarts[lineIndex];
11400 var pos = lineStarts[lineIndex + 1] - 1;
[all...]
H A Dtypescript.js[all...]
/third_party/node/test/fixtures/snapshot/
H A Dtypescript.js[all...]

Completed in 183 milliseconds

12