Searched refs:source_location (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/android_platform/development/scripts/
H A Dstack_core.py210 for (source_symbol, source_location, object_symbol_with_offset) in info:
216 if not source_location:
217 source_location = area
220 trace_lines.append(("v------>", source_symbol, source_location))
226 source_location))
238 (source_symbol, source_location, object_symbol_with_offset) = info.pop()
244 if not source_location:
245 source_location = area
251 source_location))
H A Dsymbol.py324 A list of the form [(source_symbol, source_location,
332 Usually you want to display the source_location and
348 A dictionary of the form {addr: [(source_symbol, source_location,
357 Usually you want to display the source_location and
385 result[addr] = [(source_symbol, source_location, object_symbol_with_offset)
386 for (source_symbol, source_location) in source_info]
/external/chromium_org/ppapi/
H A Dgenerate_ppapi_size_checks.py53 - source_location: A SourceLocation describing where the type is defined.
83 self.source_location = SourceLocation(source_file,
158 elif typeinfo.source_location.filename.find("ppapi") == -1:
161 elif typeinfo.source_location.filename.find("GLES2") > -1:
380 sourcefile = typeinfo.source_location.filename
383 file_patches[sourcefile].Delete(typeinfo.source_location.start_line,
384 typeinfo.source_location.end_line+1)
392 sourcefile = typeinfo.source_location.filename
402 typeinfo.source_location.end_line+1)
/external/chromium_org/v8/src/
H A Dpreparser.h446 Scanner::Location source_location = scanner()->location(); local
447 Traits::ReportMessageAt(source_location, message, arg, is_reference_error);
1609 Scanner::Location source_location = scanner()->location(); local
1614 return ReportMessageAt(source_location, "unexpected_eos");
1616 return ReportMessageAt(source_location, "unexpected_token_number");
1618 return ReportMessageAt(source_location, "unexpected_token_string");
1620 return ReportMessageAt(source_location, "unexpected_token_identifier");
1622 return ReportMessageAt(source_location, "unexpected_reserved");
1626 return ReportMessageAt(source_location, strict_mode() == SLOPPY
1631 Traits::ReportMessageAt(source_location, "unexpected_toke
[all...]
H A Dparser.h499 void ReportMessageAt(Scanner::Location source_location,
509 void ReportMessageAt(Scanner::Location source_location,
H A Dparser.cc580 void ParserTraits::ReportMessageAt(Scanner::Location source_location, argument
591 parser_->pending_error_location_ = source_location;
602 Scanner::Location source_location = parser_->scanner()->location(); local
603 ReportMessageAt(source_location, message, arg, is_reference_error);
610 Scanner::Location source_location = parser_->scanner()->location(); local
611 ReportMessageAt(source_location, message, arg, is_reference_error);
615 void ParserTraits::ReportMessageAt(Scanner::Location source_location, argument
626 parser_->pending_error_location_ = source_location;

Completed in 3336 milliseconds