HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 1 - 25 of 1256) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /hardware/ril/reference-ril/
misc.c 18 /** returns 1 if line starts with prefix, 0 if it does not */
19 int strStartsWith(const char *line, const char *prefix)
21 for ( ; *line != '\0' && *prefix != '\0' ; line++, prefix++) {
22 if (*line != *prefix) {
misc.h 18 /** returns 1 if line starts with prefix, 0 if it does not */
19 int strStartsWith(const char *line, const char *prefix);
  /external/elfutils/libdw/
dwarf_lineno.c 1 /* Return line number.
23 dwarf_lineno (Dwarf_Line *line, int *linep)
25 if (line == NULL)
28 *linep = line->line;
dwarf_lineaddr.c 1 /* Return line address.
23 dwarf_lineaddr (Dwarf_Line *line, Dwarf_Addr *addrp)
25 if (line == NULL)
28 *addrp = line->addr;
dwarf_linebeginstatement.c 23 dwarf_linebeginstatement (Dwarf_Line *line, bool *flagp)
25 if (line == NULL)
28 *flagp = line->is_stmt;
dwarf_lineblock.c 23 dwarf_lineblock (Dwarf_Line *line, bool *flagp)
25 if (line == NULL)
28 *flagp = line->basic_block;
dwarf_linecol.c 1 /* Return column in line.
23 dwarf_linecol (Dwarf_Line *line, int *colp)
25 if (line == NULL)
28 *colp = line->column;
dwarf_lineendsequence.c 23 dwarf_lineendsequence (Dwarf_Line *line, bool *flagp)
25 if (line == NULL)
28 *flagp = line->end_sequence;
dwarf_lineepiloguebegin.c 23 dwarf_lineepiloguebegin (Dwarf_Line *line, bool *flagp)
25 if (line == NULL)
28 *flagp = line->epilogue_begin;
dwarf_lineprologueend.c 23 dwarf_lineprologueend (Dwarf_Line *line, bool *flagp)
25 if (line == NULL)
28 *flagp = line->prologue_end;
dwarf_linesrc.c 1 /* Find line information for address.
23 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length)
25 if (line == NULL)
28 if (line->file >= line->files->nfiles)
35 *mtime = line->files->info[line->file].mtime;
38 *length = line->files->info[line->file].length;
40 return line->files->info[line->file].name
    [all...]
  /external/oprofile/libutil/
op_cpufreq.c 21 char * line = NULL; local
28 line = op_get_line(fp);
30 if (!line)
33 if (line[0] == '\0') {
34 free(line);
39 if (sscanf(line, "cpu MHz : %lf", &fval) == 1)
42 if (sscanf(line, "clock : %lfMHz", &fval) == 1)
45 if (sscanf(line, "cycle frequency [Hz] : %lu", &uval) == 1) {
50 if (sscanf(line, "Cpu0ClkTck : %lx", &uval) == 1) {
56 free(line);
    [all...]
  /external/webkit/WebKit/mac/Misc/
OldWebAssertions.c 29 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion);
30 void WebReportError(const char *file, int line, const char *function, const char *format, ...);
32 void WebReportAssertionFailure(const char *file, int line, const char *function, const char *assertion)
36 void WebReportError(const char *file, int line, const char *function, const char *format, ...)
  /frameworks/base/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*\(([^\)]+)\);/) {
  /build/tools/droiddoc/src/
SourcePositionInfo.java 21 this.line = 0;
25 public SourcePositionInfo(String file, int line, int column)
28 this.line = line;
35 this.line = that.line;
50 int line = that.line; local
55 line++;
59 return new SourcePositionInfo(that.file, line, 0)
67 int line = that.line-1; \/\/ -1 because, well, it seems to work local
93 public int line; field in class:SourcePositionInfo
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/style/processors/
common.py 36 def check_no_carriage_return(line, line_number, error):
37 """Check that a line does not end with a carriage return.
39 Returns true if the check is successful (i.e. if the line does not
43 line: A string that is the line to check.
44 line_number: The line number.
49 if line.endswith("\r"):
  /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/webkit/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/WebKitTools/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...]
  /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/webkit/WebKitTools/Scripts/webkitpy/
diff_parser.py 45 def git_diff_to_svn_diff(line):
46 """Converts a git formatted diff line to a svn formatted line.
49 line: A string representing a line of the diff.
58 matched = match(pattern, line)
61 return line
68 first_diff_line: The first filename line of a diff file.
69 If this line is git formatted, we'll return a
87 If deleted_line_number is zero, it means this line is newly added
    [all...]
  /build/tools/apicheck/src/com/android/apicheck/
SourcePositionInfo.java 25 this.line = 0;
29 public SourcePositionInfo(String file, int line, int column)
32 this.line = line;
39 this.line = that.line;
54 int line = that.line; local
59 line++;
63 return new SourcePositionInfo(that.file, line, 0)
71 int line = that.line-1; \/\/ -1 because, well, it seems to work local
121 public int line; field in class:SourcePositionInfo
    [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...]

Completed in 1388 milliseconds

1 2 3 4 5 6 7 8 91011>>