Searched defs:line (Results 26 - 50 of 1454) sorted by relevance

1234567891011>>

/external/lldb/test/functionalities/command_script/import/
H A Dmain.c4 printf("Hello world.\n"); // Set break point at this line.
9 char line[100]; local
10 while (fgets(line, sizeof(line), stdin)) { // Waiting to be attached...
11 printf("input line=>%s\n", line);
/external/lldb/test/python_api/hello_world/
H A Dmain.c4 printf("Hello world.\n"); // Set break point at this line.
9 char line[100]; local
10 while (fgets(line, sizeof(line), stdin)) { // Waiting to be attached...
11 printf("input line=>%s\n", line);
/external/compiler-rt/lib/builtins/
H A Deprintf.c30 const char* line, const char* file)
32 fprintf(stderr, format, assertion_expression, line, file);
29 __eprintf(const char* format, const char* assertion_expression, const char* line, const char* file) argument
/external/elfutils/0.153/libdwfl/
H A Ddwfl_dwarf_line.c1 /* Get information from a source line record returned by libdwfl.
54 dwfl_dwarf_line (Dwfl_Line *line, Dwarf_Addr *bias) argument
56 if (line == NULL)
59 struct dwfl_cu *cu = dwfl_linecu (line);
60 const Dwarf_Line *info = &cu->die.cu->lines->info[line->idx];
/external/lldb/test/python_api/process/io/
H A Dmain.c5 char line[100]; local
7 while (fgets(line, sizeof(line), stdin)) { // Reading from stdin...
8 fprintf(stderr, "input line=>%d\n", count++);
/external/oprofile/libutil/
H A Dop_cpufreq.c21 char * line = NULL; local
28 line = op_get_line(fp);
30 if (!line)
33 if (line[0] == '\0') {
34 free(line);
39 if (sscanf(line, "cpu MHz : %lf", &fval) == 1)
42 if (sscanf(line, "clock : %lfMHz", &fval) == 1)
45 if (sscanf(line, "cycle frequency [Hz] : %lu", &uval) == 1) {
50 if (sscanf(line, "Cpu0ClkTck : %lx", &uval) == 1) {
55 if (sscanf(line, "BogoMIP
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DCharStreamState.cs43 /// need to record the state of the input stream (char index, line,
51 /// <summary>What line number is the scanner at before processing buffer[p]? </summary>
52 internal int line; field in class:Antlr.Runtime.CharStreamState
54 /// <summary>What char position 0..n-1 in line is scanner before processing buffer[p]? </summary>
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DCharStreamState.cs39 * line, etc...) so that we can rewind the state after scanning ahead.
50 /** <summary>What line number is the scanner at before processing buffer[p]?</summary> */
51 public int line; field in class:Antlr.Runtime.CharStreamState
53 /** <summary>What char position 0..n-1 in line is scanner before processing buffer[p]?</summary> */
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DCharStreamState.java32 * line, etc...) so that we can rewind the state after scanning ahead.
40 /** What line number is the scanner at before processing buffer[p]? */
41 int line; field in class:CharStreamState
43 /** What char position 0..n-1 in line is scanner before processing buffer[p]? */
/external/chromium_org/components/translate/core/browser/
H A Dtranslate_event_details.h25 // The source line in |filename| where this event was created.
26 int line; member in struct:translate::TranslateEventDetails
/external/chromium_org/skia/ext/
H A Dgoogle_logging.cc13 void SkDebugf_FileLine(const char* file, int line, bool fatal, argument
22 logging::LogMessage(file, line,
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DBufferedLineReader.cpp38 bool BufferedLineReader::getLine(String& line) argument
43 // then skip it, and then (unconditionally) return the buffered line.
60 // We found a line ending. Return the accumulated line.
81 // which case we'll return the contents of the line buffer, and
82 // reset state for the next line.)
88 // We've reached the end of the stream proper. Emit a line if the
89 // current line buffer is non-empty. (Note that if shouldReturnLine is
90 // set already, we want to return a line nonetheless.)
95 line
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DAppliedTextDecoration.cpp10 AppliedTextDecoration::AppliedTextDecoration(TextDecoration line, TextDecorationStyle style, StyleColor color) argument
11 : m_line(line)
17 AppliedTextDecoration::AppliedTextDecoration(TextDecoration line) argument
18 : m_line(line)
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebCommon.cpp38 void failedAssertion(const char* file, int line, const char* function, const char* assertion) argument
40 WTFReportAssertionFailure(file, line, function, assertion);
/external/chromium_org/third_party/angle/tests/preprocessor_tests/
H A DPreprocessorTest.cpp14 int line = 1; local
20 for (; line < token.location.line; ++line)
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dparseerr.h34 * <p>The line, offset, and context fields are optional; parsing
59 * The line on which the error occured. If the parser uses this
60 * field, it sets it to the line number of the source text line on
62 * parse does not support line numbers, the value will be <= 0.
65 int32_t line; member in struct:UParseError
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
/external/chromium_org/third_party/skia/src/utils/win/
H A DSkHRESULT.cpp12 void SkTraceHR(const char* file, unsigned long line, HRESULT hr, const char* msg) { argument
16 SkDebugf("%s(%lu) : error 0x%x: ", file, line, hr);
/external/compiler-rt/test/msan/
H A Dgetline.cc22 char *line = 0; local
24 int n = getline(&line, &len, fp);
26 assert(strcmp(line, "abcde\n") == 0);
28 n = getline(&line, &len, fp);
30 assert(strcmp(line, "12345\n") == 0);
32 free(line);
/external/deqp/framework/delibs/decpp/
H A DdeDefs.cpp32 void throwRuntimeError (const char* message, const char* expr, const char* file, int line) argument
38 msg << " at " << file << ":" << line; local
/external/icu/icu4c/source/common/unicode/
H A Dparseerr.h34 * <p>The line, offset, and context fields are optional; parsing
59 * The line on which the error occured. If the parser uses this
60 * field, it sets it to the line number of the source text line on
62 * parse does not support line numbers, the value will be <= 0.
65 int32_t line; member in struct:UParseError
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
/external/skia/src/utils/win/
H A DSkHRESULT.cpp12 void SkTraceHR(const char* file, unsigned long line, HRESULT hr, const char* msg) { argument
16 SkDebugf("%s(%lu) : error 0x%x: ", file, line, hr);
/external/srec/portable/src/
H A DpLastError.c23 void printGetLastErrorInternal(const LCHAR* text, char* file, int line) argument
48 pfprintf(PSTDERR, L("[%s:%d] %s: %s\n"), file, line, text, msg);
58 pfprintf(PSTDERR, "[%s:%d] %s, errno = %x\n", file, line, text, err);
/external/valgrind/main/gdbserver_tests/
H A Dwatchpoints.c5 static void breakme(int line) argument
7 fprintf(stderr, "breakme function called from line %d\n", line);
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DgUnitTestInput.java34 public int line; // line number in the script field in class:gUnitTestInput
36 public gUnitTestInput(String input, boolean isFile, int line) { argument
39 this.line = line;
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognitionException.as56 * knows its state (such as current input symbol and line info) that
59 * perhaps print an entire line of input not just a single token, for example.
84 /** Track the line at which the error occurred in case this is
86 * unexpected char doesn't carry the line info.
88 public var line:int; variable
93 * imaginary nodes w/o line/col info. We now search backwards looking
94 * for most recent token with line/col info, but notify getErrorHeader()
107 this.line = token.line;
115 this.line
[all...]

Completed in 589 milliseconds

1234567891011>>