HomeSort by relevance Sort by last modified time
    Searched defs:source_location (Results 1 - 6 of 6) sorted by null

  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
line-map.h 42 and effectively typedef source_location location_t. */
43 typedef unsigned int source_location; typedef
64 source_location start_location;
69 /* Number of the low-order source_location bits used for a column number. */
93 /* Highest source_location "given out". */
94 source_location highest_location;
96 /* Start of line of highest source_location "given out". */
97 source_location highest_line;
118 /* Return a source_location for the start (i.e. column==0) of
124 extern source_location linemap_line_star
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
line-map.h 42 typedef unsigned int source_location; typedef
62 source_location start_location;
67 /* Number of the low-order source_location bits used for a column number. */
90 /* Highest source_location "given out". */
91 source_location highest_location;
93 /* Start of line of highest source_location "given out". */
94 source_location highest_line;
115 /* Return a source_location for the start (i.e. column==0) of
121 extern source_location linemap_line_start
142 (struct line_maps *, source_location);
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
line-map.h 42 typedef unsigned int source_location; typedef
62 source_location start_location;
67 /* Number of the low-order source_location bits used for a column number. */
90 /* Highest source_location "given out". */
91 source_location highest_location;
93 /* Start of line of highest source_location "given out". */
94 source_location highest_line;
115 /* Return a source_location for the start (i.e. column==0) of
121 extern source_location linemap_line_start
142 (struct line_maps *, source_location);
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
line-map.h 42 typedef unsigned int source_location; typedef
62 source_location start_location;
67 /* Number of the low-order source_location bits used for a column number. */
90 /* Highest source_location "given out". */
91 source_location highest_location;
93 /* Start of line of highest source_location "given out". */
94 source_location highest_line;
115 /* Return a source_location for the start (i.e. column==0) of
121 extern source_location linemap_line_start
142 (struct line_maps *, source_location);
    [all...]
  /external/v8/src/
preparser.cc 103 i::Scanner::Location source_location = scanner_->location(); local
108 return ReportMessageAt(source_location, "unexpected_eos", NULL);
110 return ReportMessageAt(source_location, "unexpected_token_number", NULL);
112 return ReportMessageAt(source_location, "unexpected_token_string", NULL);
114 return ReportMessageAt(source_location,
117 return ReportMessageAt(source_location, "unexpected_reserved", NULL);
119 return ReportMessageAt(source_location,
123 ReportMessageAt(source_location, "unexpected_token", name);
    [all...]
parser.cc 759 Scanner::Location source_location = scanner().location(); local
760 ReportMessageAt(source_location, type, args);
765 Scanner::Location source_location = scanner().location(); local
766 ReportMessageAt(source_location, type, args);
770 void Parser::ReportMessageAt(Scanner::Location source_location,
774 source_location.beg_pos,
775 source_location.end_pos);
788 void Parser::ReportMessageAt(Scanner::Location source_location,
792 source_location.beg_pos,
793 source_location.end_pos)
    [all...]

Completed in 95 milliseconds