/external/chromium/googleurl/ |
PRESUBMIT.py | 48 - has a line that ends with whitespace 49 - contains a line >|max_cols| cols unless |max_cols| is 0. 73 # will normalize line endings. 82 for line in lines: 83 if line.endswith(' '): 85 '%s, line %s ends with whitespaces.' % 88 if max_cols and len(line) > max_cols and not 'http://' in line: 90 '%s, line %s has %s chars, please reduce to %d chars.' % 91 (path, line_num, len(line), max_cols)) [all...] |
/external/chromium_org/base/debug/ |
trace_event_memory.h | 132 // Converts the first |line| of heap profiler data, which contains totals for 135 BASE_EXPORT void AppendHeapProfileTotalsAsTraceFormat(const std::string& line, 138 // Converts a single |line| of heap profiler data into trace event compatible 139 // JSON and appends to |output|. Returns true if the line was valid and has a 141 BASE_EXPORT bool AppendHeapProfileLineAsTraceFormat(const std::string& line, 152 // Make local variables with unique names based on the line number. Note that 154 #define INTERNAL_TRACE_MEMORY_ID3(line) trace_memory_unique_##line 155 #define INTERNAL_TRACE_MEMORY_ID2(line) INTERNAL_TRACE_MEMORY_ID3(line) [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
BidiTestHarness.h | 147 static std::vector<int> parseLevels(const std::string& line) 150 std::vector<std::string> strings = parseStringList(line); 164 static std::basic_string<UChar> parseTestString(const std::string& line) 195 std::vector<std::string> charClasses = parseStringList(line); 203 static bool parseParagraphDirectionMask(const std::string& line, int& modeMask) 205 modeMask = atoi(line.c_str()); 209 static void parseError(const std::string& line, size_t lineNumber) 212 printf("Parse error, line %zu : %s\n", lineNumber, line.c_str()); 228 std::string line; local [all...] |
/external/chromium_org/third_party/codesighs/ |
nm_wrap_osx.pl | 54 my($line) = $_; 55 chomp($line); 57 if ($line =~ /^([^:]+):\s*([0-9a-f]{8}) (\w) (.+)$/) 84 # print "Outputting line $line\n"; 98 # warn " Discaring line $line\n";
|
/external/chromium_org/third_party/mesa/src/src/glx/apple/ |
apple_glx_log.c | 52 int line, const char *fmt, ...) { 55 _apple_glx_vlog(level, file, function, line, fmt, v); 74 int line, const char *fmt, va_list args) { 97 _asl_level_string(level), file, line, function, thread); 107 if (line) { 109 asprintf(&_line, "%d", line); 111 asl_set(msg, "Line", _line);
|
/external/chromium_org/tools/git/ |
for-all-touched-files.py | 62 for line in lines: 63 line = line.lstrip() 64 # Avoid summary line, and files that have been deleted (no plus). 65 if line.find('|') != -1 and line.find('+') != -1: 66 filename = line.split()[0]
|
/external/llvm/utils/ |
wciia.py | 53 for line in code_owners_file: 54 for word in line.split(): 56 name = line[2:].strip() 63 email = line[2:].strip() 66 description = line[2:].strip() 69 filesfolders = line[2:].strip()
|
/external/mesa3d/src/glx/apple/ |
apple_glx_log.c | 52 int line, const char *fmt, ...) { 55 _apple_glx_vlog(level, file, function, line, fmt, v); 74 int line, const char *fmt, va_list args) { 97 _asl_level_string(level), file, line, function, thread); 107 if (line) { 109 asprintf(&_line, "%d", line); 111 asl_set(msg, "Line", _line);
|
/external/oprofile/ |
opev.py | 18 The format is key:value. A single : appears at the end of line 32 def parse_event(line,ovf): 33 ''' return dictionary of items from one line of event file ''' 35 fields = line.split(None, 1) 41 line = fields[1] 49 fields = line.split(None, 1) 69 eventlist = [parse_event(line,ovf) for line in lines]
|
/external/v8/src/ |
checks.cc | 38 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) { 44 i::OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file, line); 63 int line, 71 V8_Fatal(file, line, 79 int line, 86 V8_Fatal(file, line, "CHECK_NE(%s, %s) failed\n# Value: %s",
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_bufio.py | 32 line = f.readline() 33 self.assertEqual(line, s + b"\n") 34 line = f.readline() 35 self.assertEqual(line, s) 36 line = f.readline() 37 self.assertTrue(not line) # Must be at EOF
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_bufio.py | 32 line = f.readline() 33 self.assertEqual(line, s + b"\n") 34 line = f.readline() 35 self.assertEqual(line, s) 36 line = f.readline() 37 self.assertTrue(not line) # Must be at EOF
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
WindowsLoader.java | 53 String line; local 54 while ((line = in.readLine()) != null) { 55 if ("DONE.".equalsIgnoreCase(line)) { 59 int index = line.indexOf(' '); 61 String windowId = line.substring(0, index); 70 Window w = new Window(line.substring(index + 1), id);
|
/system/extras/tests/sdcard/ |
plot_sdcard.py | 50 def __init__(self, line): 52 'duration ([0-9.]+). Samples: ([0-9]+)'), line) 97 def Parse(self, line): 98 if line.startswith('# Kernel:'): 99 self.kernel = re.search('Linux version ([0-9.]+-[^ ]+)', line).group(1) 100 elif line.startswith('# Command:'): 101 self.command_line = re.search('# Command: [/\w_]+ (.*)', line).group(1) 105 elif line.startswith('# Iterations'): 106 self.iterations = int(re.search('# Iterations: ([0-9]+)', line).group(1)) 107 elif line.startswith('# Fadvise') [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
cpp.py | 175 True, if the given line is blank. 217 # matches anything to ensure that we get the last possible match in a line. 267 s: a string which is a substring of line after '(' 289 """Tracks line numbers for includes, and the order in which includes appear. 292 filename and line number on which that file was included. 408 """Converts multiple lines into a single line (with line breaks replaced by a 414 lines: a list of multiple lines to combine into a single line. 415 start_position: offset within lines of where to start the single line. 421 # Remove the columns on the last line that aren't included [all...] |
/dalvik/hit/src/com/android/hit/ |
StackFrame.java | 33 int serial, int line) { 39 mLineNumber = line; 44 case NO_LINE_NUMBER: return "No line number"; 45 case UNKNOWN_LOCATION: return "Unknown line number";
|
/dalvik/vm/compiler/template/ |
gen-template.py | 156 for line in opcode_fp: 157 match = opcode_re.match(line) 226 for line in asm_stub_text: 227 templ = Template(line) 231 # Append the file specified by "source" to the open "outfp". Each line will 234 # If the first line of the file starts with "%" it is taken as a directive. 235 # A "%include" line contains a filename and, optionally, a Python-style 239 # If "sister_list" is provided, and we find a line that contains only "&", 249 for line in infp: 250 if line.startswith("%include") 384 line = line.strip() # remove CRLF, leading spaces variable [all...] |
/development/tools/axl/ |
chewperf.py | 17 line = rawLines[x].split() 19 if line[-1] == "SIGNAL_STRENGTH": 34 for line in rawLines: 35 if "Pulled" in line: 36 chewed = [int(line.split()[5]), int(line.split()[7])] 39 out.append("%s %d" % (line, (tm - last))) 42 out.append(line)
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRCharStreamState.h | 37 NSInteger line; variable 42 @property (getter=getLine,setter=setLine:) NSInteger line; variable
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRCharStreamState.h | 37 NSInteger line; variable 42 @property (getter=getLine,setter=setLine:) NSInteger line; variable
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRCharStreamState.h | 37 NSInteger line; variable 42 @property (getter=getLine,setter=setLine:) NSInteger line; variable
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRStringStreamState.h | 36 NSUInteger line; variable 55 @property (assign) NSUInteger line; variable
|
/external/chromium_org/base/profiler/ |
scoped_profile.h | 37 #define PASTE_LINE_NUMBER_ON_NAME(name, line) name##line
|
/external/chromium_org/dbus/ |
dbus_statistics.cc | 211 continue; // No stats collected for this line, skip it and continue. 213 // Add a line to the result and clear the counts. 214 std::string line; local 216 line += stat->service; 219 line += stat->interface; 221 line += "." + stat->method; 223 line += base::StringPrintf(":"); 225 line += base::StringPrintf(" Sent (BLOCKING):"); 227 line += base::StringPrintf(" %d", sent_blocking); 229 line += base::StringPrintf(" %d/min", sent_blocking / dminutes) [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
fake_resource_manager.cc | 23 << resource_tracker->line(); 31 int line) { 35 new FakeResourceTracker(resource, classname, file, line); 55 << resource_tracker->line(); 71 << resource_tracker->line(); 103 << resource_tracker->line(); 111 int line) 115 line_(line),
|