/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
input.h | 29 #define UNKNOWN_LOCATION ((source_location) 0) 32 #define BUILTINS_LOCATION ((source_location) 1) 39 extern expanded_location expand_location (source_location); 41 extern expanded_location expand_location_to_spelling_point (source_location); 42 extern source_location expansion_point_location_if_in_system_header (source_location); 44 /* Historically GCC used location_t, while cpp used source_location. 46 typedef source_location location_t;
|
line-map.h | 50 typedef unsigned int source_location; typedef 85 /* Number of the low-order source_location bits used for a column number. */ 167 source_location * GTY((atomic)) macro_locations; 174 source_location expansion; 204 source_location start_location; 263 source_location locus; 281 source_location curr_loc; 299 /* Highest source_location "given out". */ 300 source_location highest_location; 302 /* Start of line of highest source_location "given out". * [all...] |
cpplib.h | 222 source_location src_loc; /* Location of first char of token. */ 520 void (*include) (cpp_reader *, source_location, const unsigned char *, 522 void (*define) (cpp_reader *, source_location, cpp_hashnode *); 523 void (*undef) (cpp_reader *, source_location, cpp_hashnode *); 524 void (*ident) (cpp_reader *, source_location, const cpp_string *); 525 void (*def_pragma) (cpp_reader *, source_location); 536 bool (*error) (cpp_reader *, int, int, source_location, unsigned int, 542 void (*used_define) (cpp_reader *, source_location, cpp_hashnode *); 543 void (*used_undef) (cpp_reader *, source_location, cpp_hashnode *); 549 void (*used) (cpp_reader *, source_location, cpp_hashnode *) [all...] |
dumpfile.h | 133 extern void dump_printf_loc (int, source_location, 136 extern void dump_generic_expr_loc (int, source_location, int, tree); 138 extern void dump_gimple_stmt_loc (int, source_location, int, gimple, int);
|
c-tree.h | 258 source_location locations[cdw_number_of_elements]; 542 extern struct c_declspecs *declspecs_add_qual (source_location, 547 extern struct c_declspecs *declspecs_add_scspec (source_location, 549 extern struct c_declspecs *declspecs_add_attrs (source_location, 551 extern struct c_declspecs *declspecs_add_addrspace (source_location, 554 extern struct c_declspecs *declspecs_add_alignas (source_location,
|
tree-flow-inline.h | 415 static inline source_location 423 static inline source_location 432 gimple_phi_arg_set_location (gimple gs, size_t i, source_location loc) 1179 static inline source_location [all...] |
tree-flow.h | 458 extern void add_phi_arg (gimple, tree, edge, source_location); 479 source_location locus; /* PHI arg location. */ 488 extern void redirect_edge_var_map_add (edge, tree, tree, source_location);
|
/external/chromium_org/third_party/android_platform/development/scripts/ |
stack_core.py | 210 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))
|
symbol.py | 324 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/apache-xml/src/main/java/org/apache/xalan/transformer/ |
XalanProperties.java | 33 public final static String SOURCE_LOCATION
|
TransformerHandlerImpl.java | 71 * The flag for the setting of the source_location feature;
|
TransformerImpl.java | 288 * The flag for the setting of the source_location feature; [all...] |
/development/scripts/ |
stack_core.py | 206 for (source_symbol, source_location, object_symbol_with_offset) in info: 212 if not source_location: 213 source_location = area 219 self.trace_lines.append((arrow, source_symbol, source_location)) 225 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))
|
symbol.py | 100 A list of the form [(source_symbol, source_location, 108 Usually you want to display the source_location and 123 A dictionary of the form {addr: [(source_symbol, source_location, 132 Usually you want to display the source_location and 157 result[addr] = [(source_symbol, source_location, object_symbol_with_offset) 158 for (source_symbol, source_location) in source_info]
|
/external/chromium_org/ppapi/ |
generate_ppapi_size_checks.py | 53 - 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/ |
preparser.h | 446 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 [all...] |
parser.h | 499 void ReportMessageAt(Scanner::Location source_location, 509 void ReportMessageAt(Scanner::Location source_location, [all...] |
parser.cc | 580 void ParserTraits::ReportMessageAt(Scanner::Location source_location, 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, 626 parser_->pending_error_location_ = source_location; [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
TransformerFactoryImpl.java | 104 /** Static string to be used for source_location feature */ 106 XalanProperties.SOURCE_LOCATION;
|
StylesheetHandler.java | 87 * The flag for the setting of the source_location feature; [all...] |
/external/llvm/lib/Transforms/Instrumentation/ |
AddressSanitizer.cpp | 229 // source_location, [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
StylesheetRoot.java | 69 * The flag for the setting of the source_location feature; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/cp/ |
cp-tree.h | [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
SAX2DTM.java | [all...] |