/third_party/vixl/src/aarch64/ |
H A D | debugger-aarch64.cc | 115 // Read the command line. in Debug() 117 std::string line; in Debug() local 118 std::getline(*input_stream_, line); in Debug() 121 line.erase(std::remove_if(line.begin(), in Debug() 122 line.end(), in Debug() 124 line.end()); in Debug() 129 fprintf(ostream_, "%s\n", line.c_str()); in Debug() 133 std::vector<std::string> tokenized_cmd = Tokenize(line); in Debug()
|
/third_party/skia/experimental/sktext/tests/ |
H A D | SelectableText.cpp | 79 const SkPoint positions[], // Positions relative to the line 209 auto line = selectableText->getLine(next.fLineIndex); in UNIX_ONLY_TEST() local 212 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(next.fBoundaries.fTop, line.fBounds.fTop)); in UNIX_ONLY_TEST() 213 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(next.fBoundaries.height(), line.fBounds.height())); in UNIX_ONLY_TEST() 250 auto line = selectableText->getLine(prev.fLineIndex); in UNIX_ONLY_TEST() local 251 REPORTER_ASSERT(reporter, prev.fGlyphRange.fEnd == line.fBoxGlyphs.size()); in UNIX_ONLY_TEST() 252 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(prev.fBoundaries.fRight, line.fBounds.fRight)); in UNIX_ONLY_TEST() 253 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(prev.fBoundaries.fTop, line.fBounds.fTop)); in UNIX_ONLY_TEST() 254 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(prev.fBoundaries.height(), line.fBounds.height())); in UNIX_ONLY_TEST()
|
/third_party/ffmpeg/libavdevice/ |
H A D | decklink_dec.cpp | 70 /* These VANC line numbers need not be very accurate. In any case 72 * ancillary line number was requested. We just need to make sure that the 216 static uint8_t calc_parity_and_line_offset(int line) in calc_parity_and_line_offset() argument 218 uint8_t ret = (line < 313) << 5; in calc_parity_and_line_offset() 219 if (line >= 7 && line <= 22) in calc_parity_and_line_offset() 220 ret += line; in calc_parity_and_line_offset() 221 if (line >= 320 && line <= 335) in calc_parity_and_line_offset() 222 ret += (line in calc_parity_and_line_offset() 226 fill_data_unit_head(int line, uint8_t *tgt) fill_data_unit_head() argument 235 teletext_data_unit_from_vbi_data(int line, uint8_t *src, uint8_t *tgt, vbi_pixfmt fmt) teletext_data_unit_from_vbi_data() argument 249 teletext_data_unit_from_vbi_data_10bit(int line, uint8_t *src, uint8_t *tgt) teletext_data_unit_from_vbi_data_10bit() argument 267 teletext_data_unit_from_op47_vbi_packet(int line, uint16_t *py, uint8_t *tgt) teletext_data_unit_from_op47_vbi_packet() argument 285 linemask_matches(int line, int64_t mask) linemask_matches() argument 303 int line = (descriptors[i] & 31) + (!(descriptors[i] & 128)) * 313; teletext_data_unit_from_op47_data() local [all...] |
/third_party/backends/backend/ |
H A D | teco3.c | 166 char line[128]; in hexdump() local 173 ptr = line; in hexdump() 182 if (ptr != line) in hexdump() 184 DBG (level, "%s %s\n", line, asc_buf); in hexdump() 185 ptr = line; in hexdump() 204 DBG (level, "%s %s\n", line, asc_buf); in hexdump() 1155 int line; /* line number for that raster */ in teco_adjust_raster() local 1170 * The color coding is one line for each color (in the RGB order). in teco_adjust_raster() 1182 line in teco_adjust_raster() [all...] |
/third_party/littlefs/scripts/ |
H A D | test.py | 160 # find line numbers 164 for i, line in enumerate(f): 168 line) 365 f.writeln(4*' '+'#line %d "%s"' 369 f.writeln(4*' '+'#line %d "%s"' 377 f.writeln('#line %d "%s"' 381 f.writeln('#line %d "%s"' 468 f.writeln('#line 1 "%s"' % args['source']) 608 # skip the first line 609 for line i [all...] |
/foundation/communication/dsoftbus/tests/core/common/dfx/event/unittest/src/ |
H A D | softbus_event_test.cpp | 52 .line = 233, in HWTEST_F() 59 HiSysEvent_Write(StrEq(form.func), Eq(form.line), StrEq(SOFTBUS_EVENT_DOMAIN), _, in HWTEST_F()
|
/kernel/linux/linux-6.6/arch/um/kernel/ |
H A D | dtb.c | 32 static int __init uml_dtb_setup(char *line, int *add) in uml_dtb_setup() argument 34 dtb = line; in uml_dtb_setup()
|
H A D | initrd.c | 35 static int __init uml_initrd_setup(char *line, int *add) in uml_initrd_setup() argument 37 initrd = line; in uml_initrd_setup()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/gpio/ |
H A D | priv.h | 22 int (*drive)(struct nvkm_gpio *, int line, int dir, int out); 24 /* sense current state of given gpio line */ 25 int (*sense)(struct nvkm_gpio *, int line);
|
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/ |
H A D | dc_trace.h | 41 #define TRACE_DCN_FPU(begin, function, line, ref_count) \ 42 trace_dcn_fpu(begin, function, line, ref_count)
|
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/subdev/gpio/ |
H A D | priv.h | 22 int (*drive)(struct nvkm_gpio *, int line, int dir, int out); 24 /* sense current state of given gpio line */ 25 int (*sense)(struct nvkm_gpio *, int line);
|
/kernel/linux/linux-6.6/scripts/ |
H A D | rustdoc_test_builder.rs | 8 //! The `rustdoc`-generated test names look like `{file}_{line}_{number}`, e.g. 10 //! a macro that expands into items with doctests is invoked several times within the same line. 12 //! However, since these names are used for bisection in CI, the line number makes it not stable 27 // The line we are looking for looks like one of the following: in main() 37 .find_map(|line| { in main() 39 line.split_once("fn main() {")? in main()
|
/third_party/cJSON/tests/unity/extras/fixture/src/ |
H A D | unity_fixture_internals.h | 32 const char* file, unsigned int line); 40 void UnityPointer_Set(void** ptr, void* newValue, UNITY_LINE_TYPE line);
|
/third_party/gn/src/gn/ |
H A D | standard_out.h | 33 // links to the actual help; otherwise, prints a one-line description. 34 void PrintSectionHelp(const std::string& line, 38 // Prints a line for a command, assuming there is a colon. Everything before 46 // The line is indented 2 spaces. 47 void PrintShortHelp(const std::string& line, 54 // colon (or the whole line if not).
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | textfile.h | 35 * Read a line terminated by ^J or ^M or ^M^J, and convert it from 37 * included in 'line'. 38 * @return true if a line was read, or false if the EOF 41 UBool readLine(UnicodeString& line, UErrorCode& ec); 44 * Read a line, ignoring blank lines and lines that start with 47 * @return true if a line was read, or false if the EOF 50 UBool readLineSkippingComments(UnicodeString& line, UErrorCode& ec, 54 * Return the line number of the last line returned by readLine().
|
/third_party/jerryscript/tools/ |
H A D | gen_c_source.py | 48 # 10 hex number per line 49 for line in regroup(", ".join(converted_code), width): 50 lines.append((' ' * indent) + line.strip())
|
/third_party/mesa3d/src/gallium/frontends/d3d10umd/ |
H A D | Debug.h | 35 CheckHResult(HRESULT hr, const char *function, unsigned line); 47 AssertFail(const char *expr, const char *file, unsigned line, const char *function);
|
/third_party/mesa3d/src/glx/apple/ |
H A D | apple_glx_log.h | 40 int line, const char *fmt, ...); 47 int line, const char *fmt, va_list v);
|
/third_party/node/deps/v8/tools/ |
H A D | gc_nvp_common.py | 27 for line in f: 28 info = split_nvp(line)
|
H A D | update-object-macros-undef.py | 40 for line in infile: 41 match = regexp.match(line)
|
/third_party/node/test/v8-updates/ |
H A D | test-trace-gc-flag.js | 29 lines.forEach((line, index) => { 30 assert.match(line, expectedOutput[index]);
|
/third_party/node/test/common/ |
H A D | arraystream.js | 9 data.forEach((line) => { 10 this.emit('data', `${line}\n`);
|
/third_party/node/test/fixtures/ |
H A D | repl-tab-completion-nested-repls.js | 15 data.forEach((line) => { 16 this.emit('data', `${line}\n`); 49 // In Node.js 10.11.0, this next line will terminate the repl silently...
|
/third_party/nghttp2/ |
H A D | mkstatichdtbl.py | 24 for line in sys.stdin: 25 m = re.match(r'(\d+)\s+(\S+)\s+(\S.*)?', line)
|
/third_party/node/deps/base64/base64/lib/tables/ |
H A D | table_enc_12bit.py | 41 for line in lines: 42 print(line)
|