HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 1 - 25 of 1567) 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, ...)
  /external/chromium/base/
dynamic_annotations.cc 11 extern "C" void AnnotateRWLockCreate(const char *file, int line,
13 extern "C" void AnnotateRWLockDestroy(const char *file, int line,
15 extern "C" void AnnotateRWLockAcquired(const char *file, int line,
17 extern "C" void AnnotateRWLockReleased(const char *file, int line,
19 extern "C" void AnnotateCondVarWait(const char *file, int line,
22 extern "C" void AnnotateCondVarSignal(const char *file, int line,
24 extern "C" void AnnotateCondVarSignalAll(const char *file, int line,
26 extern "C" void AnnotatePublishMemoryRange(const char *file, int line,
29 extern "C" void AnnotatePCQCreate(const char *file, int line,
31 extern "C" void AnnotatePCQDestroy(const char *file, int line,
    [all...]
  /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"):
  /external/icu4c/tools/genuca/
genteststub.py 36 for line in openfile.readlines():
37 pos = line.find("#")
40 wrfile.write(line.rstrip()+"\n")
42 if pos >= 0: line = line[:pos]
43 line = line.rstrip() variable
44 if line:
46 wrfile.write(line+"\n")
50 if line
    [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...]
  /external/chromium/net/ftp/
ftp_ctrl_response_buffer.cc 21 ParsedLine line = lines_.front(); local
25 if (!line.is_complete || line.status_code != response_buf_.status_code) {
26 line_buf_.append(line.raw_text);
32 line_buf_ = line.status_text;
33 DCHECK_EQ(line.status_code, response_buf_.status_code);
35 if (!line.is_multiline) {
45 if (!line.is_complete)
48 response_buf_.status_code = line.status_code;
49 if (line.is_multiline)
    [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]}"
  /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/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...]

Completed in 679 milliseconds

1 2 3 4 5 6 7 8 91011>>