HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 126 - 150 of 2868) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Tools/Scripts/
parse-malloc-history 30 # based on total number of bytes allocated, and filtering based on command-line
71 my $line = $file[$i];
76 ($callCount, $byteCount) = ($line =~ /(\d+) calls for (\d+) bytes/);
84 ($byteCount) = ($line =~ /Leak: [x[:xdigit:]]* size=(\d+)/);
87 while (!($line =~ "Call stack: ")) {
89 $line = $file[$i];
100 ($byteCount) = ($line =~ /Key: (?:\d+), (\d+) bytes/);
102 $line = $file[++$i];
105 if ($line =~ /\): (.*)$/) {
110 $line = $file[++$i]
    [all...]
  /build/tools/
check_radio_versions.py 30 for line in f:
31 line = line.strip() variable
32 if line.startswith("require"):
33 key, value = line.split()[1].split("=", 1)
59 for line in f:
60 line = line.strip() variable
61 if not line or line.startswith("#"): continu
    [all...]
  /external/harfbuzz/contrib/tables/
unicode_parse_common.py 4 def cut_comment(line):
5 first_hash = line.find('#')
7 return line
8 return line[:first_hash]
12 def line_split(line):
13 '''Split a line based on a semicolon separator.'''
16 return [normalise(x) for x in line.split(';')]
36 for line in tokens:
37 if len(line) == 2:
38 codepoints = codepoints_parse(line[0]
    [all...]
  /external/markdown/markdown/extensions/
imagelinks.py 51 for line in lines:
53 if line.startswith("<~~~~~~~"):
60 new_lines.append(line)
64 line = line.strip()
66 if line.endswith("~~~~~~>") or not line:
98 elif line[1:6] == "~~~~~" :
101 parts = line.split()
102 line = parts[0
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/
initscan.c 0 #line 2 "scan.c"
175 /* Whether we're considered to be at the beginning of a line.
    [all...]
  /external/qemu/android/utils/
lineinput.c 18 char* line; member in struct:LineInput
31 /* Error codes returned by the internal line reading function(s) */
44 input->line = input->line0;
60 /* Grow the line buffer a bit */
64 char* line; local
67 line = input->line;
68 if (line == input->line0)
69 line = NULL;
71 AARRAY_RENEW(line, input->line_size)
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.cpp 51 bool TParseContext::parseVectorFields(const TString& compString, int vecSize, TVectorFields& fields, int line)
55 error(line, "illegal vector field selection", compString.c_str(), "");
117 error(line, "illegal vector field selection", compString.c_str(), "");
124 error(line, "vector field selection out of range", compString.c_str(), "");
130 error(line, "illegal - vector component fields not from the same set", compString.c_str(), "");
144 bool TParseContext::parseMatrixFields(const TString& compString, int matSize, TMatrixFields& fields, int line)
152 error(line, "illegal length of matrix field selection", compString.c_str(), "");
158 error(line, "illegal matrix field selection", compString.c_str(), "");
165 error(line, "illegal matrix field selection", compString.c_str(), "");
173 error(line, "illegal matrix field selection", compString.c_str(), "")
    [all...]
  /external/chromium/chrome/browser/importer/
mork_reader.cc 121 std::string line;
122 if (!ReadLine(&line) ||
123 line.compare("// <!-- <mdb:mork:z v=\"1.4\"/> -->") != 0)
127 while (ReadLine(&line)) {
130 size_t len = line.size();
131 while (idx < len && line[idx] == ' ')
136 // Look at the line to figure out what section type this is
137 if (StartsWithASCII(&line[idx], "< <(a=c)>", true)) {
140 ParseMap(line, idx, &column_name_map);
155 } else if (StartsWithASCII(&line[idx], "<(", true))
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCharStreamState.h 37 NSUInteger line; variable
42 @property (assign) NSUInteger line; variable
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/formats/
antlr.stg 36 location(file, line, column) ::= "<file>:<line>:<column>:"
gnu.stg 36 location(file, line, column) ::= "<file>:<line>:"
vs2005.stg 36 location(file, line, column) ::= "<file>(<line>,<column>)"
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PEMUtil.java 60 String line; local
63 while ((line = readLine(in)) != null)
65 if (line.startsWith(_header1) || line.startsWith(_header2))
71 while ((line = readLine(in)) != null)
73 if (line.startsWith(_footer1) || line.startsWith(_footer2))
78 pemBuf.append(line);
  /external/chromium/third_party/libjingle/source/talk/base/
checks.cc 35 void Fatal(const char* file, int line, const char* format, ...) {
44 << ", line " << line << "\n#" << msg
  /external/clang/test/SemaCXX/
cxx98-compat-pedantic.cpp 8 #line 32767 // ok
9 #line 32768 // expected-warning {{#line number greater than 32767 is incompatible with C++98}}
  /external/dropbear/libtomcrypt/testprof/
test_driver.c 3 void run_cmd(int res, int line, char *file, char *cmd)
6 fprintf(stderr, "%s (%d)\n%s:%d:%s\n", error_to_string(res), res, file, line, cmd);
  /external/guava/guava/src/com/google/common/io/
LineBuffer.java 22 * Package-protected abstract class that implements the line reading
23 * algorithm used by {@link LineReader}. Line separators are per {@link
24 * java.io.BufferedReader}: line feed, carriage return, or carriage
34 /** Holds partial line contents. */
35 private StringBuilder line = new StringBuilder(); field in class:LineBuffer
36 /** Whether a line ending with a CR is pending processing. */
40 * Process additional characters from the stream. When a line separator
41 * is found the contents of the line and the line separator itself
53 // Last call to add ended with a CR; we can handle the line now
    [all...]
  /external/libvpx/vpx_mem/memory_manager/
hmm_dflt_abort.c 30 /* Print abort message, file and line. Terminate execution.
32 void hmm_dflt_abort(const char *file, const char *line)
47 fputs(" Line: ", stderr);
48 fputs(line, stderr);
  /external/valgrind/main/VEX/unused/
arena.h 41 const char *file, int line);
43 long nbytes, const char *file, int line);
  /external/webkit/Source/WebKit/scripts/
generate-webkitversion.pl 62 while (my $line = <INPUT>) {
63 chomp $line;
64 if ($line =~ /^MAJOR_VERSION\s+=\s+\d+;/) {
65 $line =~ s/^(MAJOR_VERSION)\s+(=)\s+(\d+);/$3/;
66 $major_version = $line;
68 if ($line =~ /^MINOR_VERSION\s+=\s+\d+;/) {
69 $line =~ s/^(MINOR_VERSION)\s+(=)\s+(\d+);/$3/;
70 $minor_version = $line;
  /frameworks/base/core/java/com/android/internal/os/
AndroidPrintStream.java 46 protected void log(String line) {
47 Log.println(priority, tag, line);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/util/
GrabProcessOutput.java 59 * Processes an stdout message line.
60 * @param line The stdout message line. Null when the reader reached the end of stdout.
62 public void out(@Nullable String line);
64 * Processes an stderr message line.
65 * @param line The stderr message line. Null when the reader reached the end of stderr.
67 public void err(@Nullable String line);
97 String line = errReader.readLine();
99 output.err(line);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/discovery/
NdkDiscoveryUpdater.java 78 String line = reader.readLine(); local
79 while (line != null) {
80 checkBuildLine(line);
81 line = reader.readLine();
150 private static class Line {
151 private final String line; field in class:NdkDiscoveryUpdater.Line
154 public Line(String line) {
155 this.line = line;
210 Line line = new Line(text); local
265 String line = reader.readLine(); local
295 String line = reader.readLine(); local
    [all...]
  /external/bison/src/
location.c 38 loc.start.line, loc.start.column);
43 loc.end.line, loc.end.column - 1);
44 else if (loc.start.line < loc.end.line)
45 fprintf (out, "-%d.%d", loc.end.line, loc.end.column - 1);
  /external/clang/bindings/python/examples/cindex/
cindex-includes.py 13 A simple command line tool for dumping a Graphviz description (dot) that
45 line = " ";
49 line += name(i.include)
51 line += '%s->%s' % (name(i.source), name(i.include))
52 line += "\n";
53 out.write(line)

Completed in 1019 milliseconds

1 2 3 4 56 7 8 91011>>