/external/webkit/WebKitTools/CygwinDownloader/ |
cygwin-downloader.py | 88 for line in downloaded_packages_file.readlines(): 89 if line[0] == "@": 90 current_package = line[2:-1] 92 elif line[:10] == "category: ": 94 line = "category: Base\n" variable 95 if "Base" in set(line[10:-1].split()): 97 elif line[:10] == "requires: ": 98 packages[current_package]["requires"] = line[10:].split() 100 elif line[:9] == "install: " and not len(packages[current_package]["path"]): 101 end_of_path = line.find(" ", 9 [all...] |
/frameworks/base/core/java/android/text/style/ |
LeadingMarginSpan.java | 40 * @param first true if the request is for the first line of a paragraph, 55 * @param top the top of the line 56 * @param baseline the baseline of the line 57 * @param bottom the bottom of the line 59 * @param start the start of the line 60 * @param end the end of the line 61 * @param first true if this is the first line of its paragraph 62 * @param layout the layout containing this line 74 * this object is attached that the "first line of paragraph" margin 80 * attached that the "first line" margin will apply to [all...] |
TabStopSpan.java | 20 * Represents a single tab stop on a line. 27 * line. 42 * the line
|
/bionic/libc/kernel/tools/ |
utils.py | 112 def parse_line(self, line): 113 pos_lparen = line.find('(') 116 E("missing left parenthesis in '%s'" % line) 119 pos_rparen = line.rfind(')') 121 E("missing or misplaced right parenthesis in '%s'" % line) 124 return_type = line[:pos_lparen].strip().split() 126 E("missing return type in '%s'" % line) 137 E("misplaced colon in '%s'" % line) 143 syscall_params = line[pos_lparen+1:pos_rparen].split(',') 149 number = line[pos_rparen+1:].strip( [all...] |
/external/openssl/crypto/ |
mem.c | 78 static void *default_malloc_ex(size_t num, const char *file, int line) 80 static void *(*malloc_ex_func)(size_t, const char *file, int line) 85 const char *file, int line) 87 static void *(*realloc_ex_func)(void *, size_t, const char *file, int line) 93 static void *default_malloc_locked_ex(size_t num, const char *file, int line) 95 static void *(*malloc_locked_ex_func)(size_t, const char *file, int line) 114 static int (*push_info_func)(const char *info, const char *file, int line) 132 static int (*push_info_func)(const char *info, const char *file, int line) 213 int (*push_info_fn)(const char *info, const char *file, int line), 274 void *CRYPTO_malloc_locked(int num, const char *file, int line) [all...] |
/external/icu4c/tools/gensprep/ |
filterRFC3454.pl | 92 while(defined ($line=<$inFH>)){ 93 next unless $line=~ /Start\sTable/; 94 if($line =~ /A.1/){ 97 if($line =~ /B.1/ && defined $b1){ 100 if($line =~ /B.2/ && defined $b2){ 103 if($line =~ /B.3/ && defined $b3){ 106 if($line =~ /C.1.1/ && defined $c11 ){ 107 createProhibitedTable($inFH,$outfile,$line); 109 if($line =~ /C.1.2/ && defined $c12 ){ 110 createProhibitedTable($inFH,$outfile,$line); [all...] |
/external/libpcap/ |
grammar.c | 277 #line 1 "grammar.y" 434 #line 138 "grammar.y" 450 /* Line 196 of yacc.c. */ 451 #line 452 "y.tab.c" 462 /* Line 219 of yacc.c. */ 463 #line 464 "y.tab.c" 752 /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ [all...] |
/external/icu4c/tools/toolutil/ |
uparse.c | 68 char line[300]; local 92 while(T_FileStream_readLine(file, line, sizeof(line))!=NULL) { 93 length=(int32_t)uprv_strlen(line); 96 while(length>0 && (line[length-1]=='\r' || line[length-1]=='\n')) { 97 line[--length]=0; 101 * detect a line with # @missing: 102 * start parsing after that, or else from the beginning of the line 105 start=(char *)getMissingLimit(line); [all...] |
/external/webkit/JavaScriptCore/runtime/ |
ExceptionHelpers.cpp | 79 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset); local 80 JSObject* exception = Error::create(exec, ReferenceError, makeString("Can't find variable: ", ident.ustring()), line, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->sourceURL()); 99 // Get up to 20 characters of context to the left and right of the divot, clamping to the line. 117 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset); local 118 UString errorMessage = createErrorMessage(exec, codeBlock, line, divotPoint, divotPoint + endOffset, value, makeString("not a valid argument for '", op, "'")); 119 JSObject* exception = Error::create(exec, TypeError, errorMessage, line, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->sourceURL()); 131 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset); local 139 UString errorMessage = createErrorMessage(exec, codeBlock, line, startPoint, divotPoint, value, "not a constructor"); 140 JSObject* exception = Error::create(exec, TypeError, errorMessage, line, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->sourceURL()); 152 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOf (…) local 182 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset); local [all...] |
/system/core/toolbox/ |
vmstat.c | 62 char line[MAX_LINE]; variable 165 while (fgets(line, MAX_LINE, f)) { 166 sscanf(line, "MemFree: %ld kB", &s->mem_free); 167 sscanf(line, "AnonPages: %ld kB", &s->mem_anon); 168 sscanf(line, "Mapped: %ld kB", &s->mem_mapped); 169 sscanf(line, "Slab: %ld kB", &s->mem_slab); 183 while (fgets(line, MAX_LINE, f)) { 184 if (!strncmp(line, "cpu ", 4)) { 185 sscanf(line, "cpu %ld %ld %ld %ld %ld %ld %ld", 189 sscanf(line, "intr %ld", &s->sys_in) [all...] |
schedtop.c | 77 static int read_line(char *line, size_t line_size) 81 fd = open(line, O_RDONLY); 84 len = read(fd, line, line_size - 1); 88 line[len] = '\0'; 94 char line[1024]; local 106 sprintf(line, "/proc/%d/task/%d/schedstat", pid, tid); 108 sprintf(line, "/proc/%d/schedstat", pid); 109 if (read_line(line, sizeof(line))) 111 if(sscanf(line, "%llu %llu %u", &info->exec_time, &info->delay_time, &info->run_count) != 3 [all...] |
/prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/info/ |
ld.info | 78 * Options:: Command Line Options 84 2.1 Command Line Options 87 The linker supports a plethora of command-line options, but in actual 100 Some of the command-line options to `ld' may be specified at any 101 point in the command line. However, options which refer to files, such 103 option appears in the command line, relative to the object files and 106 occurrences (those further to the left on the command line) of that 112 command-line options, except that an object file argument may not be 151 driver (e.g. `gcc') then all the linker command line options should be 160 Here is a table of the generic command line switches accepted by th [all...] |
/prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/info/ |
ld.info | 80 * Options:: Command Line Options 86 2.1 Command Line Options 89 The linker supports a plethora of command-line options, but in actual 102 Some of the command-line options to `ld' may be specified at any 103 point in the command line. However, options which refer to files, such 105 option appears in the command line, relative to the object files and 108 occurrences (those further to the left on the command line) of that 114 command-line options, except that an object file argument may not be 153 driver (e.g. `gcc') then all the linker command line options should be 162 Here is a table of the generic command line switches accepted by th [all...] |
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/info/ |
ld.info | 78 * Options:: Command Line Options 84 2.1 Command Line Options 87 The linker supports a plethora of command-line options, but in actual 100 Some of the command-line options to `ld' may be specified at any 101 point in the command line. However, options which refer to files, such 103 option appears in the command line, relative to the object files and 106 occurrences (those further to the left on the command line) of that 112 command-line options, except that an object file argument may not be 151 driver (e.g. `gcc') then all the linker command line options should be 160 Here is a table of the generic command line switches accepted by th [all...] |
/dalvik/libcore/x-net/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
Logger.java | 80 String line = ""; local 87 line += prefix + tail + delimiter; 90 super.println(line); 91 line = ""; 94 super.println(line);
|
/external/webkit/WebKitTools/Scripts/webkitpy/style/processors/ |
text.py | 42 lines = (["// adjust line numbers to make the first line 1."] + lines) 45 for line_number, line in enumerate(lines): 46 if "\t" in line: 49 "Line contains tab character.")
|
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/ |
parse.c | 11 #line 10 "./parse.y" 111 #line 112 "y.tab.c" 401 #line 776 "./parse.y" 506 /* line_warning - report a warning at a given line, unless -w was given */ 508 void line_warning( str, line ) 510 int line; 517 line_pinpoint( warning, line ); 522 /* line_pinpoint - write out a message, pinpointing it at the given line */ 524 void line_pinpoint( str, line ) 526 int line; [all...] |
/external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/ |
memorizingfile.py | 69 """Override file.readline and memorize the line read.""" 71 line = self._file.readline() 72 if line and len(self._memorized_lines) < self._max_memorized_lines: 73 self._memorized_lines.append(line) 74 return line
|
/frameworks/base/awt/java/awt/font/ |
LineMetrics.java | 26 * positioned with respect to the base line, such as ascent, descent, and 73 * Gets the thickness of strike through line. 75 * @return the thickness of strike through line. 80 * Gets the offset of the strike through line. 82 * @return the offset of the strike through line.
|
/external/webkit/WebKitTools/android/flex-2.5.4a/ |
initscan.c | 0 #line 2 "scan.c" 175 /* Whether we're considered to be at the beginning of a line. [all...] |
/dalvik/libcore/xml/src/main/java/org/xml/sax/ |
Locator.java | 82 * Return the line number where the current document event ends. 83 * Lines are delimited by line ends, which are defined in 90 * In some cases, these "line" numbers match what would be displayed 94 * <p>The return value is an approximation of the line number 98 * <p>If possible, the SAX driver should provide the line position 100 * event. The first line is line 1.</p> 102 * @return The line number, or -1 if none is available. 111 * the last line end. 125 * <p>If possible, the SAX driver should provide the line position [all...] |
/external/apache-http/src/org/apache/http/message/ |
LineFormatter.java | 45 * There are individual methods for formatting a request line, a 46 * status line, or a header line. The formatting does <i>not</i> include the 47 * trailing line break sequence CR-LF. 99 * Formats a request line. 104 * @param reqline the request line to format 106 * @return the formatted request line 114 * Formats a status line. 119 * @param statline the status line to format 121 * @return the formatted status line [all...] |
/external/e2fsprogs/lib/ss/ |
listen.c | 58 char *line; local 77 line = (*info->readline)(current_info->prompt); 81 line = input; 83 line = NULL; 87 if (line == NULL) { 93 cp = strchr(line, '\n'); 96 if (cp == line) 101 (*info->add_history)(line); 103 code = ss_execute_line (sci_idx, line); 105 register char *c = line; [all...] |
/external/e2fsprogs/misc/ |
mke2fs.conf.5.in | 19 delimited by square braces: [ ]. Within each section, each line 54 line character. 73 stanza, or by an command-line option provided by the user. 120 command-line option 126 specify a blocksize on the command line, and the filesystem-type 131 specify one on the command line, and the filesystem-type 137 specify one on the command line, and the filesystem-type 180 command-line option to 185 specify a blocksize on the command line. 189 specify one on the command line [all...] |
/external/grub/stage2/ |
cmdline.c | 1 /* cmdline.c - the device-independent GRUB text command line */ 49 /* Print a helpful message for the command-line interface. */ 53 printf (" [ Minimal BASH-like line editing is supported. For the first word, TAB\n" 97 /* Initialize the data for the command-line. */ 117 /* Enter the command-line interface. HEAP is used for the command-line 142 /* Get the command-line with the minimal BASH-like interface. */ 155 /* If BUILTIN cannot be run in the command-line, skip it. */ 174 /* Finish the line count. */ 180 command-line buffer. If an error occurs, return non-zero, otherwis [all...] |