HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 226 - 250 of 6722) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/LibC/Main/Arm/
int_util.h 65 void compilerrt_abort_impl(const char *file, int line,
  /external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CharStreamState.cs 43 /// 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/autotest/client/site_tests/platform_ToolchainTests/src/
clang-fortify-common.h 8 int line; member in struct:Failure
  /external/bsdiff/
logging.cc 10 unsigned int line,
12 : LogMessage(file, line, severity, -1) {}
16 unsigned int line,
24 stream_ << severity << " " << timestamp << " " << file << ":" << line << ": "; local
  /external/clang/test/Analysis/
taint-tester.cpp 19 char *line = 0; local
24 while ((read = T.getline(&line, &len, stdin)) != -1) {
25 printf("%s", line); // no warning
27 free(line);
  /external/elfutils/libdw/
dwarf_decl_line.c 1 /* Get line number of beginning of given function.
53 Dwarf_Word line; local
57 &line);
60 if (line > INT_MAX)
66 *linep = line;
  /external/hyphenation-patterns/de/
create_chr.py 24 for line in pat_file:
25 line = line.strip() variable
26 all_chars |= set(line)
  /external/icu/android_icu4j/src/main/java/android/icu/impl/data/
ResourceReader.java 45 * The one-based line number. Has the special value -1 before the
47 * but before the first line is read.
146 * Read and return the next line of the file or <code>null</code>
153 String line = reader.readLine(); local
154 if (line != null && (line.charAt(0) == '\uFFEF' ||
155 line.charAt(0) == '\uFEFF')) {
156 line = line.substring(1);
158 return line;
171 String line = readLine(); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/data/
ResourceReader.java 43 * The one-based line number. Has the special value -1 before the
45 * but before the first line is read.
144 * Read and return the next line of the file or <code>null</code>
151 String line = reader.readLine(); local
152 if (line != null && (line.charAt(0) == '\uFFEF' ||
153 line.charAt(0) == '\uFEFF')) {
154 line = line.substring(1);
156 return line;
169 String line = readLine(); local
    [all...]
  /external/libnl/doc/
resolve-asciidoc-refs.py 10 for line in open(sys.argv[1], 'r'):
11 complete_file += line
24 for line in open(sys.argv[1], 'r'):
25 print rc.sub(translate, line),
  /external/linux-kselftest/tools/testing/selftests/memfd/
common.c 22 char *line = NULL; local
28 while (getline(&line, &linelen, f) > 0) {
29 if (sscanf(line, "Hugepagesize: %lu kB", &hps) == 1) {
35 free(line);
  /external/llvm/test/MC/AsmParser/
directive_line.s 5 .line
6 .line 1
  /external/ltp/testcases/kernel/sched/sched_stress/
sched.c 90 void sys_error(const char *msg, const char *file, int line)
95 error(syserr_msg, file, line);
105 void error(const char *msg, const char *file, int line)
107 fprintf(stderr, "ERROR [file: %s, line: %d] %s\n", file, line, msg);
  /external/proguard/src/proguard/
GPL.java 70 String line = reader.readLine(); local
71 if (line == null)
76 line = line.trim();
77 if (line.startsWith("at "))
79 line = line.substring(2).trim();
80 line = trimSuffix(line, '(');
81 line = trimSuffix(line, '.')
    [all...]
  /external/python/cpython2/Demo/comparisons/
regextest.py 5 # Read a file of (extended per egrep) regular expressions (one per line),
6 # and apply those to all files whose names are listed on the command line.
14 # - reads patterns from stdin, scans files given as command line arguments
15 # - produces output in the format <file>:<lineno>:<line>
36 line = fp.readline()
37 if not line:
40 if prog.search(line):
41 print "%s:%s:%s" % (file, lineno, line),
  /external/python/cpython2/Demo/scripts/
lpwatch.py 3 # Watch line printer queue(s).
50 for line in pipe:
51 fields = line.split()
70 line = line.strip()
71 if line == 'no entries':
72 line = name + ': idle'
73 elif line[-22:] == ' is ready and printing':
74 line = name
75 lines.append(line)
    [all...]
  /external/python/cpython2/Tools/scripts/
fixps.py 17 line = f.readline()
18 if not re.match('^#! */usr/local/bin/python', line):
24 line = re.sub('/usr/local/bin/python',
25 '/usr/bin/env python', line)
26 print filename, ':', repr(line)
28 f.write(line)
  /external/python/cpython3/Tools/scripts/
fixps.py 17 line = f.readline()
18 if not re.match('^#! */usr/local/bin/python', line):
24 line = re.sub('/usr/local/bin/python',
25 '/usr/bin/env python', line)
26 print(filename, ':', repr(line))
28 f.write(line)
  /external/selinux/mcstrans/share/util/
mlstrans-test 37 for line in f:
38 if line.startswith('#'):
40 if not line.strip():
42 line = line.rstrip('\n')
43 if line.find("==") != -1:
44 t, r = line.split("==")
48 t, r = line.split("=")
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
RuleSet.java 25 package org.slf4j.migrator.line;
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AsmParser/
directive_line.s 5 .line
6 .line 1
  /external/tensorflow/tensorflow/core/platform/
logging.h 32 // "severity" as if it came from a LOG call at "fname:line"
33 void LogString(const char* fname, int line, int severity,
  /external/toolchain-utils/mem_tests/
total_mem_sampled.py 26 for line in my_file:
27 if 'heap profile: ' not in line:
29 memory_used = line.strip().split(':')[-1].strip().split(']')[0].strip()
30 total_diff = compute_total_diff(line, base_time)
  /external/u-boot/include/dt-bindings/pinctrl/
stm32-pinfunc.h 25 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line))
27 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))
  /external/v8/src/base/
tsan.h 28 void AnnotateIgnoreReadsBegin(const char* file, int line);
29 void AnnotateIgnoreReadsEnd(const char* file, int line);
30 void AnnotateIgnoreWritesBegin(const char* file, int line);
31 void AnnotateIgnoreWritesEnd(const char* file, int line);

Completed in 1254 milliseconds

1 2 3 4 5 6 7 8 91011>>