/external/valgrind/main/drd/tests/ |
run_openmp_test | 30 while read line 32 if [ "${line%: no symbols}" != "${line}" ]; then 35 elif [ "${line% gomp_barrier_init}" != "${line}" ]; then
|
/frameworks/native/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*\(([^\)]+)\);/) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
base64mime.py | 21 This module does not do the line wrapping or end-of-line character conversion 23 decoding. To deal with the various line wrapping issues, use the email.header 68 """Encode a single header line with Base64 encoding in a given charset. 71 encoding, except that each line must be intelligently wrapped (respecting 77 End-of-line characters (\\r, \\n, \\r\\n) will be automatically converted 78 to the canonical email line separator \\r\\n unless the keep_eols 81 Each line of the header will be terminated in the value of eol, which 90 with each line wrapped at, at most, maxlinelen characters (defaults to 76 100 # Base64 encode each line, in encoded chunks no greater than maxlinelen i [all...] |
errors.py | 40 def __init__(self, line=None): 41 self.line = line 50 """A message had a continuation line as its first header line."""
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
base64mime.py | 21 This module does not do the line wrapping or end-of-line character conversion 23 decoding. To deal with the various line wrapping issues, use the email.header 68 """Encode a single header line with Base64 encoding in a given charset. 71 encoding, except that each line must be intelligently wrapped (respecting 77 End-of-line characters (\\r, \\n, \\r\\n) will be automatically converted 78 to the canonical email line separator \\r\\n unless the keep_eols 81 Each line of the header will be terminated in the value of eol, which 90 with each line wrapped at, at most, maxlinelen characters (defaults to 76 100 # Base64 encode each line, in encoded chunks no greater than maxlinelen i [all...] |
errors.py | 40 def __init__(self, line=None): 41 self.line = line 50 """A message had a continuation line as its first header line."""
|
/sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/ |
ISourceRevealer.java | 25 * Reveal a particular line in the given application. 28 * @param line the line to reveal 31 boolean reveal(String applicationName, String className, int line); 37 * @param lineNumber line number in the file, -1 if not known
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
poplib.py | 30 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF) 69 POP is a line-based protocol, which means large mail 71 line-by-line. 89 def _putline(self, line): 90 if self._debugging > 1: print '*put*', repr(line) 91 self.sock.sendall('%s%s' % (line, CRLF)) 96 def _putcmd(self, line): 97 if self._debugging: print '*cmd*', repr(line) 98 self._putline(line) [all...] |
quopri.py | 25 quoted. Note that line-ending tabs and spaces are always encoded, as per 47 quoted. Note that line-ending tabs and spaces are always encoded, as per 60 # RFC 1521 requires that the line ending in a space or tab must have 71 line = input.readline() 72 if not line: 77 if line[-1:] == '\n': 78 line = line[:-1] 80 # Calculate the un-length-limited encoded line 81 for c in line [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
poplib.py | 30 # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF) 69 POP is a line-based protocol, which means large mail 71 line-by-line. 89 def _putline(self, line): 90 if self._debugging > 1: print '*put*', repr(line) 91 self.sock.sendall('%s%s' % (line, CRLF)) 96 def _putcmd(self, line): 97 if self._debugging: print '*cmd*', repr(line) 98 self._putline(line) [all...] |
quopri.py | 25 quoted. Note that line-ending tabs and spaces are always encoded, as per 47 quoted. Note that line-ending tabs and spaces are always encoded, as per 60 # RFC 1521 requires that the line ending in a space or tab must have 71 line = input.readline() 72 if not line: 77 if line[-1:] == '\n': 78 line = line[:-1] 80 # Calculate the un-length-limited encoded line 81 for c in line [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fileinput.py | 36 t1 = writeTmp(1, ["Line %s of file 1\n" % (i+1) for i in range(15)]) 37 t2 = writeTmp(2, ["Line %s of file 2\n" % (i+1) for i in range(10)]) 38 t3 = writeTmp(3, ["Line %s of file 3\n" % (i+1) for i in range(5)]) 39 t4 = writeTmp(4, ["Line %s of file 4\n" % (i+1) for i in range(1)]) 45 pat = re.compile(r'LINE (\d+) OF FILE (\d+)') 54 self.assertEqual(lines[4], 'Line 5 of file 1\n') 55 self.assertEqual(lines[30], 'Line 1 of file 4\n') 63 while s and s != 'Line 6 of file 2\n': 74 self.assertEqual(fi.readline(), 'Line 1 of file 3\n') 83 sys.stdin = StringIO("Line 1 of stdin\nLine 2 of stdin\n" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_fileinput.py | 36 t1 = writeTmp(1, ["Line %s of file 1\n" % (i+1) for i in range(15)]) 37 t2 = writeTmp(2, ["Line %s of file 2\n" % (i+1) for i in range(10)]) 38 t3 = writeTmp(3, ["Line %s of file 3\n" % (i+1) for i in range(5)]) 39 t4 = writeTmp(4, ["Line %s of file 4\n" % (i+1) for i in range(1)]) 45 pat = re.compile(r'LINE (\d+) OF FILE (\d+)') 54 self.assertEqual(lines[4], 'Line 5 of file 1\n') 55 self.assertEqual(lines[30], 'Line 1 of file 4\n') 63 while s and s != 'Line 6 of file 2\n': 74 self.assertEqual(fi.readline(), 'Line 1 of file 3\n') 83 sys.stdin = StringIO("Line 1 of stdin\nLine 2 of stdin\n" [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/bootstrap/ |
scanner.c | 3 #line 1 "scanner.re" 71 #line 79 "scanner.re" 87 #line 87 "scanner.c" 110 #line 117 "scanner.re" 112 #line 112 "scanner.c" 119 #line 112 "scanner.re" 123 #line 123 "scanner.c" 127 #line 115 "scanner.re" 130 #line 130 "scanner.c" 136 #line 103 "scanner.re [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
scanner.c | 3 #line 1 "scanner.re" 71 #line 79 "scanner.re" 87 #line 87 "scanner.c" 110 #line 117 "scanner.re" 112 #line 112 "scanner.c" 119 #line 112 "scanner.re" 123 #line 123 "scanner.c" 127 #line 115 "scanner.re" 130 #line 130 "scanner.c" 136 #line 103 "scanner.re [all...] |
/external/chromium_org/chrome/tools/convert_dict/ |
aff_reader.cc | 20 // Returns true if the given line begins with the given case-sensitive 87 std::string line = ReadLine(file_); local 90 if (!got_command && !line.empty() && line[0] == '#') { 91 intro_comment_.append(line); 96 StripComment(&line); 97 if (line.empty()) 101 if (StringBeginsWith(line, "SET ")) { 103 encoding_ = line.substr(4); 105 } else if (StringBeginsWith(line, "AF ")) [all...] |
/external/chromium_org/third_party/sqlite/src/tool/ |
mksqlite3c.tcl | 38 set line [gets $in] 39 if {$line=="" && [eof $in]} break 41 regexp {#define\s+SQLITE_VERSION\s+"(.*)"} $line all VERSION 67 ** language. The code for the "sqlite3" command-line shell is also in a 84 # text of the file in-line. The file only needs to be included once. 148 set line [gets $in] 149 if {[regexp {^\s*#\s*include\s+["<]([^">]+)[">]} $line all hdr]} { 161 puts $out $line 163 } elseif {[regexp {^#ifdef __cplusplus} $line]} { 165 } elseif {[regexp {^#line} $line]} [all...] |
/external/clang/test/SemaCXX/ |
warn-reinterpret-base-class.cpp | 121 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:10-[[@LINE-1]]:26}:"static_cast" 126 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:10-[[@LINE-1]]:26}:"static_cast" 131 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:10-[[@LINE-1]]:26}:"static_cast" 154 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:9-[[@LINE-1]]:25}:"static_cast" 159 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:9-[[@LINE-1]]:25}:"static_cast [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
ArrowKeyMovementMethodTest.java | 45 private static final String THREE_LINES_TEXT = "first line\nsecond line\nlast line"; 178 // first line 179 // second |line 180 // last line 187 // |first line 188 // second |line 189 // last line 199 // second |line [all...] |
/frameworks/av/media/libstagefright/rtsp/ |
ASessionDescription.cpp | 65 AString line; local 67 // We accept both '\n' and '\r\n' line endings, if it's 69 line.setTo(desc, i, eolPos - i - 1); 71 line.setTo(desc, i, eolPos - i); 74 if (line.empty()) { 79 if (line.size() < 2 || line.c_str()[1] != '=') { 83 ALOGI("%s", line.c_str()); 85 switch (line.c_str()[0]) { 88 if (strcmp(line.c_str(), "v=0")) [all...] |
/ndk/sources/host-tools/sed-4.2.1/doc/ |
sed.info | 64 command-line options. 133 `sed' may be invoked with the following command-line options: 140 Print a usage message briefly summarizing these command-line 187 `--line-length=N' 188 Specify the default line-wrap length for the `l' command. A 209 separated by a carriage return _and_ a line feed character, and 212 this special processing and considering lines to end at a line 218 case, if the file that is specified on the command line is a 234 line as a single continuous long stream. This GNU `sed' extension 237 files, line numbers are relative to the start of each file, `$ [all...] |
/cts/tests/tests/text/src/android/text/cts/ |
StaticLayoutTest.java | 36 /* the first line must have one tab. the others not. totally 6 lines 108 * Get the line number corresponding to the specified vertical position. 109 * If you ask for a position above 0, you get 0. above 0 means pixel above the fire line 110 * if you ask for a position in the range of the height, return the pixel in line 111 * if you ask for a position below the bottom of the text, you get the last line. 129 * Return the vertical position of the top of the specified line. 130 * If the specified line is one beyond the last line, returns the bottom of the last line. 131 * A line of text contains top and bottom in height. this method just get the top of a lin [all...] |
/external/chromium_org/tools/deep_memory_profiler/lib/ |
pageframe.py | 136 for line in pfnset_f: 137 line = line.strip() 138 if line.startswith('GLOBAL_STATS:') or line.startswith('STACKTRACES:'): 140 elif line.startswith('PF: '): 141 for encoded_pfn in line[3:].split(): 152 elif line.startswith('PageSize: '): 153 self._pagesize = int(line[10:]) 154 elif line.startswith('PFN: ') [all...] |
/external/chromium_org/tools/ |
ipc_messages_log.py | 36 for line in f: 37 yield line.rstrip() 59 for line in ipc_message_lines: 61 if line.strip() == '};': 63 msgstart_index = line.find('MsgStart') 64 msg_type = line[:msgstart_index] + 'MsgStart' 67 elif line.strip() == 'enum IPCMessageStart {': 82 """Construct the meessage id given the msg_start and the line number.""" 97 for line in f: 99 match = re.match(msg_start_re, line) [all...] |
/external/icu4c/samples/layout/ |
paragraph.cpp | 94 fLines = LE_NEW_ARRAY(const ParagraphLayout::Line *, fLinesMax); 162 for (le_int32 line = 0; line < fLineCount; line += 1) { 163 delete /*(LineInfo *)*/ fLines[line]; 171 void Paragraph::addLine(const ParagraphLayout::Line *line) 174 fLines = (const ParagraphLayout::Line **) LE_GROW_ARRAY(fLines, fLinesMax + fLinesGrow); 178 fLines[fLineCount++] = line; 193 const ParagraphLayout::Line *line local 224 const ParagraphLayout::Line *line = fLines[li]; local [all...] |