/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
H A D | BiDiConformanceTest.java | 46 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 D | BiDiConformanceTest.java | 49 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 D | RuleParser.java | 79 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 D | ppucd.cpp | 68 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 D | ppucd.h | 164 int32_t defaultLineIndex, blockLineIndex, lineIndex; member in PreparsedUCD
|
/third_party/icu/icu4c/source/tools/toolutil/ |
H A D | ppucd.cpp | 68 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 D | ppucd.h | 164 int32_t defaultLineIndex, blockLineIndex, lineIndex; member in PreparsedUCD
|
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
H A D | ppucd.cpp | 60 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 D | ppucd.h | 165 int32_t defaultLineIndex, blockLineIndex, lineIndex; member in PreparsedUCD
|
/third_party/skia/experimental/sktext/include/ |
H A D | Interface.h | 141 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 D | Text.h | 276 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 D | WrappedText.cpp | 125 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 D | SelectableText.cpp | 112 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 D | Text.cpp | 522 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 D | TypefaceBench.cpp | 256 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 D | Texts.h | 111 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 D | interface.js | 714 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 D | macro_checker_file.py | 293 for lineIndex, line in enumerate(f): 296 self.processLine(lineIndex + 1, trimmedLine)
|
/third_party/skia/src/core/ |
H A D | SkGeometry.cpp | 1083 // 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 D | tsserverlibrary.js | [all...] |
H A D | tsserver.js | [all...] |
H A D | typingsInstaller.js | [all...] |
H A D | tsc.js | 11393 var lineIndex = line; 11395 if (lineIndex + 1 === lineStarts.length) { 11399 var start = lineStarts[lineIndex]; 11400 var pos = lineStarts[lineIndex + 1] - 1; [all...] |
H A D | typescript.js | [all...] |
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | [all...] |