HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 276 - 300 of 2868) sorted by null

<<11121314151617181920>>

  /external/v8/src/
checks.h 34 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...);
65 inline void CheckEqualsHelper(const char* file, int line,
69 V8_Fatal(file, line,
78 inline void CheckEqualsHelper(const char* file, int line,
86 V8_Fatal(file, line,
101 int line,
107 V8_Fatal(file, line, "CHECK_NE(%s, %s) failed\n# Value: %i",
116 int line,
124 V8_Fatal(file, line,
132 int line,
    [all...]
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",
  /cts/suite/audio_quality/test_description/conf/
detect_usb_audio.py 42 line = f.readline().strip()
43 if line in product_list:
44 print "___CTS_AUDIO_PASS___ " + line + " " + m.group(1)
  /external/chromium/third_party/libjingle/source/talk/examples/login/
login_main.cc 57 std::string line; local
58 while (std::getline(std::cin, line)) {
59 if (line == "quit")
  /external/embunit/inc/
AssertImpl.h 42 void addFailure(const char *msg, long line, const char *file); /*TestCase.c*/
44 void assertImplementationInt(int expected,int actual, long line, const char *file);
45 void assertImplementationCStr(const char *expected,const char *actual, long line, const char *file);
  /external/jsilver/src/com/google/clearsilver/jsilver/precompiler/
PrecompiledTemplateMapFileReader.java 76 for (String line = reader.readLine(); line != null; line = reader.readLine()) {
77 // Process single line from the templateMapFile
79 processTemplateMapFileLine(line, reader.getLineNumber(), templateMap, templateMapFile,
90 private void processTemplateMapFileLine(String line, int lineNumber,
93 line = line.trim();
94 if (line.isEmpty() || line.startsWith("#"))
    [all...]
  /external/qemu/
keymaps.c 75 char line[1024]; local
105 if (fgets(line, 1024, f) == NULL)
107 len = strlen(line);
108 if (len > 0 && line[len - 1] == '\n')
109 line[len - 1] = '\0';
110 if (line[0] == '#')
112 if (!strncmp(line, "map ", 4))
114 if (!strncmp(line, "include ", 8)) {
115 parse_keyboard_layout(table, line + 8, k);
117 char *end_of_keysym = line;
    [all...]
  /external/srec/portable/src/
pLastError.c 23 void printGetLastErrorInternal(const LCHAR* text, char* file, int line)
48 pfprintf(PSTDERR, L("[%s:%d] %s: %s\n"), file, line, text, msg);
58 pfprintf(PSTDERR, "[%s:%d] %s, errno = %x\n", file, line, text, err);
  /external/webkit/Source/JavaScriptCore/wtf/
DynamicAnnotations.h 80 void WTFAnnotateBenignRaceSized(const char* file, int line, const volatile void* memory, long size, const char* description);
81 void WTFAnnotateHappensBefore(const char* file, int line, const volatile void* address);
82 void WTFAnnotateHappensAfter(const char* file, int line, const volatile void* address);
  /external/webkit/Tools/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/native/opengl/libs/EGL/
egl_tls.h 44 const char* caller, int line, EGLint error, bool quiet);
58 int line, EGLint error, T returnValue, bool quiet = false) {
59 setErrorEtcImpl(caller, line, error, quiet);
  /external/webkit/Source/WebCore/bindings/scripts/
IDLParser.pm 249 my $line = $_;
250 $line =~ s/\s*//g;
253 push(@$arrayRef, $line);
261 foreach my $line (@interfaceMethods) {
262 if ($line =~ /\Wattribute\W/) {
263 $line =~ /$IDLStructure::interfaceAttributeSelector/;
265 my $attributeType = (defined($1) ? $1 : die("Parsing error!\nSource:\n$line\n)"));
268 my $attributeDataType = (defined($3) ? $3 : die("Parsing error!\nSource:\n$line\n)"));
269 my $attributeDataName = (defined($4) ? $4 : die("Parsing error!\nSource:\n$line\n)"));
273 $line =~ /$IDLStructure::getterRaisesSelector/
    [all...]
  /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...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
EventLogImporter.java 75 String line; local
78 while ((line = reader.readLine()) != null) {
79 content.add(line);
85 String line; local
88 while ((line = reader.readLine()) != null) {
89 content.add(line);
  /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...]
  /bionic/libc/netbsd/net/
getservent_r.c 74 if (sd->line) {
75 free(sd->line);
76 sd->line = NULL;
92 if (sd->line)
93 free(sd->line);
94 // sd->line = fparseln(sd->fp, NULL, NULL, NULL, FPARSELN_UNESCALL);
96 sd->line = NULL;
97 if (sd->line == NULL)
99 sp->s_name = p = sd->line;
  /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/elfutils/libcpu/
i386_parse.h 71 #line 213 "i386_parse.y"
81 /* Line 1489 of yacc.c. */
82 #line 83 "i386_parse.h"

Completed in 1268 milliseconds

<<11121314151617181920>>