/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_linecol.c | 1 /* Return column in line. 23 dwarf_linecol (Dwarf_Line *line, int *colp) 25 if (line == NULL) 28 *colp = line->column;
|
/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) {
|
/external/e2fsprogs/install-utils/ |
convfstab | 12 while read LINE 14 set -- $LINE 19 echo "$LINE" 27 echo "Don't have a clue about \"$LINE\"." >&2 28 echo "$LINE" 51 echo "$LINE $DEF_FLAGS $DUMP $PASS" 54 echo "$LINE $DUMP $PASS" 57 echo "$LINE $PASS" 60 echo "$LINE" 67 echo "Warning: One empty line removed." >& [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/bison/examples/ |
extexi | 64 # #line report the line number of the *next* line. 68 input = "#line " (FNR + 1) " \"" FILENAME "\"\n"; 78 # No spurious end of line: use printf. 96 # We have to handle CONTENTS line per line, since anchors in AWK are 98 function normalize(contents, i, lines, n, line, res) { 104 line = lines[i]; 106 # Whole line commands [all...] |
/external/oprofile/libpopt/ |
poptconfig.c | 14 static void configLine(poptContext con, char * line) 30 if (strncmp(line, con->appName, nameLength)) return; 32 line += nameLength; 33 if (*line == '\0' || !isspace(*line)) return; 35 while (*line != '\0' && isspace(*line)) line++; 36 entryType = line; 37 while (*line == '\0' || !isspace(*line)) line++ [all...] |
/external/webkit/WebKitTools/Scripts/ |
split-file-by-class | 41 $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 . "\n" [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ATResponseParser.java | 26 private String line; field in class:ATResponseParser 33 ATResponseParser (String line) 35 this.line = line; 49 char c = line.charAt(tokStart); 67 char c = line.charAt(i); 86 return line.substring(tokStart, tokEnd); 92 return next < line.length(); 98 int len = line.length(); 111 char c = line.charAt(next++) [all...] |
/external/icu4c/layoutex/ |
playout.cpp | 143 pl_closeLine(pl_line *line) 145 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; 151 pl_countLineRuns(const pl_line *line) 153 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line; 163 pl_getLineAscent(const pl_line *line) 165 ParagraphLayout::Line *ll = (ParagraphLayout::Line *) line [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/webkit/WebCore/manual-tests/inspector/ |
display-sql-transaction-error.html | 16 <li>Enter the following text on the query input line: <code>INSERT INTO DisplaySQLTransactionError (test) VALUES (NULL)</code></li> 18 <p>If the line of text you entered remains and an error line is output below 20 <p>If the line of text you entered disappears and no error line is output, you 22 <p>If the line of text you entered remains and no error line is output, then
|
/external/webkit/WebKitTools/iExploder/tools/ |
osx_last_crash.rb | 16 File.open(filename).readlines.each { |line| 17 #puts line 19 if line =~ /^Date.*(200.*)/ 23 if line =~ /^Thread \d+ Crashed/ 30 stackTrace << line 42 stackTrace.each { |line| 43 puts line
|
/external/icu4c/test/intltest/ |
textfile.h | 33 * Read a line terminated by ^J or ^M or ^M^J, and convert it from 35 * included in 'line'. 36 * @return TRUE if a line was read, or FALSE if the EOF 39 UBool readLine(UnicodeString& line, UErrorCode& ec); 42 * Read a line, ignoring blank lines and lines that start with 45 * @return TRUE if a line was read, or FALSE if the EOF 48 UBool readLineSkippingComments(UnicodeString& line, UErrorCode& ec, 52 * Return the line number of the last line returned by readLine().
|
/external/qemu/ |
gen-skin.py | 45 line = " " 50 line = line + "," 54 print line 55 line = " " 58 line = line + "%3d" % d 65 if len(line) > 0: 66 print line
|
/development/samples/SampleSyncAdapter/samplesyncadapter_server/ |
index.yaml | 5 # index.yaml file manually, remove the above marker line (the line 7 # manually, move them above the marker line. The index.yaml file is
|
/development/tools/findunused/ |
removeunusedresources | 26 read LINE NUM 27 while [ "$LINE" != "" ] 29 if [ "Z$LINE" = "Z-----------------------------------------------------------" ] 33 elif [ "$LINE" = "$app" ] 39 find res | grep -w $LINE | { 48 echo WARNING unexpected result for $LINE 53 grep -Rwl $LINE res | { 60 echo REMOVING STRING $LINE from $RESLINE 61 xmlstarlet ed -P -S -d "/resources/string[@name='$LINE']" $RESLINE > tf$$ 65 echo REMOVING $LINE from $RESLIN [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
ArrowKeyMovementMethodTest.java | 50 private static final String THREE_LINES_TEXT = "first line\nsecond line\nlast line"; 277 // first line 278 // second |line 279 // last line 284 // |first line 285 // second |line 286 // last line 294 // second |line [all...] |
/frameworks/base/core/jni/ |
android_os_Debug.cpp | 93 char line[1024]; local 107 if(fgets(line, 1024, fp) == 0) return; 115 len = strlen(line); 117 line[--len] = 0; 120 if (len > 18 && line[17] == '-') skip = true; 122 start = strtoul(line, 0, 16); 124 if (strstr(line, "[heap]")) { 126 } else if (strstr(line, "/dalvik-LinearAlloc")) { 128 } else if (strstr(line, "/mspace/dalvik-heap")) { 130 } else if (strstr(line, "/dalvik-heap-bitmap/")) 236 char line[1024]; local [all...] |
/bootable/recovery/tools/ota/ |
add-property-tag.c | 30 // Return nonzero if the tag should be added to this line. 31 int should_tag(const char *line, const char *propname) { 32 const char *prop = strstr(line, propname); 37 for (ptr = line; ptr < prop && isspace(*ptr); ++ptr) ; 38 if (ptr != prop) return 0; // Must be at the beginning of the line 44 // Remove existing tags from the line, return the following number (if any) 45 int remove_tag(char *line, const char *tag) { 46 char *pos = strstr(line, tag); 55 // Write line to output with the tag added, adding a number (if >0) 56 void write_tagged(FILE *out, const char *line, const char *tag, int number) 109 char line[4096]; local [all...] |
/external/v8/test/mjsunit/ |
debug-sourceinfo.js | 29 // For this test to work this file MUST have CR LF line endings.
68 // This is the last line of entire file (note: starting at 0).
70 // This is the last column of last line (note: starting at 0 and +2, due
74 // This magic number is the length or the first line comment (actually number
82 // The position of the first line of d(), i.e. "x = 1 ;".
84 // The line # of the first line of d() (note: starting at 0).
102 // Test that when running through source positions the position, line and
105 var line;
variable 111 if (line == location.line) { [all...] |
/external/webkit/LayoutTests/http/tests/appcache/ |
local-content-expected.txt | 1 CONSOLE MESSAGE: line 0: Not allowed to load local resource: stdio.h
|
/external/webkit/WebCore/manual-tests/gtk/ |
caret-browsing.html | 3 <p>Manual test for Caret Browsing. Resize your window until the first paragraph fills at least two lines of text . Enable caret browsing mode (usually by pressing theF7 key). Press down. Now you should be on the second line of the first paragraph. Press up. Now you should be on the first line again. Now press Ctrl+Down.</p> 4 <p>You should be on the first line of the second paragraph now. Press Ctrl+Down again.</p> 5 <p>You should be on the first line of the third paragraph now. Press Ctrl+Up, and you should be back on the second paragraph.</p>
|
/system/core/libacc/tests/data/ |
b2071670.c | 6 // The following line used to incorrectly error: "Incompatible pointer or array types"
|