/external/chromium_org/third_party/sqlite/src/tool/ |
split-sqlite3c.tcl | 21 while {[gets $in line]} { 22 if {[regexp $BEGIN $line]} break 23 puts $out1 $line 36 while {[gets $in line]>=0} { 38 append buf $line\n 39 if {[regexp $end $line]} break 62 while {[regexp $BEGIN $line]} { 65 gather_one_file $line buf n 73 while {[gets $in line]>=0} { 74 if {[regexp $BEGIN $line]} brea [all...] |
/frameworks/av/media/libstagefright/foundation/ |
hexdump.cpp | 47 AString line; local 49 appendIndent(&line, indent); 54 line.append(tmp); 58 line.append(' '); 61 line.append(" "); 64 line.append(tmp); 68 line.append(' '); 76 line.append((char)data[offset + i]); 78 line.append('.'); 83 appendTo->append(line); [all...] |
/external/chromium_org/net/tools/quic/ |
quic_server_bin.cc | 24 CommandLine* line = CommandLine::ForCurrentProcess(); local 25 if (line->HasSwitch("h") || line->HasSwitch("help")) { 38 if (line->HasSwitch("quic_in_memory_cache_dir")) { 40 line->GetSwitchValueASCII("quic_in_memory_cache_dir"); 43 if (line->HasSwitch("port")) { 45 if (base::StringToInt(line->GetSwitchValueASCII("port"), &port)) {
|
quic_client_bin.cc | 6 // on --port and requests URLs specified on the command line. 28 CommandLine* line = CommandLine::ForCurrentProcess(); local 29 if (line->HasSwitch("h") || line->HasSwitch("help")) { 41 if (line->HasSwitch("port")) { 43 if (base::StringToInt(line->GetSwitchValueASCII("port"), &port)) { 47 if (line->HasSwitch("address")) { 48 FLAGS_address = line->GetSwitchValueASCII("address"); 50 if (line->HasSwitch("hostname")) { 51 FLAGS_hostname = line->GetSwitchValueASCII("hostname") [all...] |
/external/chromium_org/tools/lsan/ |
PRESUBMIT.py | 18 for line_num, line in enumerate(f.NewContents()): 19 line = line.strip() 20 if line.startswith('#') or not line: 22 if not line.startswith('leak:'): 23 errors.append('"%s" should be "leak:..." in %s line %d' % 24 (line, f.LocalPath(), line_num))
|
/external/elfutils/libdwfl/ |
dwfl_module_getsrc_file.c | 81 inline const char *INTUSE(dwarf_line_file) (const Dwarf_Line *line) 83 return line->files->info[line->file].name; 85 inline Dwarf_Line *dwfl_line (const Dwfl_Line *line) 87 return &dwfl_linecu (line)->die.cu->lines->info[line->idx]; 89 inline const char *dwfl_line_file (const Dwfl_Line *line) 91 return INTUSE(dwarf_line_file) (dwfl_line (line)); 94 /* Search through all the line number records for a matching 95 file and line/column number. If any of the numbers is zero 101 Dwarf_Line *line = &cu->die.cu->lines->info[cnt]; local [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/valgrind/main/drd/tests/ |
annotate_barrier_xml.stderr.exp | 9 <line>...</line> 10 <line>...</line> 11 <line>...</line> 12 <line>...</line> 46 <line>...</line> [all...] |
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
tst-pcre.c | 38 char *line = NULL; local 66 if ((len = getline (&line, &line_len, f)) <= 0 67 || strncmp (line, "# PCRE", 6) != 0) 71 free (line); 77 while ((len = getline (&line, &line_len, f)) > 0) 84 if (line[len - 1] == '\n') 85 line[--len] = '\0'; 87 if (line[0] == '#') 90 if (line[0] == '\0') 99 if (line[0] == '/' [all...] |
/external/valgrind/main/memcheck/tests/ |
xml1.stderr.exp | 9 <line>...</line> 10 <line>...</line> 11 <line>...</line> 12 <line>...</line> 43 <line>...</line> [all...] |
/external/chromium_org/v8/tools/ |
jsmin.py | 93 declarations. (These last two must be on one line including the opening 194 The compressed version hopefully does the same thing. Line breaks are 204 for line in re.split(r"\n", text): 205 line = line.replace("\t", " ") 207 m = re.search(r"\*/", line) 209 line = line[m.end():] 216 line = re.sub(r"/\*.*?\*/", " ", line) [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
DefaultHdfParser.java | 43 String line; local 44 while ((line = lineReader.readLine()) != null) { 45 parseLine(line, output, context, lineReader, dataFileName, errorHandler); 49 private void parseLine(String line, Data output, List<String> context, 52 line = stripComment(line); 55 if ((split = split(line, "=")) != null) { 58 } else if ((split = split(line, "<<")) != null) { 64 } else if ((split = split(line, "{")) != null) { 68 } else if (split(line, "}") != null) 78 errorHandler.error(lineReader.getLineNumber(), line, dataFileName, "Bad HDF syntax"); local 98 String line; local [all...] |
/external/v8/tools/ |
jsmin.py | 93 declarations. (These last two must be on one line including the opening 194 The compressed version hopefully does the same thing. Line breaks are 204 for line in re.split(r"\n", text): 205 line = line.replace("\t", " ") 207 m = re.search(r"\*/", line) 209 line = line[m.end():] 216 line = re.sub(r"/\*.*?\*/", " ", line) [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/perlasm/ |
ppc-xlate.pl | 74 my $line = join(",",@_); 75 if ($line =~ /^"(.*)"$/) 126 while($line=<>) { 128 $line =~ s|[#!;].*$||; # get rid of asm-style comments... 129 $line =~ s|/\*.*\*/||; # ... and C-style comments... 130 $line =~ s|^\s+||; # ... and skip white spaces in beginning... 131 $line =~ s|\s+$||; # ... and at the end 134 $line =~ s|\b\.L(\w+)|L$1|g; # common denominator for Locallabel 135 $line =~ s|\bL(\w+)|\.L$1|g if ($dotinlocallabels); 139 $line =~ s|(^[\.\w]+)\:\s*|| [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_suppressions.cc | 94 const char *line = str; local 95 while (line) { 96 while (line[0] == ' ' || line[0] == '\t') 97 line++; 98 const char *end = internal_strchr(line, '\n'); 100 end = line + internal_strlen(line); 101 if (line != end && line[0] != '#') [all...] |
/external/openssl/crypto/perlasm/ |
ppc-xlate.pl | 74 my $line = join(",",@_); 75 if ($line =~ /^"(.*)"$/) 126 while($line=<>) { 128 $line =~ s|[#!;].*$||; # get rid of asm-style comments... 129 $line =~ s|/\*.*\*/||; # ... and C-style comments... 130 $line =~ s|^\s+||; # ... and skip white spaces in beginning... 131 $line =~ s|\s+$||; # ... and at the end 134 $line =~ s|\b\.L(\w+)|L$1|g; # common denominator for Locallabel 135 $line =~ s|\bL(\w+)|\.L$1|g if ($dotinlocallabels); 139 $line =~ s|(^[\.\w]+)\:\s*|| [all...] |
/external/chromium_org/v8/tools/testrunner/local/ |
utils.py | 47 for line in f: 48 if line.startswith('#'): continue 49 if '#' in line: 50 line = line[:line.find('#')] 51 line = line.strip() 52 if not line: continue 53 lines.append(line) [all...] |
/external/valgrind/main/exp-sgcheck/tests/ |
hsg.stderr.exp | 9 <line>...</line> 10 <line>...</line> 11 <line>...</line> 12 <line>...</line> 13 <line>...</line> [all...] |
/system/core/sh/ |
mkbuiltins | 82 while read line 84 set -- $line 88 echo $line >&3 89 echo $line >&4 93 l1="${line###}" 94 [ "$l1" != "$line" ] && continue
|
/external/skia/tests/ |
PathOpsQuadLineIntersectionTest.cpp | 17 SkDLine line; member in struct:lineQuad 21 // quad line results 31 static int doIntersect(SkIntersections& intersections, const SkDQuad& quad, const SkDLine& line, 35 if (line[0].fX == line[1].fX) { 36 double top = line[0].fY; 37 double bottom = line[1].fY; 42 result = intersections.vertical(quad, top, bottom, line[0].fX, flipped); 43 } else if (line[0].fY == line[1].fY) 60 SkDLine line; member in struct:oneLineQuad 82 const SkDLine& line = oneOffs[index].line; local 109 const SkDLine& line = lineQuadTests[index].line; local [all...] |
/external/doclava/src/com/google/doclava/ |
SampleTagInfo.java | 34 * and reducing the indent level of the text to the indent level of the first non-whitespace line. 93 static String getTrimString(String line) { 95 int len = line.length(); 97 char c = line.charAt(i); 105 return line.substring(0, i); 109 static String addLineNumber(String line, String num) { 112 numberedLine.append("<span class=\"code-line\" id=\"l" + num + "\">" + line + "</span>"); 134 String line = lines.readLine(); local 135 if (line == null) 218 String line = lines.readLine(); local [all...] |
/cts/tools/cts-native-scanner/src/com/android/cts/nativescanner/ |
TestScanner.java | 54 String line; local 55 while ((line = mReader.readLine()) != null) { 56 if (line.length() > 0) { 57 if (line.charAt(0) == ' ') { 59 testNames.add("test:" + line.trim()); 64 testCaseName = line.trim();
|
/external/bison/examples/calc++/ |
calc++-driver.hh | 0 #line 10057 "../../doc/bison.texi" 7 #line 10073 "../../doc/bison.texi" 16 #line 10089 "../../doc/bison.texi" 27 #line 10107 "../../doc/bison.texi" 32 #line 10118 "../../doc/bison.texi" 37 #line 10132 "../../doc/bison.texi"
|
/external/chromium_org/media/tools/layout_tests/ |
test_expectations_unittest.py | 14 line = ('crbug.com/86714 [ Mac Gpu ] media/video-zoom.html [ Crash ' 19 self.assertEquals(TestExpectations.ParseLine(line), 23 line = ('crbug.com/86714 [ Mac Gpu ] media/video-zoom.html [ Crash ' 28 self.assertEquals(TestExpectations.ParseLine(line), 32 line = ('crbug.com/86714 [ Mac ] media/video-zoom.html [ Crash ' 37 self.assertEquals(TestExpectations.ParseLine(line),
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
stack_utils.py | 56 for filename, lineno, name, line in traceback.extract_stack(stack): 57 logger('File: "%s", line %d, in %s' % (filename, lineno, name)) 58 if line: 59 logger(' %s' % line.strip()) 65 for line in frame_str.split('\n'): 66 if line: 67 logger(" %s" % line)
|