/third_party/backends/backend/ |
H A D | gt68xx_high.h | 110 /** Add a white calibration line to the calibrator. 112 * This function should be called after scanning each white calibration line. 113 * The line width must be equal to the value passed to gt68xx_calibrator_new(). 116 * @param line Pointer to the line data. 119 * - #SANE_STATUS_GOOD - the line data was processed successfully. 123 unsigned int *line); 140 /** Add a black calibration line to the calibrator. 142 * This function should be called after scanning each black calibration line. 143 * The line widt 262 SANE_Int line; /**< Current line */ global() member [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
H A D | LSTMBreakEngineTest.java | 72 String line; in runTestFromFile() 74 while ((line = br.readLine()) != null) { in runTestFromFile() 75 String fields[] = line.split("\t"); in runTestFromFile() 110 assertEquals(line + " Test Case#" + caseNum , expected, actual); in runTestFromFile()
|
/third_party/libphonenumber/tools/java/cpp-build/test/com/google/i18n/phonenumbers/ |
H A D | CppMetadataGeneratorTest.java | 42 // 13 bytes per line, so have 16 bytes to test > 1 line (general case). in emitStaticArrayData() 101 for (String line = reader.readLine(); line != null; line = reader.readLine()) { in toLines() 102 lines.add(line); in toLines()
|
/third_party/libphonenumber/tools/java/common/test/com/google/i18n/phonenumbers/ |
H A D | MetadataFilterCoverageTest.java | 40 for (String line = source.readLine(); line != null; line = source.readLine()) { 41 codeBuilder.append(line).append("\n");
|
/third_party/ltp/lib/ |
H A D | tst_sys_conf.c | 56 char line[PATH_MAX]; in tst_sys_conf_save() local 94 ret = fgets(line, sizeof(line), fp); in tst_sys_conf_save() 105 tst_sys_conf_save_str(conf->path, line); in tst_sys_conf_save()
|
/third_party/node/test/parallel/ |
H A D | test-console-table.js | 249 const line = '─'.repeat(79); 254 ┌─────────┬──${line}──┐ 256 ├─────────┼──${line}──┤ 258 └─────────┴──${line}──┘
|
H A D | test-debugger-run-after-quit-restart.js | 29 'steps to the 2nd line' 55 { filename: script, line: 1 }, 62 { filename: script, line: 2 }, 70 { filename: script, line: 1 }, 85 { filename: script, line: 1 },
|
H A D | test-repl-preview.js | 36 this.emit('line', this.lines[this.lines.length - 1]); 41 for await (const [line] of events.on(this, 'line')) { 42 if (line.includes(PROMPT)) { 174 // eslint-disable-next-line no-control-regex 175 lines = lines.map((line) => line.replace(/Error: .+?\x1B/, ''));
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | exceptions.py | 125 location = "line %d" % self.lineno 131 # if the source is set, add the line to the output 134 line = self.source.splitlines()[self.lineno - 1] 136 line = None 137 if line: 138 lines.append(" " + line.strip())
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | exceptions.py | 101 location = 'line %d' % self.lineno 107 # if the source is set, add the line to the output 110 line = self.source.splitlines()[self.lineno - 1] 112 line = None 113 if line: 114 lines.append(' ' + line.strip())
|
/third_party/node/deps/npm/lib/utils/ |
H A D | format-search-stream.js | 45 #line = 0 86 showHeaders: ++this.#line <= 1, 98 ).split('\n').map(line => line.slice(0, maxWidth)).join('\n')
|
/third_party/libdrm/radeon/ |
H A D | radeon_cs.c | 29 const char *file, const char *func, int line) in radeon_cs_begin() 32 return csi->csm->funcs->cs_begin(csi, ndw, file, func, line); in radeon_cs_begin() 37 const char *file, const char *func, int line) in radeon_cs_end() 40 return csi->csm->funcs->cs_end(csi, file, func, line); in radeon_cs_end() 28 radeon_cs_begin(struct radeon_cs *cs, uint32_t ndw, const char *file, const char *func, int line) radeon_cs_begin() argument 36 radeon_cs_end(struct radeon_cs *cs, const char *file, const char *func, int line) radeon_cs_end() argument
|
/third_party/musl/Benchmark/scripts/ |
H A D | compare_benchmark_result.py | 70 for line in lines: 71 if line.lower().startswith("bm_"): 72 m = bench_pattern.match(line) 78 print("match error: {}".format(line))
|
/third_party/python/Tools/scripts/ |
H A D | abitype.py | 182 line = source[pos:] variable 184 line = source[pos:nl+1] variable 185 tokens[-1][1] += line 186 pos += len(line)
|
H A D | parse_html5_entities.py | 86 for line in f1: 87 if line.startswith('html5 = {'): 93 if line.startswith('}'): 96 f2.write(line)
|
/third_party/python/Tools/ssl/ |
H A D | make_ssl_data.py | 32 for line in f: 33 match = pat.search(line) 51 # ignore backslash line continuation for now 129 for line in lines: 130 args.output.write(line + "\n")
|
/third_party/python/Lib/test/ |
H A D | mock_socket.py | 13 # line which the socket will feed on recv() or makefile(). 14 def reply_with(line): 16 _reply_data = line 27 # Re-insert the line, removing the \r\n we added. 49 def queue_recv(self, line): 50 self.lines.append(line)
|
/third_party/python/Lib/asyncio/ |
H A D | base_tasks.py | 78 line = linecache.getline(filename, lineno, f.f_globals) 79 extracted_list.append((filename, lineno, name, line)) 91 for line in traceback.format_exception_only(exc.__class__, exc): 92 print(line, file=file, end='')
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | exceptions.py | 125 location = "line %d" % self.lineno 131 # if the source is set, add the line to the output 134 line = self.source.splitlines()[self.lineno - 1] 136 line = None 137 if line: 138 lines.append(" " + line.strip())
|
/third_party/skia/src/sksl/dsl/ |
H A D | DSLStatement.cpp | 58 if (pos.line() != -1) { in DSLStatement() 59 fStatement->fLine = pos.line(); in DSLStatement() 86 int line = left.fStatement->fLine; in operator ,() local 91 return DSLStatement(SkSL::Block::MakeUnscoped(line, std::move(stmts))); in operator ,()
|
/third_party/skia/src/sksl/ir/ |
H A D | SkSLIfStatement.cpp | 38 std::unique_ptr<Statement> IfStatement::Convert(const Context& context, int line, bool isStatic, in Convert() argument 53 return IfStatement::Make(context, line, isStatic, std::move(test), in Convert() 63 std::unique_ptr<Statement> IfStatement::Make(const Context& context, int line, bool isStatic, in Make() argument 104 return std::make_unique<IfStatement>(line, isStatic, std::move(test), in Make()
|
H A D | SkSLTernaryExpression.cpp | 27 int line = test->fLine; in Convert() local 35 context.fErrors->error(line, "ternary operator result mismatch: '" + in Convert() 41 context.fErrors->error(line, "ternary expression of opaque type '" + in Convert() 46 context.fErrors->error(line, "ternary operator result may not be an array (or struct " in Convert()
|
H A D | SkSLVariable.h | 45 Variable(int line, const Modifiers* modifiers, skstd::string_view name, const Type* type, in Variable() argument 47 : INHERITED(line, kSymbolKind, name, type) in Variable() 54 static std::unique_ptr<Variable> Convert(const Context& context, int line, 58 static std::unique_ptr<Variable> Make(const Context& context, int line,
|
/third_party/skia/third_party/externals/swiftshader/third_party/marl/tools/bench/ |
H A D | bench.go | 93 for _, line := range lines { 94 if len(line) == 0 { 97 matches := consoleLineRE.FindStringSubmatch(line) 99 return Benchmark{}, fmt.Errorf("Unable to parse the line:\n" + line)
|
/third_party/skia/third_party/externals/tint/src/ast/ |
H A D | struct_member_test.cc | 30 EXPECT_EQ(st->source.range.begin.line, 0u); in TEST_F() 32 EXPECT_EQ(st->source.range.end.line, 0u); in TEST_F() 43 EXPECT_EQ(st->source.range.begin.line, 27u); in TEST_F() 45 EXPECT_EQ(st->source.range.end.line, 27u); in TEST_F()
|