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

12 3 4 5 6 7 8 91011>>

  /frameworks/native/opengl/libs/tools/
glentrygen 26 while (my $line = <>) {
27 next if $line =~ /^\//;
28 next if $line =~ /^#/;
29 next if $line =~ /^\s*$/;
30 if ($line !~ /^GL_API(CALL)?\s+(.+)\s+GL_APIENTRY\s+([\w]+)\s*\(([^\)]+)\);/) {
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/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/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);
  /sdk/apigenerator/src/com/android/apigenerator/
ApiParseException.java 30 public int line; field in class:ApiParseException
42 this.line = ((ApiParseException) cause).line;
46 public ApiParseException(String message, int line) {
48 this.line = line;
53 if (line > 0) {
54 return super.getMessage() + " line " + line;
  /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...]
  /bionic/libc/stdlib/
assert.c 37 __assert(const char *file, int line, const char *failedexpr)
40 "assertion \"%s\" failed: file \"%s\", line %d\n",
41 failedexpr, file, line);
47 __assert2(const char *file, int line, const char *func, const char *failedexpr)
50 "assertion \"%s\" failed: file \"%s\", line %d, function \"%s\"\n",
51 failedexpr, file, line, func);
  /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/bouncycastle/src/main/java/org/bouncycastle/util/io/pem/
PemReader.java 25 String line = readLine(); local
27 if (line != null && line.startsWith(BEGIN))
29 line = line.substring(BEGIN.length());
30 int index = line.indexOf('-');
31 String type = line.substring(0, index);
45 String line; local
50 while ((line = readLine()) != null)
52 if (line.indexOf(":") >= 0
    [all...]
  /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 22 void __assert(const char *file, int line, const char *failedexpr)
24 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d", failedexpr, file, line);
28 void __assert2(const char *file, int line, const char *func, const char *failedexpr)
30 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d, function \"%s\"",
31 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/valgrind/dynamic_annotations/
dynamic_annotations.c 61 const char *file, int line, const volatile void *lock) {DYNAMIC_ANNOTATIONS_IMPL}
63 const char *file, int line, const volatile void *lock) {DYNAMIC_ANNOTATIONS_IMPL}
65 const char *file, int line, const volatile void *lock, long is_w) {DYNAMIC_ANNOTATIONS_IMPL}
67 const char *file, int line, const volatile void *lock, long is_w) {DYNAMIC_ANNOTATIONS_IMPL}
69 const char *file, int line, const volatile void *barrier, long count,
72 const char *file, int line, const volatile void *barrier) {DYNAMIC_ANNOTATIONS_IMPL}
74 const char *file, int line, const volatile void *barrier) {DYNAMIC_ANNOTATIONS_IMPL}
76 const char *file, int line, const volatile void *barrier) {DYNAMIC_ANNOTATIONS_IMPL}
79 const char *file, int line, const volatile void *cv,
82 const char *file, int line, const volatile void *cv) {DYNAMIC_ANNOTATIONS_IMPL
    [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...]
  /frameworks/av/media/libstagefright/foundation/
hexdump.cpp 37 AString line; local
42 line.append(tmp);
46 line.append(' ');
49 line.append(" ");
52 line.append(tmp);
56 line.append(' ');
64 line.append((char)data[offset + i]);
66 line.append('.');
70 ALOGI("%s", line.c_str());

Completed in 263 milliseconds

12 3 4 5 6 7 8 91011>>