HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 326 - 350 of 12217) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/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)
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/Arm/
int_util.h 65 void compilerrt_abort_impl(const char *file, int line,
  /external/antlr/antlr-3.4/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/profilers/powertop/src/
process.c 42 char line[2048]; local
51 memset(line, 0, 2048);
52 if (fgets(line, 2047, file)==NULL)
54 if (!strstr(line, tokill))
56 pid = strtoul(line, NULL, 10);
67 char line[2048]; local
72 sprintf(line, "killall %s &> /dev/null", process_to_kill);
73 system(line);
77 void suggest_process_death(char *process_match, char *tokill, struct line *slines, int linecount, double minwakeups, char *comment, int weight)
  /external/autotest/client/site_tests/platform_ToolchainTests/src/
clang-fortify-common.h 8 int line; member in struct:Failure
  /external/boringssl/src/include/openssl/
thread.h 124 void (*func)(int mode, int lock_num, const char *file, int line));
128 int *num, int amount, int lock_num, const char *file, int line));
133 int line);
163 int line));
167 int mode, struct CRYPTO_dynlock_value *l, const char *file, int line));
172 const char *file, int line));
176 *CRYPTO_get_dynlock_create_callback(void))(const char *file, int line);
180 int mode, struct CRYPTO_dynlock_value *l, const char *file, int line);
184 struct CRYPTO_dynlock_value *l, const char *file, int line);
  /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/deqp/framework/opengl/
gluDefs.cpp 35 Error::Error (int error, const char* message, const char* expr, const char* file, int line)
36 : tcu::TestError (message, expr, file, line)
51 OutOfMemoryError::OutOfMemoryError (const char* message, const char* expr, const char* file, int line)
52 : tcu::ResourceError(message, expr, file, line)
65 void checkError (const RenderContext& context, const char* msg, const char* file, int line)
67 checkError(context.getFunctions().getError(), msg, file, line);
70 void checkError (deUint32 err, const char* msg, const char* file, int line)
81 throw OutOfMemoryError(msgStr.str().c_str(), DE_NULL, file, line);
83 throw Error(err, msgStr.str().c_str(), DE_NULL, file, 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/harfbuzz_ng/src/
hb-buffer-deserialize-text.hh 2 #line 1 "hb-buffer-deserialize-text.rl"
35 #line 36 "hb-buffer-deserialize-text.hh"
315 #line 91 "hb-buffer-deserialize-text.rl"
342 #line 343 "hb-buffer-deserialize-text.hh"
347 #line 348 "hb-buffer-deserialize-text.hh"
373 #line 51 "hb-buffer-deserialize-text.rl"
379 #line 55 "hb-buffer-deserialize-text.rl"
388 #line 62 "hb-buffer-deserialize-text.rl"
392 #line 63 "hb-buffer-deserialize-text.rl"
396 #line 64 "hb-buffer-deserialize-text.rl
    [all...]
  /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...]
TokenIterator.java 35 private String line; field in class:TokenIterator
45 * line, beginning with the first unquoted '#', are recognized.
49 line = null;
64 if (line == null) {
65 line = reader.readLineSkippingComments();
66 if (line == null) {
76 line = null;
84 * Return the one-based line number of the line of the last token returned by
94 * Return a string description of the position of the last line
    [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...]
TokenIterator.java 33 private String line; field in class:TokenIterator
43 * line, beginning with the first unquoted '#', are recognized.
47 line = null;
62 if (line == null) {
63 line = reader.readLineSkippingComments();
64 if (line == null) {
74 line = null;
82 * Return the one-based line number of the line of the last token returned by
92 * Return a string description of the position of the last line
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverBadSyntaxException.java 26 private final int line; field in class:JSilverBadSyntaxException
31 * Signifies line or column is not known.
39 * @param lineContent content of a line where error occurred (can be null)
41 * @param line number of a line in {@code resourceName} where error occurred (ignored if set to
49 int line, int column, Throwable cause) {
50 super(makeMessage(message, lineContent, resourceName, line, column), cause);
52 this.line = line;
57 int line, int column)
    [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/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/opencv/cv/src/
cvcalcimagehomography.cpp 51 cvCalcImageHomography( float* line, CvPoint3D32f* _center,
60 CvMat rx = cvMat( 1, 3, CV_32F, line );
74 if( !line || !_center || !_intrinsic || !_homography )
77 norm_xy = cvSqrt( line[0] * line[0] + line[1] * line[1] );
78 xy_cosa = line[0] / norm_xy;
79 xy_sina = line[1] / norm_xy;
81 norm_xz = cvSqrt( line[0] * line[0] + line[2] * line[2] )
    [all...]
  /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/framer/framer/
struct.py 34 for line in lines[2:]:
35 line = line.strip()
36 if line.startswith("}"):
39 assert line.endswith(";")
40 line = line[:-1]
41 words = line.split()
49 mo = rx_name.search(line)

Completed in 1234 milliseconds

<<11121314151617181920>>