/packages/apps/Browser/res/values/ |
integers.xml | 15 <!-- The number of lines in the suggestions dropdown in landscape --> 17 <!-- The number of lines in the suggestions dropdown in portrait -->
|
/external/chromium-trace/trace-viewer/tracing/tracing/extras/importer/linux_perf/ |
exynos_parser_test.html | 16 var lines = [ 26 var m = new tr.Model(lines.join('\n'), false); 36 var lines = [ 54 var m = new tr.Model(lines.join('\n'), false); 75 var lines = [ 101 var m = new tr.Model(lines.join('\n'), false);
|
/external/libpng/scripts/ |
dfn.awk | 19 out_count=0 # count of output lines 32 # Output can be sorted; two lines are recognized 39 # Do a very simple, slow, sort; notice that blank lines won't be 69 # Sometimes GCC splits the PNG_DFN lines; we know this has happened 71 # case it is essential to reject lines that start with '#' because those 202 print "no definition lines found"
|
/external/libvpx/libvpx/tools/ |
diff.py | 24 self.lines = [] 28 l = len(self.lines) 31 self.lines.append(line[1:]) 35 return len(self.lines) == self.length 48 self.lines = [] 65 self.lines.append(line)
|
cpplint.py | 800 """Tracks current function name and the number of lines in its body.""" 826 """Report if too many lines in function body. 846 ' %s has %d non-comment lines' 847 ' (error triggered by exceeding %d lines).' % ( [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/ |
diff.py | 24 self.lines = [] 28 l = len(self.lines) 31 self.lines.append(line[1:]) 35 return len(self.lines) == self.length 48 self.lines = [] 65 self.lines.append(line)
|
cpplint.py | 800 """Tracks current function name and the number of lines in its body.""" 826 """Report if too many lines in function body. 846 ' %s has %d non-comment lines' 847 ' (error triggered by exceeding %d lines).' % ( [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
LineIterator.java | 26 * An Iterator over the lines in a <code>Reader</code>. 63 * Constructs an iterator of the lines for a <code>Reader</code>. 81 * Indicates whether the <code>Reader</code> has more lines. 85 * @return <code>true</code> if the Reader has more lines 140 throw new NoSuchElementException("No more lines"); 150 * lines of a larger file. If you do not close the iterator
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
base64mime.py | 19 in To:, From:, Cc:, etc. fields, as well as Subject: lines. 72 the Base64 encoding), and subsequent lines must start with a space. 110 lines = [] 116 lines.append('=?%s?b?%s?=' % (charset, line)) 117 # Glue the lines together and return it. BAW: should we be able to 120 return joiner.join(lines)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
base64mime.py | 19 in To:, From:, Cc:, etc. fields, as well as Subject: lines. 72 the Base64 encoding), and subsequent lines must start with a space. 110 lines = [] 116 lines.append('=?%s?b?%s?=' % (charset, line)) 117 # Glue the lines together and return it. BAW: should we be able to 120 return joiner.join(lines)
|
/external/icu/icu4c/source/tools/ctestfw/ |
uperf.cpp | 86 lines(NULL), numLines(0), line_mode(TRUE), 102 lines(NULL), numLines(0), line_mode(TRUE), 213 if (lines != NULL) { 214 return lines; // don't do it again 216 lines = new ULine[MAXLINES]; 226 lines[numLines].name = new UChar[len]; 227 lines[numLines].len = len; 228 memcpy(lines[numLines].name, line, len * U_SIZEOF_UCHAR); 238 delete []lines; 242 memcpy(newLines, lines, numLines*sizeof(ULine)) [all...] |
/external/libvncserver/utils/ |
git2cl.pl | 94 my @lines = split /\n/, $text; 96 $lines[0] =~ s/^$indent1\s+/$indent1/; 98 for @lines[1..$#lines]; 99 my $newtext = join "\n", @lines; 107 my @lines = split (/\n/, $files_list); 108 my $last_line = pop (@lines); 128 my @lines = split (/\n/, $text); 129 while (@lines) # Don't use `foreach' here, it won't work. 131 my $this_line = shift (@lines); [all...] |
/external/skia/src/core/ |
SkScan_Hairline.cpp | 143 // we don't just draw 4 lines, 'cause that can leave a gap in the bottom-right 224 const int lines = 1 << level; 226 Sk2s dt(SK_Scalar1 / lines); 229 SkASSERT((unsigned)lines < SK_ARRAY_COUNT(tmp)); 235 for (int i = 1; i < lines; ++i) { 239 tmp[lines] = pts[2]; 240 lineproc(tmp, lines + 1, clip, blitter); 291 const int lines = compute_cubic_segs(pts); 292 SkASSERT(lines > 0); 293 if (1 == lines) { [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/ |
edgelist.py | 64 lines : string 65 Lines of data in adjlist format. 174 def parse_edgelist(lines, comments='#', delimiter=None, 176 """Parse lines of an edge list representation of a graph. 182 The graph corresponding to lines 192 Marker for comment lines 202 >>> lines = ["1 2", 205 >>> G = nx.parse_edgelist(lines, nodetype = int) 213 >>> lines = ["1 2 {'weight':3}", 216 >>> G = nx.parse_edgelist(lines, nodetype = int [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
textwrap.py | 50 the maximum width of wrapped lines (unless break_long_words 56 string that will be prepended to all lines save the first 73 be broken, and some lines might be longer than 'width'. 79 Drop leading and trailing whitespace from lines. 246 Wrap a sequence of text chunks and return a list of lines of 248 some lines may be longer than this.) Chunks correspond roughly 254 lines, but apart from that whitespace is preserved. 256 lines = [] 272 if lines: 281 # is the very beginning of the text (ie. no lines started yet) [all...] |
traceback.py | 126 lines = format_exception_only(etype, value) 127 for line in lines: 136 these lines are concatenated and printed, exactly the same text is 155 SyntaxError exceptions, it contains several lines that (when 181 lines = [] 188 lines.append(' File "%s", line %d\n' % (filename, lineno)) 190 lines.append(' %s\n' % badline.strip()) 196 lines.append(' %s^\n' % ''.join(caretspace)) 199 lines.append(_format_final_exc_line(stype, value)) 200 return lines [all...] |
nntplib.py | 184 2: also print raw lines read and sent before stripping CR/LF""" 295 # Parse lines into "group last first flag" 312 resp, lines = self.descriptions(group) 313 if len(lines) == 0: 316 return lines[0][1] 328 lines = [] 332 lines.append(match.group(1, 2)) 333 return resp, lines 418 - list: the lines of the article's header""" 430 - list: the lines of the article's body or an empty lis [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
textwrap.py | 50 the maximum width of wrapped lines (unless break_long_words 56 string that will be prepended to all lines save the first 73 be broken, and some lines might be longer than 'width'. 79 Drop leading and trailing whitespace from lines. 246 Wrap a sequence of text chunks and return a list of lines of 248 some lines may be longer than this.) Chunks correspond roughly 254 lines, but apart from that whitespace is preserved. 256 lines = [] 272 if lines: 281 # is the very beginning of the text (ie. no lines started yet) [all...] |
traceback.py | 126 lines = format_exception_only(etype, value) 127 for line in lines: 136 these lines are concatenated and printed, exactly the same text is 155 SyntaxError exceptions, it contains several lines that (when 181 lines = [] 188 lines.append(' File "%s", line %d\n' % (filename, lineno)) 190 lines.append(' %s\n' % badline.strip()) 196 lines.append(' %s^\n' % ''.join(caretspace)) 199 lines.append(_format_final_exc_line(stype, value)) 200 return lines [all...] |
nntplib.py | 184 2: also print raw lines read and sent before stripping CR/LF""" 295 # Parse lines into "group last first flag" 312 resp, lines = self.descriptions(group) 313 if len(lines) == 0: 316 return lines[0][1] 328 lines = [] 332 lines.append(match.group(1, 2)) 333 return resp, lines 418 - list: the lines of the article's header""" 430 - list: the lines of the article's body or an empty lis [all...] |
/external/doclava/src/com/google/doclava/ |
DocFile.java | 79 // Any blank lines are ignored. 82 Matcher lines = LINE.matcher(filedata); local 84 while (lines.find()) { 85 line = lines.group(1); 88 start = lines.end(); 124 // Any blank lines are ignored. 127 Matcher lines = LINE.matcher(filedata); local 129 while (lines.find()) { 130 line = lines.group(1); 133 start = lines.end() [all...] |
/development/scripts/ |
stack_core.py | 25 def ConvertTrace(lines): 28 tracer.ConvertTrace(lines) 76 # Examples of matched trace lines include lines from tombstone files like: 79 # Or lines from AndroidFeedback crash report system logs like: 83 # Examples of matched value lines include: 89 # Lines from 'code around' sections of the output will be matched before 90 # value lines because otheriwse the 'code around' sections will be confused as 91 # value lines. 140 def ConvertTrace(self, lines) [all...] |
/docs/source.android.com/src/source/ |
code-lines.jd | 35 Accordingly, we maintain a number of "code lines" to clearly separate the current stable 37 and maintenance of the Android code lines into the larger product development cycle. 42 referring to these as "code lines" instead of "branches" simply because at any given moment 74 <img src="{@docRoot}images/code-lines.png" alt="code-line diagram" id="figure1" > 111 "Experimental" code-lines are established to capture changes from the community so they can 132 "#about-private-code-lines">About Private Codelines</a> for details. 157 <h2 id="about-private-code-lines">
|
/external/clang/lib/ARCMigrate/ |
FileRemapper.cpp | 71 SmallVector<StringRef, 64> lines; 72 fileBuf.get()->getBuffer().split(lines, "\n"); 74 for (unsigned idx = 0; idx+3 <= lines.size(); idx += 3) { 75 StringRef fromFilename = lines[idx]; 77 if (lines[idx+1].getAsInteger(10, timeModified)) 78 return report("Invalid file data: '" + lines[idx+1] + "' not a number", 80 StringRef toFilename = lines[idx+2];
|
/external/clang/lib/Format/ |
UnwrappedLineParser.h | 35 /// within an unwrapped line does not affect any other unwrapped lines. 135 // Comments are sorted into unwrapped lines by whether they are in the same 143 // The parsed lines. Only added to through \c CurrentLines. 144 SmallVector<UnwrappedLine, 8> Lines; 146 // Preprocessor directives are parsed out-of-order from other unwrapped lines. 151 // New unwrapped lines are added via CurrentLines. 152 // Usually points to \c &Lines. While parsing a preprocessor directive when
|