HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 26 - 50 of 3501) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium/base/third_party/dynamic_annotations/
dynamic_annotations.c 54 const char *file, int line, const volatile void *lock){}
56 const char *file, int line, const volatile void *lock){}
58 const char *file, int line, const volatile void *lock, long is_w){}
60 const char *file, int line, const volatile void *lock, long is_w){}
62 const char *file, int line, const volatile void *barrier, long count,
65 const char *file, int line, const volatile void *barrier) {}
67 const char *file, int line, const volatile void *barrier) {}
69 const char *file, int line, const volatile void *barrier) {}
72 const char *file, int line, const volatile void *cv,
75 const char *file, int line, const volatile void *cv){
    [all...]
  /external/clang/test/CodeGen/
compound-assign-overflow.c 17 #line 100
24 #line 200
33 #line 300
  /external/elfutils/libdwfl/
dwfl_linecu.c 1 /* Fetch the module containing a source line record returned by libdwfl.
55 dwfl_linecu (Dwfl_Line *line)
57 if (line == NULL)
60 struct dwfl_cu *cu = dwfl_linecu_inline (line);
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
echo_wsh.py 43 line = request.ws_stream.receive_message()
44 if line is None:
46 if isinstance(line, unicode):
47 request.ws_stream.send_message(line, binary=False)
48 if line == _GOODBYE_MESSAGE:
51 request.ws_stream.send_message(line, binary=True)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemReader.java 25 String line = readLine(); local
27 while (line != null && !line.startsWith(BEGIN))
29 line = readLine();
32 if (line != null)
34 line = line.substring(BEGIN.length());
35 int index = line.indexOf('-');
36 String type = line.substring(0, index);
50 String line; local
    [all...]
  /frameworks/native/opengl/libs/tools/
glenumsgen 21 while (my $line = <STDIN>) {
22 next if $line =~ /^\//;
24 next if $line =~ /_BIT(\d+_|\s+)/;
25 if ($line !~ /^#define\s+(\S+)\s+(0x\S+)/) {
  /external/clang/utils/analyzer/
SumTimerInfo.py 35 for line in f:
36 if ("Miscellaneous Ungrouped Timers" in line) :
38 if (("Analyzer Total Time" in line) and (Mode == 1)) :
39 s = line.split()
44 if ((("warning generated." in line) or ("warnings generated" in line)) and Mode == 1) :
45 s = line.split()
47 if (("The # of functions analysed (as top level)" in line) and (Mode == 1)) :
48 s = line.split()
50 if (("The % of reachable basic blocks" in line) and (Mode == 1))
    [all...]
  /system/core/sh/
mkinit.sh 51 while IFS=; read -r line; do
52 [ "$line" = x ]
53 case "$line " in
59 set -- $line
69 read -r line
70 decles="${decles}${line}${nl}"
71 [ "$line" != "};" ]
80 def=${line#MKINIT}
91 set -- $line
95 [ "$line" = "${line%$backslash}" ] || continu
    [all...]
  /build/core/
filter_symbols.sh 15 $NM -g -fp $1 | while read -a line
17 type=${line[1]}
20 echo "$PREFIX${line[0]}$SUFFIX # ${line[1]}"
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitTestInput.java 34 public int line; // line number in the script field in class:gUnitTestInput
36 public gUnitTestInput(String input, boolean isFile, int line) {
39 this.line = line;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
CharStreamState.java 32 * 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/iptables/include/iptables/
internal.h 11 extern int line;
  /external/llvm/test/MC/ARM/
full_line_comment.s 2 # this is a full line comment starting at column 1
8 # .long 1 this line is commented out
  /external/llvm/test/MC/AsmParser/
directive_line.s 4 .line
5 .line 1
  /frameworks/wilhelm/src/
assert.c 24 void __assert(const char *file, int line, const char *failedexpr)
26 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d", failedexpr, file, line);
30 void __assert2(const char *file, int line, const char *func, const char *failedexpr)
32 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d, function \"%s\"",
33 failedexpr, file, line, func);
  /system/core/liblinenoise/
linenoise.h 1 /* linenoise.h -- guerrilla line editing library against the idea that a
2 * line editing lib needs to be 20,000 lines of C code.
38 int linenoiseHistoryAdd(const char *line);
  /external/webkit/Source/WebKit/win/WebKit.vcproj/
FixMIDLHeaders.pl 57 foreach my $line (@contents) {
58 if ($line =~ /^\/\* header files for imported files \*\//) {
60 } elsif ($line =~ /^#include "oaidl\.h"/) {
63 } elsif ($line =~ /^#include "ocidl\.h"/) {
66 } elsif ($line =~ /^#include "IGEN_DOM/ && $state == 3) {
68 } elsif ($line =~ /^#include "(IGEN_DOM.*)\.h"/ && $state == 4) {
72 print OUT $line;
  /external/webkit/Tools/Scripts/
SpacingHeuristics.pm 59 my $line = shift;
60 my $isOnlyWhiteSpace = ($line =~ m/^\s+$/);
61 $pendingEmptyLines .= $line if ($isOnlyWhiteSpace);
67 my ($out, $line) = @_;
69 printPendingEmptyLines($out, $line);
71 print $out $line;
76 my $line = shift;
77 $previousAllowedLine = $line;
83 my $line = shift;
85 if (!($pendingEmptyLines eq "") && !($previousAllowedLine =~ m/{\s*$/) && !($line =~ m/^\s*}/))
    [all...]
  /external/webkit/Source/WebCore/
make-export-file-generator 31 def line_for_output line
32 return line.chomp if line =~ /#/
33 " printf(\"#{line.chomp}\\n\");"
42 <%- input.each_line do |line| -%>
43 <%= line_for_output line %>
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_config.c 32 static int assign_string_if_matches(char const *line, char const *argument,
35 static int assign_long_if_matches(char const *line, char const *argument,
37 static void read_line(PERF_Config *sConfig, char const *line, char const *tag);
38 static char const *get_value_if_matches(char const *line, char const *argument);
103 * Arg2 configuration line (trimmed of trailing white
116 void read_line(PERF_Config *cfg, char const *line, char const *tag)
121 while (*line && isspace(*line)) line++;
124 if (!*line || *line == '#') return
179 char line[PERF_CONFIG_LINELENGTH]; local
    [all...]
  /external/proguard/src/proguard/obfuscate/
MappingReader.java 59 String line = reader.readLine(); local
61 if (line == null)
66 line = line.trim();
70 if (line.endsWith(":"))
74 className = processClassMapping(line, mappingProcessor);
80 processClassMemberMapping(className, line, mappingProcessor);
103 * Parses the given line with a class mapping and processes the
107 private String processClassMapping(String line,
113 int arrowIndex = line.indexOf("->")
    [all...]
  /external/v8/tools/
utils.py 36 for line in open(name):
37 if '#' in line:
38 line = line[:line.find('#')]
39 line = line.strip()
40 if len(line) == 0:
42 list.append(line)
  /external/valgrind/main/memcheck/tests/
long_namespace_xml.stderr.exp 9 <line>...</line>
10 <line>...</line>
11 <line>...</line>
12 <line>...</line>
43 <line>...</line>
    [all...]
  /bionic/libc/tools/
genserv.py 43 for line in f.xreadlines():
44 if len(line) > 0 and line[-1] == "\n":
45 line = line[:-1]
46 if len(line) > 0 and line[-1] == "\r":
47 line = line[:-1]
49 line = string.strip(line
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CharStream.as 45 /** ANTLR tracks the line information automatically */
46 function get line():int;
48 /** Because this stream can rewind, we need to be able to reset the line */
49 function set line(line:int):void;
53 /** The index of the character relative to the beginning of the line 0..n-1 */

Completed in 1613 milliseconds

12 3 4 5 6 7 8 91011>>