Searched refs:line (Results 1 - 25 of 957) sorted by relevance

1234567891011>>

/external/elfutils/libdw/
H A Ddwarf_lineno.c1 /* Return line number.
23 dwarf_lineno (Dwarf_Line *line, int *linep) argument
25 if (line == NULL)
28 *linep = line->line;
H A Ddwarf_lineaddr.c1 /* Return line address.
23 dwarf_lineaddr (Dwarf_Line *line, Dwarf_Addr *addrp) argument
25 if (line == NULL)
28 *addrp = line->addr;
H A Ddwarf_linebeginstatement.c23 dwarf_linebeginstatement (Dwarf_Line *line, bool *flagp) argument
25 if (line == NULL)
28 *flagp = line->is_stmt;
H A Ddwarf_lineblock.c23 dwarf_lineblock (Dwarf_Line *line, bool *flagp) argument
25 if (line == NULL)
28 *flagp = line->basic_block;
H A Ddwarf_linecol.c1 /* Return column in line.
23 dwarf_linecol (Dwarf_Line *line, int *colp) argument
25 if (line == NULL)
28 *colp = line->column;
H A Ddwarf_lineendsequence.c23 dwarf_lineendsequence (Dwarf_Line *line, bool *flagp) argument
25 if (line == NULL)
28 *flagp = line->end_sequence;
H A Ddwarf_lineepiloguebegin.c23 dwarf_lineepiloguebegin (Dwarf_Line *line, bool *flagp) argument
25 if (line == NULL)
28 *flagp = line->epilogue_begin;
H A Ddwarf_lineprologueend.c23 dwarf_lineprologueend (Dwarf_Line *line, bool *flagp) argument
25 if (line == NULL)
28 *flagp = line->prologue_end;
H A Ddwarf_linesrc.c1 /* Find line information for address.
23 dwarf_linesrc (Dwarf_Line *line, Dwarf_Word *mtime, Dwarf_Word *length) argument
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
[all...]
/external/oprofile/libutil/
H A Dop_cpufreq.c21 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/
H A DOldWebAssertions.c29 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) argument
36 void WebReportError(const char *file, int line, const char *function, const char *format, ...) argument
/external/chromium/base/
H A Ddynamic_annotations.cc11 extern "C" void AnnotateRWLockCreate(const char *file, int line, argument
13 extern "C" void AnnotateRWLockDestroy(const char *file, int line, argument
15 extern "C" void AnnotateRWLockAcquired(const char *file, int line, argument
17 extern "C" void AnnotateRWLockReleased(const char *file, int line, argument
19 extern "C" void AnnotateCondVarWait(const char *file, int line, argument
22 extern "C" void AnnotateCondVarSignal(const char *file, int line, argument
24 extern "C" void AnnotateCondVarSignalAll(const char *file, int line, argument
26 extern "C" void AnnotatePublishMemoryRange(const char *file, int line, argument
29 extern "C" void AnnotatePCQCreate(const char *file, int line, argument
31 extern "C" void AnnotatePCQDestroy(const char *file, int line, argument
33 AnnotatePCQPut(const char *file, int line, const volatile void *pcq) argument
35 AnnotatePCQGet(const char *file, int line, const volatile void *pcq) argument
37 AnnotateNewMemory(const char *file, int line, const volatile void *mem, long size) argument
40 AnnotateExpectRace(const char *file, int line, const volatile void *mem, const char *description) argument
43 AnnotateBenignRace(const char *file, int line, const volatile void *mem, const char *description) argument
46 AnnotateMutexIsUsedAsCondVar(const char *file, int line, const volatile void *mu) argument
48 AnnotateTraceMemory(const char *file, int line, const volatile void *arg) argument
50 AnnotateThreadName(const char *file, int line, const char *name) argument
52 AnnotateIgnoreReadsBegin(const char *file, int line) argument
53 AnnotateIgnoreReadsEnd(const char *file, int line) argument
54 AnnotateIgnoreWritesBegin(const char *file, int line) argument
55 AnnotateIgnoreWritesEnd(const char *file, int line) argument
56 AnnotateNoOp(const char *file, int line, const volatile void *arg) argument
[all...]
/external/v8/tools/
H A Dutils.py36 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/webkit/WebKitTools/pywebsocket/example/
H A Decho_wsh.py43 line = msgutil.receive_message(request)
44 msgutil.send_message(request, line)
45 if line == _GOODBYE_MESSAGE:
/external/webkit/WebKitTools/Scripts/webkitpy/style/processors/
H A Dcommon.py36 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/
H A Dgenteststub.py36 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...]
/external/chromium/net/ftp/
H A Dftp_ctrl_response_buffer.cc21 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
67 ParseLine( const std::string& line) argument
[all...]
/external/webkit/WebKit/win/WebKit.vcproj/
H A DFixMIDLHeaders.pl57 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/
H A DSpacingHeuristics.pm59 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
[all...]
H A Dsplit-file-by-class41 $filename =~ m/^(\w+)\.h$/ or die "Command line args must be .h files.\n";
51 while (my $line = <OLDFILE>) {
53 $classDefs{$currentClassName} .= $line;
54 if ($line =~ /^$classIndent};\s*$/) {
58 if ($line =~ /^(\s*)class\s+(\w+)\s+[^;]*$/) {
61 $classDefs{$currentClassName} .= $line;
64 $fileContent .= $line;
96 foreach my $line (@lines) {
97 if ($line =~ /^###CLASS###(\w+)/) {
102 print NEWHEADER $line
[all...]
/external/webkit/WebKitTools/Scripts/webkitpy/
H A Ddiff_parser.py45 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 i
[all...]
/external/proguard/src/proguard/obfuscate/
H A DMappingReader.java59 String line = reader.readLine();
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, argument
113 int arrowIndex = line
140 processClassMemberMapping(String className, String line, MappingProcessor mappingProcessor) argument
[all...]
/external/chromium/third_party/icu/source/tools/genprops/misc/
H A Ducdstrip.c47 static char line[2000]; local
50 while(gets(line)!=NULL) {
51 if(strtol(line, &end, 16)>=0 && end!=line) {
53 *endOfData(line)=0;
55 puts(line);
/external/icu4c/tools/genprops/misc/
H A Ducdstrip.c47 static char line[2000]; local
50 while(gets(line)!=NULL) {
51 if(strtol(line, &end, 16)>=0 && end!=line) {
53 *endOfData(line)=0;
55 puts(line);
/external/icu4c/tools/genprops/
H A Ducdstrip.c47 static char line[2000]; local
50 while(gets(line)!=NULL) {
51 if(strtol(line, &end, 16)>=0 && end!=line) {
53 *endOfData(line)=0;
55 puts(line);

Completed in 528 milliseconds

1234567891011>>