HomeSort by relevance Sort by last modified time
    Searched refs:LocationRange (Results 1 - 25 of 26) sorted by null

1 2

  /external/chromium_org/tools/gn/
location.h 39 class LocationRange {
41 LocationRange();
42 LocationRange(const Location& begin, const Location& end);
47 LocationRange Union(const LocationRange& other) const;
c_include_iterator.h 12 class LocationRange;
27 bool GetNextIncludeString(base::StringPiece* out, LocationRange* location);
location.cc 59 LocationRange::LocationRange() {
62 LocationRange::LocationRange(const Location& begin, const Location& end)
68 LocationRange LocationRange::Union(const LocationRange& other) const {
70 return LocationRange(
input_file_manager.h 25 class LocationRange;
53 bool AsyncLoadFile(const LocationRange& origin,
62 const ParseNode* SyncLoadFile(const LocationRange& origin,
124 void BackgroundLoadFile(const LocationRange& origin,
130 bool LoadFile(const LocationRange& origin,
template.h 17 class LocationRange;
45 LocationRange GetDefinitionRange() const;
err.h 27 typedef std::vector<LocationRange> RangeList;
38 Err(const LocationRange& range,
64 void AppendRange(const LocationRange& range) { ranges_.push_back(range); }
77 std::vector<LocationRange> ranges_;
loader.h 21 class LocationRange;
41 const LocationRange& origin,
57 void Load(const Label& label, const LocationRange& origin);
76 typedef base::Callback<bool(const LocationRange&,
86 const LocationRange& origin,
122 const LocationRange& origin,
155 bool AsyncLoadFile(const LocationRange& origin,
token.h 61 LocationRange range() const {
62 return LocationRange(location_,
c_include_iterator_unittest.cc 12 bool RangeIs(const LocationRange& range,
42 LocationRange range;
73 LocationRange range;
95 LocationRange range;
122 LocationRange range;
loader_unittest.cc 49 bool AsyncLoadFile(const LocationRange& origin,
149 loader->Load(root_build, LocationRange(), Label());
164 loader->Load(second_file, LocationRange(), second_tc);
182 loader->Load(third_file, LocationRange(), second_tc);
header_checker.h 23 class LocationRange;
83 const LocationRange& range,
parse_tree.h 48 virtual LocationRange GetRange() const = 0;
96 virtual LocationRange GetRange() const OVERRIDE;
139 virtual LocationRange GetRange() const OVERRIDE;
176 virtual LocationRange GetRange() const OVERRIDE;
215 virtual LocationRange GetRange() const OVERRIDE;
260 virtual LocationRange GetRange() const OVERRIDE;
293 virtual LocationRange GetRange() const OVERRIDE;
317 virtual LocationRange GetRange() const OVERRIDE;
352 virtual LocationRange GetRange() const OVERRIDE;
376 virtual LocationRange GetRange() const OVERRIDE
    [all...]
parse_tree.cc 64 LocationRange AccessorNode::GetRange() const {
66 return LocationRange(base_.location(), index_->GetRange().end());
68 return LocationRange(base_.location(), member_->GetRange().end());
70 return LocationRange();
184 LocationRange BinaryOpNode::GetRange() const {
226 LocationRange BlockNode::GetRange() const {
234 return LocationRange();
307 LocationRange ConditionNode::GetRange() const {
342 LocationRange FunctionCallNode::GetRange() const {
384 LocationRange IdentifierNode::GetRange() const
    [all...]
input_file_manager.cc 23 bool DoLoadFile(const LocationRange& origin,
100 bool InputFileManager::AsyncLoadFile(const LocationRange& origin,
158 const LocationRange& origin,
256 void InputFileManager::BackgroundLoadFile(const LocationRange& origin,
265 bool InputFileManager::LoadFile(const LocationRange& origin,
err.cc 26 void FillRangeOnLine(const LocationRange& range, int line_number,
98 Err::Err(const LocationRange& range,
126 LocationRange range = node->GetRange();
139 LocationRange range = value.origin()->GetRange();
loader.cc 25 SourceFileAndOrigin(const SourceFile& f, const LocationRange& o)
31 LocationRange origin;
90 void Loader::Load(const Label& label, const LocationRange& origin) {
113 const LocationRange& origin,
206 const LocationRange& origin,
224 if (!AsyncLoadFile(LocationRange(), settings->build_settings(),
410 const LocationRange& origin,
header_checker.cc 33 LocationRange CreatePersistentRange(const InputFile& input_file,
34 const LocationRange& range) {
43 return LocationRange(
242 LocationRange range;
264 const LocationRange& range,
c_include_iterator.cc 124 LocationRange* location) {
135 *location = LocationRange(
template.cc 108 LocationRange Template::GetDefinitionRange() const {
tokenizer.cc 237 err_->AppendRange(LocationRange(location, GetCurrentLocation()));
247 *err_ = Err(LocationRange(location, GetCurrentLocation()),
256 *err_ = Err(LocationRange(location, GetCurrentLocation()),
string_utils.cc 29 return Err(LocationRange(begin_loc, end_loc), msg, help);
builder_unittest.cc 21 const LocationRange& origin,
header_checker_unittest.cc 78 LocationRange range; // Dummy value.
input_conversion_unittest.cc 127 LocationRange a_range = a_origin->GetRange();
builder.cc 368 origin ? origin->GetRange() : LocationRange());

Completed in 131 milliseconds

1 2