Searched refs:lineNo (Results 1 - 25 of 40) sorted by relevance

12

/external/icu/android_icu4j/src/main/java/android/icu/impl/data/
H A DResourceReader.java49 private int lineNo; field in class:ResourceReader
91 lineNo = -1;
106 this.lineNo = -1;
113 this.lineNo= 0;
139 lineNo = -1;
150 if (lineNo == 0) {
152 ++lineNo;
160 ++lineNo;
203 return lineNo;
211 return resourceName + ':' + lineNo;
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/data/
H A DResourceReader.java47 private int lineNo; field in class:ResourceReader
89 lineNo = -1;
104 this.lineNo = -1;
111 this.lineNo= 0;
137 lineNo = -1;
148 if (lineNo == 0) {
150 ++lineNo;
158 ++lineNo;
201 return lineNo;
209 return resourceName + ':' + lineNo;
[all...]
/external/autotest/client/site_tests/video_WebRtcPeerConnectionWithCamera/
H A Dmunge_sdp.js93 var lineNo = findRtpmapLine(sdpLines, codec);
94 if (lineNo === null)
97 var id = sdpLines[lineNo].substring(9, sdpLines[lineNo].indexOf(' '));
109 var lineNo = findRtpmapLine(sdpLines, id);
110 if (lineNo === null)
113 var from = sdpLines[lineNo].indexOf(' ');
114 var to = sdpLines[lineNo].indexOf('/', from);
117 return sdpLines[lineNo].substring(from + 1, to);
/external/icu/icu4c/source/test/intltest/
H A Dtextfile.h67 int32_t lineNo; member in class:TextFile
71 return lineNo;
H A Dtextfile.cpp28 lineNo(0)
105 if (lineNo == 0 && str[0] == 0xFEFF) {
108 ++lineNo;
/external/junit-params/src/main/java/junitparams/mappers/
H A DBufferedReaderDataMapper.java28 int lineNo = 0;
31 if (++lineNo > linesToSkip) {
/external/swiftshader/src/OpenGL/compiler/preprocessor/
H A DInput.cpp60 size_t Input::read(char *buf, size_t maxSize, int *lineNo)
76 if (*lineNo == INT_MAX)
80 ++(*lineNo);
91 if (*lineNo == INT_MAX)
95 ++(*lineNo);
H A DInput.h37 size_t read(char *buf, size_t maxSize, int *lineNo);
/external/boringssl/src/crypto/err/
H A Derr_data_generate.go183 lineNo := 0
185 lineNo++
193 return fmt.Errorf("bad line %d in %s: found %d values but want 3", lineNo, filename, len(parts))
197 return fmt.Errorf("bad line %d in %s: unknown library", lineNo, filename)
200 return fmt.Errorf("bad line %d in %s: library value too large", lineNo, filename)
204 return fmt.Errorf("bad line %d in %s: %s", lineNo, filename, err)
207 return fmt.Errorf("bad line %d in %s: key too large", lineNo, filename)
/external/libxml2/
H A Dcheck-xsddata-test-suite.py84 print "instance line %d" % (node.lineNo())
96 nb_instances_tests, node.lineNo())
137 print "instance line %d" % (node.lineNo())
150 # nb_instances_tests, node.lineNo())
280 nb_schemas_tests, node.lineNo(), sections))
283 print "test %d line %d" % (nb_schemas_tests, node.lineNo())
295 print "warning test line %d has more than one <incorrect> example" %(node.lineNo())
301 print "warning test line %d has more than one <correct> example"% (node.lineNo())
304 print "warning <testCase> line %d has no <correct> nor <incorrect> child" % (node.lineNo())
H A Dcheck-relaxng-test-suite2.py85 print "instance line %d" % (node.lineNo())
97 # nb_instances_tests, node.lineNo())
138 print "instance line %d" % (node.lineNo())
152 # nb_instances_tests, node.lineNo(), mem2 - mem)
282 nb_schemas_tests, node.lineNo(), sections))
285 print "test %d line %d" % (nb_schemas_tests, node.lineNo())
297 print "warning test line %d has more than one <incorrect> example" %(node.lineNo())
303 print "warning test line %d has more than one <correct> example"% (node.lineNo())
306 print "warning <testCase> line %d has no <correct> nor <incorrect> child" % (node.lineNo())
H A Dcheck-relaxng-test-suite.py268 nb_schemas_tests, node.lineNo(), sections))
271 print "test %d line %d" % (nb_schemas_tests, node.lineNo())
283 print "warning test line %d has more than one <incorrect> example" %(node.lineNo())
289 print "warning test line %d has more than one <correct> example"% (node.lineNo())
292 print "warning <testCase> line %d has no <correct> nor <incorrect> child" % (node.lineNo())
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DUCAConformanceTest.java202 int lineNo = 0;
210 lineNo++;
217 logln("Skipping line " + lineNo + " because of a known bug");
234 lineNo, cmpres, cmpres2));
242 + ") on line " + lineNo);
256 errln("Line " + lineNo + " is not greater or equal than previous line");
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DUCAConformanceTest.java199 int lineNo = 0;
207 lineNo++;
214 logln("Skipping line " + lineNo + " because of a known bug");
231 lineNo, cmpres, cmpres2));
239 + ") on line " + lineNo);
253 errln("Line " + lineNo + " is not greater or equal than previous line");
/external/skia/tests/
H A DTest.cpp25 SkString result = SkStringPrintf("%s:%d\t", this->fileName, this->lineNo);
H A DTest.h34 : fileName(f), lineNo(l), condition(c), message(m) {}
36 int lineNo; member in struct:skiatest::Failure
63 this->reportFailed(skiatest::Failure(f.fileName, f.lineNo, f.condition, fullMessage));
/external/skqp/tests/
H A DTest.cpp25 SkString result = SkStringPrintf("%s:%d\t", this->fileName, this->lineNo);
H A DTest.h34 : fileName(f), lineNo(l), condition(c), message(m) {}
36 int lineNo; member in struct:skiatest::Failure
63 this->reportFailed(skiatest::Failure(f.fileName, f.lineNo, f.condition, fullMessage));
/external/clang/lib/Rewrite/
H A DRewriter.cpp248 unsigned lineNo = SourceMgr->getLineNumber(FID, StartOffs) - 1; local
251 unsigned lineOffs = Content->SourceLineCache[lineNo];
382 for (unsigned lineNo = startLineNo; lineNo <= endLineNo; ++lineNo) {
383 unsigned offs = Content->SourceLineCache[lineNo];
/external/v8/tools/turbolizer/
H A Dtext-view.js243 let lineNo = 0;
250 li.lineNo = lineNo++;
/external/annotation-tools/scene-lib/src/annotations/io/
H A DJavapParser.java53 private int lineNo = 0; // TEMP field in class:JavapParser
58 lineNo++;
388 throw new RuntimeException("Line " + lineNo, e);
/external/skia/src/pathops/
H A DSkPathOpsDebug.h145 int lineNo, SkOpPhase phase, int iteration
161 this->globalState()->debugSetPhase(__func__, lineNo, phase, iteration)
163 obj->globalState()->debugSetPhase(__func__, lineNo, phase, iteration)
/external/skqp/src/pathops/
H A DSkPathOpsDebug.h145 int lineNo, SkOpPhase phase, int iteration
161 this->globalState()->debugSetPhase(__func__, lineNo, phase, iteration)
163 obj->globalState()->debugSetPhase(__func__, lineNo, phase, iteration)
/external/skia/dm/
H A DDMJsonWriter.cpp78 result["line_no"] = gFailures[i].lineNo;
/external/skqp/dm/
H A DDMJsonWriter.cpp78 result["line_no"] = gFailures[i].lineNo;

Completed in 1147 milliseconds

12