/third_party/ffmpeg/libavformat/ |
H A D | assenc.c | 30 char *line; member 97 avio_print(s->pb, "Dialogue: ", dialogue->line, "\r\n"); in purge_dialogues() 100 av_freep(&dialogue->line); in purge_dialogues() 189 dialogue->line = av_asprintf("%s%ld,%d:%02d:%02d.%02d,%d:%02d:%02d.%02d,%s", in write_packet() 192 if (!dialogue->line) { in write_packet()
|
H A D | mpeg.c | 787 char line[MAX_LINE_SIZE]; in vobsub_read_header() local 788 int len = ff_get_line(s->pb, line, sizeof(line)); in vobsub_read_header() 793 line[strcspn(line, "\r\n")] = 0; in vobsub_read_header() 795 if (!strncmp(line, "id:", 3)) { in vobsub_read_header() 796 if (sscanf(line, "id: %63[^,], index: %u", id, &stream_id) != 2) { in vobsub_read_header() 797 av_log(s, AV_LOG_WARNING, "Unable to parse index line '%s', " in vobsub_read_header() 798 "assuming 'id: und, index: 0'\n", line); in vobsub_read_header() 816 } else if (!strncmp(line, "timestam in vobsub_read_header() [all...] |
/third_party/node/deps/v8/src/base/debug/ |
H A D | stack_trace_win.cc | 55 // Defer symbol load until they're needed, use undecorated names, and get line in InitializeSymbols() 101 // to the ostream os. The format for each line of the backtrace is: 130 // Attempt to retrieve line number information. in OutputTraceToStream() 132 IMAGEHLP_LINE64 line = {}; in OutputTraceToStream() local 133 line.SizeOfStruct = sizeof(IMAGEHLP_LINE64); in OutputTraceToStream() 135 &line_displacement, &line); in OutputTraceToStream() 137 // Output the backtrace line. in OutputTraceToStream() 147 (*os) << " (" << line.FileName << ":" << line.LineNumber << ")"; in OutputTraceToStream()
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_pipe_stipple.c | 31 /* Implement line stipple by cutting lines up into smaller lines. 32 * There are hundreds of ways to implement line stipple, this is one 108 stage->next->line(stage->next, &newprim); in emit_segment() 221 stage->line = stipple_line; in stipple_first_line() 222 stage->line(stage, header); in stipple_first_line() 229 stage->line = stipple_first_line; in stipple_flush() 243 * Create line stippler stage 256 stipple->stage.line = stipple_first_line; in draw_stipple_stage()
|
/third_party/python/Lib/idlelib/ |
H A D | grep.py | 156 search each line for the matching pattern. If the pattern is 157 found, write the file and line information to stdout (which 176 for lineno, line in enumerate(f, 1): 177 if line[-1:] == '\n': 178 line = line[:-1] 179 if prog.search(line): 180 sys.stdout.write(f"{fn}: {lineno}: {line}\n")
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | gen-indic-table.py | 47 for line in f: 49 j = line.find ('#') 51 line = line[:j] variable 53 fields = [x.strip () for x in line.split (';')]
|
/third_party/toybox/toys/pending/ |
H A D | bootchartd.c | 96 char *line = 0; in parse_config_file() local 100 for (;getline(&line, &len, fp) != -1; line = 0) { in parse_config_file() 101 char *ptr = line; in parse_config_file() 113 free(line); in parse_config_file()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | APISample_watcher.js | 104 let { line, character } = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start!); 105 console.log(` Error ${diagnostic.file.fileName} (${line + 1},${character + 1}): ${message}`); 191 var _a = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start), line = _a.line, character = _a.character;
192 console.log(" Error ".concat(diagnostic.file.fileName, " (").concat(line + 1, ",").concat(character + 1, "): ").concat(message));
|
/third_party/python/Lib/test/ |
H A D | test_exception_hierarchy.py | 72 for line in s.splitlines(): 73 line = line.strip('+- ') 74 if not line: 76 excname, _, errnames = line.partition(' ')
|
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-golang/parse-number-fxx-test-data/script/ |
H A D | test-go-strconv.go | 63 line := s.Bytes() 64 if len(line) < 32 { 68 // line looks like "1616 32323232 6464646464646464 ssssss". 70 for _, c := range line[5:13] { 74 for _, c := range line[14:30] { 77 src := string(line[31:])
|
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/osal/ |
H A D | osal_debug.c | 25 void osal_panic(const char *fmt, const char *fun, int line, const char *cond) in osal_panic() argument 27 panic(fmt, fun, line, cond); in osal_panic()
|
/third_party/mesa3d/src/gallium/frontends/lavapipe/ |
H A D | lvp_util.c | 27 __lvp_finishme(const char *file, int line, const char *format, ...) in __lvp_finishme() argument 36 fprintf(stderr, "%s:%d: FINISHME: %s\n", file, line, buffer); in __lvp_finishme()
|
/third_party/node/tools/ |
H A D | getsharedopensslhasquic.py | 19 for line in f: 20 if (re.match(regex, line)):
|
/third_party/musl/src/passwd/ |
H A D | fgetgrent.c | 6 static char *line, **mem; in fgetgrent() local 10 __getgrent_a(f, &gr, &line, &size, &mem, &nmem, &res); in fgetgrent()
|
/third_party/unity/auto/ |
H A D | extract_version.py | 9 for line in f: 10 m = ver_re.match(line)
|
/third_party/vk-gl-cts/framework/delibs/decpp/ |
H A D | deDefs.cpp | 32 void throwRuntimeError (const char* message, const char* expr, const char* file, int line) in throwRuntimeError() argument 38 msg << " at " << file << ":" << line; in throwRuntimeError() local
|
/third_party/backends/backend/ |
H A D | canon_pp.c | 137 char line[81]; /* plus 1 for a null */ in sane_init() local 184 /* just to be extra sure, the line will always have an end: */ in sane_init() 185 line[sizeof(line)-1] = '\0'; in sane_init() 193 while(sanei_config_read(line, sizeof (line) - 1, fp)) in sane_init() 195 DBG(100, "sane_init: >%s<\n", line); in sane_init() 196 if(line[0] == '#') /* ignore line comments */ in sane_init() 198 if(!strlen(line)) in sane_init() [all...] |
/third_party/googletest/googletest/include/gtest/ |
H A D | gtest.h | 575 // Returns the line where this test is defined. 576 int line() const { return location_.line; } in line() function in testing::TestInfo 1339 // RUN_ALL_TESTS(). In particular, it parses a command line for the 1607 AssertHelper(TestPartResult::Type type, const char* file, int line, 1623 : type(t), file(srcfile), line(line_num), message(msg) {} in AssertHelperData() 1627 int const line; member 1743 #define ADD_FAILURE_AT(file, line) \ 1744 GTEST_MESSAGE_AT_(file, line, "Failed", \ 1751 #define GTEST_FAIL_AT(file, line) \ 2067 ScopedTrace(const char* file, int line, const T& message) ScopedTrace() argument 2072 ScopedTrace(const char* file, int line, const char* message) ScopedTrace() argument 2076 ScopedTrace(const char* file, int line, const std::string& message) ScopedTrace() argument 2289 RegisterTest(const char* test_suite_name, const char* test_name, const char* type_param, const char* value_param, const char* file, int line, Factory factory) RegisterTest() argument [all...] |
/third_party/googletest/googlemock/include/gmock/ |
H A D | gmock-spec-builders.h | 244 int line() const { return line_; } in line() function in testing::internal::UntypedOnCallSpecBase 342 // line number of the statement => line_ 451 const char* file, int line) 685 ExpectationBase(const char* file, int line, const std::string& source_text); 691 int line() const { return line_; } 698 *os << FormatFileLocation(file(), line()) << " "; 843 int line_; // The line number of the expectation. 1169 // This line is here just for completeness' sake. It will never 1273 // Logs a message including file and line number information. 1275 const char* file, int line, [all...] |
/third_party/node/deps/googletest/include/gtest/ |
H A D | gtest.h | 567 // Returns the line where this test is defined. 568 int line() const { return location_.line; } in line() function in testing::TestInfo 1334 // RUN_ALL_TESTS(). In particular, it parses a command line for the 1602 AssertHelper(TestPartResult::Type type, const char* file, int line, 1618 : type(t), file(srcfile), line(line_num), message(msg) {} in AssertHelperData() 1622 int const line; member 1738 #define ADD_FAILURE_AT(file, line) \ 1739 GTEST_MESSAGE_AT_(file, line, "Failed", \ 1746 #define GTEST_FAIL_AT(file, line) \ 2062 ScopedTrace(const char* file, int line, const T& message) ScopedTrace() argument 2067 ScopedTrace(const char* file, int line, const char* message) ScopedTrace() argument 2071 ScopedTrace(const char* file, int line, const std::string& message) ScopedTrace() argument 2282 RegisterTest(const char* test_suite_name, const char* test_name, const char* type_param, const char* value_param, const char* file, int line, Factory factory) RegisterTest() argument [all...] |
/third_party/mesa3d/src/gtest/include/gtest/ |
H A D | gtest.h | 729 // Returns the line where this test is defined. 730 int line() const { return location_.line; } in line() function in testing::TestInfo 1480 // RUN_ALL_TESTS(). In particular, it parses a command line for the 1772 int line, 1790 : type(t), file(srcfile), line(line_num), message(msg) { } in AssertHelperData() 1794 int const line; member 1916 #define ADD_FAILURE_AT(file, line) \ 1917 GTEST_MESSAGE_AT_(file, line, "Failed", \ 1924 #define GTEST_FAIL_AT(file, line) \ 2223 ScopedTrace(const char* file, int line, const T& message) ScopedTrace() argument 2228 ScopedTrace(const char* file, int line, const char* message) ScopedTrace() argument 2232 ScopedTrace(const char* file, int line, const std::string& message) ScopedTrace() argument 2438 RegisterTest(const char* test_suite_name, const char* test_name, const char* type_param, const char* value_param, const char* file, int line, Factory factory) RegisterTest() argument [all...] |
/third_party/python/Modules/_io/ |
H A D | stringio.c | 84 /* Reserve one more char for line ending detection. */ in resize_buffer() 367 /* If we haven't found any line ending, we just return everything in _stringio_readline() 399 PyObject *line; in stringio_iternext() local 407 line = _stringio_readline(self, -1); in stringio_iternext() 411 line = PyObject_CallMethodNoArgs((PyObject *)self, in stringio_iternext() 413 if (line && !PyUnicode_Check(line)) { in stringio_iternext() 416 "not '%.200s'", Py_TYPE(line)->tp_name); in stringio_iternext() 417 Py_DECREF(line); in stringio_iternext() 422 if (line in stringio_iternext() [all...] |
H A D | textio.c | 31 "This class provides a character and line based interface to stream\n" 110 "Only line endings translated during reading are considered.\n" 1033 Character and line based layer over a BufferedIOBase object, buffer. 1042 newline controls how line endings are handled. It can be None, '', 1048 caller. If it is '', universal newline mode is enabled, but line 1051 string, and the line ending is returned to the caller untranslated. 1054 translated to the system default line separator, os.linesep. If 2110 PyObject *line = NULL, *chunks = NULL, *remaining = NULL; in _textiowrapper_readline() local 2152 line = self->decoded_chars; in _textiowrapper_readline() 2155 Py_INCREF(line); in _textiowrapper_readline() 3062 PyObject *line; textiowrapper_iternext() local [all...] |
/drivers/peripheral/audio/test/sample/tools/get_mem_excel/ |
H A D | get_mem_excel.py | 84 for line in list_file.readlines(): 85 pid_list.append(line.replace('\n', '')) 124 for line in datas: 125 fields = line.split()
|
/foundation/ability/ability_runtime/js_environment/interfaces/inner_api/ |
H A D | source_map.h | 77 bool TranslateUrlPositionBySourceMap(std::string& url, int& line, int& column); 83 bool GetLineAndColumnNumbers(int& line, int& column, SourceMapData& targetMap, std::string& url); 93 void GetPosInfo(const std::string& temp, int32_t start, std::string& line, std::string& column); 95 std::string GetSourceInfo(const std::string& line, const std::string& column,
|