/third_party/skia/third_party/externals/tint/src/ast/ |
H A D | member_accessor_expression_test.cc | 37 EXPECT_EQ(src.range.begin.line, 20u); in TEST_F()
|
/third_party/skia/third_party/externals/tint/src/ |
H A D | program_id.h | 94 size_t line);
|
/third_party/skia/tools/skpbench/ |
H A D | _hardware.py | 32 def filter_line(self, line): 33 """Returns False if the provided output line can be suppressed."""
|
/third_party/skia/include/private/ |
H A D | SkSLModifiers.h | 120 bool checkPermitted(const Context& context, int line, int permittedModifierFlags,
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | string.rs | 94 line!() as ::libc::c_int, in free()
|
/third_party/spirv-tools/test/opt/ |
H A D | pass_utils.cpp | 49 EXPECT_EQ(expected_messages[0].line_number, position.line); in GetTestMessageConsumer()
|
/third_party/backends/backend/ |
H A D | avision.c | 1875 DBG (dbg_level, "%s: [0-1] pixels per line: %d\n", in debug_print_calib_format() 1878 DBG (dbg_level, "%s: [3] line count: %d\n", func, result[3]); in debug_print_calib_format() 2006 DBG (dbg_level, "%s: [45-46] line-width: %d\n", func, in debug_print_window_descriptor() 2008 DBG (dbg_level, "%s: [47-48] line-count: %d\n", func, in debug_print_window_descriptor() 2026 DBG (dbg_level, "%s: [59] line-width (MSB): %d\n", in debug_print_window_descriptor() 2028 DBG (dbg_level, "%s: [60] line-count (MSB): %d\n", in debug_print_window_descriptor() 2927 /* our backend already has this restriction - so this line is for in compute_parameters() 2999 /* line difference */ in compute_parameters() 4193 DBG (3, "get_duplex_info: [1-2] Color line difference: %d\n", in get_duplex_info() 4195 DBG (3, "get_duplex_info: [3-4] Gray line differenc in get_duplex_info() 5422 size_t i, line; sort_and_average() local 7430 int line = 0; reader_process() local 8310 char line[PATH_MAX]; sane_reload_devices() local [all...] |
/third_party/skia/third_party/externals/imgui/ |
H A D | imgui_tables.cpp | 1011 // FIXME-TABLE: Because InnerClipRect.Max.y is conservatively ==outer_window->ClipRect.Max.y, we never can mark columns _Above_ the scroll line as not IsVisibleY. in TableUpdateLayout() 1820 // End frozen rows (when we are past the last frozen row line, teleport cursor and alter clipping rectangle) in TableEndRow() 2005 // FIXME-TABLE: Here we propagate text baseline from the last line of the cell.. instead of the first one. in TableEndCell() 2942 // We don't reorder: through the frozen<>unfrozen line, or through a column that is marked with ImGuiTableColumnFlags_NoReorder. 3360 static void TableSettingsHandler_ReadLine(ImGuiContext*, ImGuiSettingsHandler*, void* entry, const char* line) 3367 if (sscanf(line, "RefScale=%f", &f) == 1) { settings->RefScale = f; return; } 3369 if (sscanf(line, "Column %d%n", &column_n, &r) == 1) 3373 line = ImStrSkipBlank(line + r); 3377 if (sscanf(line, "UserI [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/ |
H A D | i915_gpu_error.c | 2250 int line = 0; in intel_klog_error_capture() local 2255 l_count, line++); in intel_klog_error_capture() 2262 l_count, line++); in intel_klog_error_capture() 2271 l_count, line++, PTR_ERR(error)); in intel_klog_error_capture() 2278 l_count, line++); in intel_klog_error_capture() 2284 l_count, line++, __builtin_return_address(0)); in intel_klog_error_capture() 2325 l_count, line++, ptr2); in intel_klog_error_capture() 2339 l_count, line++, tag[0], ptr2, tag[1]); in intel_klog_error_capture() 2342 l_count, line++); in intel_klog_error_capture() 2345 l_count, line in intel_klog_error_capture() [all...] |
/third_party/jerryscript/jerry-core/parser/js/ |
H A D | js-scanner.c | 1223 parser_line_counter_t line = context_p->line; in scanner_scan_statement() local 1229 context_p->line = line; in scanner_scan_statement() 2256 // In the line context_p->source_end_p = source_end_p 2307 context_p->line = 1; in scanner_scan_all() 2847 context_p->line = 1; in scanner_scan_all() 2950 parser_line_counter_t start_line = context_p->token.line; in scanner_scan_all() 2973 context_p->line = start_line; in scanner_scan_all() 3414 (int) for_info_p->expression_location.line, in scanner_scan_all() [all...] |
/third_party/node/deps/v8/src/logging/ |
H A D | log.cc | 248 Handle<Name> script_name, int line, in CodeCreateEvent() 263 name_buffer_->AppendInt(line); in CodeCreateEvent() 481 Handle<SharedFunctionInfo> shared, Handle<Name> source, int line, in CodeCreateEvent() 495 code_event.script_line = line; in CodeCreateEvent() 1381 // Although, it is possible to extract source and line from 1386 Handle<Name> script_name, int line, int column) { in CodeCreateEvent() 1392 msg << shared->DebugNameCStr().get() << " " << *script_name << ":" << line in CodeCreateEvent() 1751 int line; in ICEvent() local 1755 Address pc = isolate_->GetAbstractPC(&line, &column); in ICEvent() 1759 << kNext << line << kNex in ICEvent() 245 CodeCreateEvent(LogEventsAndTags tag, Handle<AbstractCode> code, Handle<SharedFunctionInfo> shared, Handle<Name> script_name, int line, int column) CodeCreateEvent() argument 479 CodeCreateEvent( LogEventsAndTags tag, Handle<AbstractCode> code, Handle<SharedFunctionInfo> shared, Handle<Name> source, int line, int column) CodeCreateEvent() argument 1384 CodeCreateEvent(LogEventsAndTags tag, Handle<AbstractCode> code, Handle<SharedFunctionInfo> shared, Handle<Name> script_name, int line, int column) CodeCreateEvent() argument 1780 int line = -1; MapEvent() local [all...] |
/third_party/python/Lib/test/ |
H A D | test_httplib.py | 475 for idx, line in enumerate(lines): 480 yield line + b' ' 482 yield line 566 'Request accepted, processing continues off-line') 1169 # Test lines overflowing the max line size (_MAXLINE in http.client) 1232 conn.sock = FakeSocket('Invalid status line') 1347 # Read the request header until a blank line 1349 line = reader.readline() 1350 if not line.rstrip(b"\r\n"): 1492 line [all...] |
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/command_line/hdi_operate/ |
H A D | hdi_delete_handler.py | 178 for line in hdf_service_contexts_lines:
179 temp_res = re.search(temp_re, line)
|
/kernel/linux/linux-5.10/drivers/gpio/ |
H A D | gpio-regmap.c | 46 unsigned int line = offset % gpio->ngpio_per_reg; in gpio_regmap_simple_xlate() local 50 *mask = BIT(line); in gpio_regmap_simple_xlate()
|
/kernel/linux/linux-5.10/Documentation/sphinx/ |
H A D | rstFlatTable.py | 128 line=self.lineno) 221 , line = self.directive.lineno )
|
/kernel/linux/linux-5.10/arch/sparc/kernel/ |
H A D | traps_32.c | 354 void do_BUG(const char *file, int line) argument 357 printk("kernel BUG at %s:%d!\n", file, line);
|
/kernel/linux/linux-6.6/arch/arm64/kernel/ |
H A D | machine_kexec.c | 32 static void _kexec_image_info(const char *func, int line, in _kexec_image_info() argument 37 pr_debug("%s:%d:\n", func, line); in _kexec_image_info()
|
/kernel/linux/linux-6.6/Documentation/sphinx/ |
H A D | rstFlatTable.py | 118 line=self.lineno) 211 , line = self.directive.lineno )
|
/kernel/linux/linux-6.6/arch/sparc/kernel/ |
H A D | traps_32.c | 354 void do_BUG(const char *file, int line) argument 357 printk("kernel BUG at %s:%d!\n", file, line);
|
/kernel/linux/linux-6.6/arch/um/include/shared/ |
H A D | os.h | 188 void (*flags_helper_func)(char *line), 189 void (*cache_helper_func)(char *line));
|
/kernel/linux/linux-5.10/drivers/media/cec/core/ |
H A D | cec-pin-error-inj.c | 72 bool cec_pin_error_inj_parse_line(struct cec_adapter *adap, char *line) in cec_pin_error_inj_parse_line() argument 78 char *p = line; in cec_pin_error_inj_parse_line()
|
/kernel/linux/linux-5.10/drivers/mmc/host/ |
H A D | cavium-octeon.c | 35 * Lock a single line into L2. The line is zeroed before locking 43 "cache 31, %[line]" /* Unlock the line */ in l2c_lock_line() 44 ::[line] "m" (*addr_ptr)); in l2c_lock_line() 47 /* Unlock a single line in the L2 cache. */ 53 "cache 23, %[line]" /* Unlock the line */ in l2c_unlock_line() 54 ::[line] "m" (*addr_ptr)); in l2c_unlock_line() 62 /* Round start/end to cache line boundarie in l2c_lock_mem_region() [all...] |
/kernel/linux/linux-5.10/drivers/parisc/ |
H A D | superio.c | 400 serial_port.line = 0; in superio_serial_init() 410 serial_port.line = 1; in superio_serial_init()
|
/kernel/linux/linux-5.10/include/sound/ |
H A D | core.h | 296 void __snd_printk(unsigned int level, const char *file, int line, 299 #define __snd_printk(level, file, line, format, ...) \ 307 * Works like printk() but prints the file and the line of the caller
|
/kernel/linux/linux-5.10/fs/ext4/ |
H A D | block_validity.c | 349 int ext4_check_blockref(const char *function, unsigned int line, in ext4_check_blockref() argument 364 ext4_error_inode(inode, function, line, blk, in ext4_check_blockref()
|