Home
last modified time | relevance | path

Searched refs:line (Results 1226 - 1250 of 3911) sorted by relevance

1...<<41424344454647484950>>...157

/third_party/backends/backend/
H A Dgt68xx_high.h110 /** 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 DLSTMBreakEngineTest.java72 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 DCppMetadataGeneratorTest.java42 // 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 DMetadataFilterCoverageTest.java40 for (String line = source.readLine(); line != null; line = source.readLine()) {
41 codeBuilder.append(line).append("\n");
/third_party/ltp/lib/
H A Dtst_sys_conf.c56 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 Dtest-console-table.js249 const line = '─'.repeat(79);
254 ┌─────────┬──${line}──┐
256 ├─────────┼──${line}──┤
258 └─────────┴──${line}──┘
H A Dtest-debugger-run-after-quit-restart.js29 '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 Dtest-repl-preview.js36 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 Dexceptions.py125 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 Dexceptions.py101 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 Dformat-search-stream.js45 #line = 0
86 showHeaders: ++this.#line <= 1,
98 ).split('\n').map(line => line.slice(0, maxWidth)).join('\n')
/third_party/libdrm/radeon/
H A Dradeon_cs.c29 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 Dcompare_benchmark_result.py70 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 Dabitype.py182 line = source[pos:] variable
184 line = source[pos:nl+1] variable
185 tokens[-1][1] += line
186 pos += len(line)
H A Dparse_html5_entities.py86 for line in f1:
87 if line.startswith('html5 = {'):
93 if line.startswith('}'):
96 f2.write(line)
/third_party/python/Tools/ssl/
H A Dmake_ssl_data.py32 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 Dmock_socket.py13 # 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 Dbase_tasks.py78 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 Dexceptions.py125 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 DDSLStatement.cpp58 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 DSkSLIfStatement.cpp38 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 DSkSLTernaryExpression.cpp27 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 DSkSLVariable.h45 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 Dbench.go93 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 Dstruct_member_test.cc30 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()

Completed in 8 milliseconds

1...<<41424344454647484950>>...157