/external/chromium_org/tools/gn/ |
parse_tree.cc | 72 *err = Err(index_->GetRange(), "Negative array subscript.", 78 *err = Err(index_->GetRange(), "Array subscript out of range.", 94 LocationRange AccessorNode::GetRange() const { 95 return LocationRange(base_.location(), index_->GetRange().end()); 100 return Err(GetRange(), msg, help); 125 LocationRange BinaryOpNode::GetRange() const { 126 return left_->GetRange().Union(right_->GetRange()); 167 LocationRange BlockNode::GetRange() const { 172 return statements_[0]->GetRange().Union [all...] |
parse_tree.h | 48 virtual LocationRange GetRange() const = 0; 77 virtual LocationRange GetRange() const OVERRIDE; 108 virtual LocationRange GetRange() const OVERRIDE; 145 virtual LocationRange GetRange() const OVERRIDE; 184 virtual LocationRange GetRange() const OVERRIDE; 229 virtual LocationRange GetRange() const OVERRIDE; 262 virtual LocationRange GetRange() const OVERRIDE; 286 virtual LocationRange GetRange() const OVERRIDE; 321 virtual LocationRange GetRange() const OVERRIDE; 345 virtual LocationRange GetRange() const OVERRIDE [all...] |
operators.cc | 72 *err = Err(to_remove.origin()->GetRange(), "Item not found", 110 *err = Err(op_node->left()->GetRange(), "Overwriting unused variable.", 128 *err = Err(op_node->left()->GetRange(), "Replacing nonempty list.", 369 err->AppendRange(left.origin()->GetRange()); 370 err->AppendRange(right.origin()->GetRange()); 423 err->AppendRange(op_node->GetRange()); 426 err->AppendRange(op_node->GetRange()); 438 err->AppendRange(op_node->GetRange()); 441 err->AppendRange(op_node->GetRange()); 494 err->AppendRange(op_node->GetRange()); [all...] |
import_manager.cc | 20 node_for_err->GetRange(), settings->build_settings(), file, err);
|
command_refs.cc | 25 return record->item()->defined_from()->GetRange().begin().file()
|
err.cc | 126 LocationRange range = node->GetRange(); 139 LocationRange range = value.origin()->GetRange();
|
command_args.cc | 61 Location location = value.origin()->GetRange().begin();
|
functions.cc | 198 Location origin_location = args[0].origin()->GetRange().begin(); 202 err->AppendSubErr(Err(args[0].origin()->GetRange(), "",
|
command_desc.cc | 177 Location location = origin->GetRange().begin();
|
scope.cc | 160 *err = Err(binary->left()->GetRange(), "Assignment had no effect.",
|
/art/runtime/base/ |
histogram-inl.h | 121 template <class Value> inline Value Histogram<Value>::GetRange(size_t bucket_idx) const { 152 os << GetRange(bin_idx) << ": " << data.freq_[bin_idx] << "\t" 205 const double lower_value = static_cast<double>(GetRange(lower_idx)); 211 const double upper_value = static_cast<double>(GetRange(upper_idx));
|
histogram.h | 59 Value GetRange(size_t bucket_idx) const;
|
/external/chromium_org/gpu/command_buffer/service/ |
buffer_manager_unittest.cc | 215 TEST_F(BufferManagerTest, GetRange) { 225 static_cast<const char*>(buffer->GetRange(0, sizeof(data))); 228 static_cast<const char*>(buffer->GetRange(1, sizeof(data) - 1)); 230 EXPECT_TRUE(buffer->GetRange(sizeof(data), 1) == NULL); 231 EXPECT_TRUE(buffer->GetRange(0, sizeof(data) + 1) == NULL); 232 EXPECT_TRUE(buffer->GetRange(-1, sizeof(data)) == NULL); 233 EXPECT_TRUE(buffer->GetRange(-0, -1) == NULL); 236 EXPECT_TRUE(buffer->GetRange(0 - size, size) == NULL); 237 EXPECT_TRUE(buffer->GetRange(1, size / 2) == NULL); 385 EXPECT_EQ(0, memcmp(data, buffer->GetRange(0, sizeof(data)), sizeof(data))) [all...] |
buffer_manager.h | 56 const void* GetRange(GLintptr offset, GLsizeiptr size) const;
|
vertex_attrib_manager.cc | 207 const void* ptr = buffer->GetRange(attrib->offset(), 0);
|
buffer_manager.cc | 143 const void* Buffer::GetRange(
|
/external/clang/lib/StaticAnalyzer/Core/ |
RangeConstraintManager.cpp | 286 RangeSet GetRange(ProgramStateRef state, SymbolRef sym); 383 RangeConstraintManager::GetRange(ProgramStateRef state, SymbolRef sym) { 432 RangeSet New = GetRange(St, Sym).Intersect(getBasicVals(), F, Upper, Lower); 447 RangeSet New = GetRange(St, Sym).Intersect(getBasicVals(), F, AdjInt, AdjInt); 476 RangeSet New = GetRange(St, Sym).Intersect(getBasicVals(), F, Lower, Upper); 505 RangeSet New = GetRange(St, Sym).Intersect(getBasicVals(), F, Lower, Upper); 534 RangeSet New = GetRange(St, Sym).Intersect(getBasicVals(), F, Lower, Upper); 563 RangeSet New = GetRange(St, Sym).Intersect(getBasicVals(), F, Lower, Upper);
|
/external/chromium_org/ui/gfx/ |
break_list.h | 55 Range GetRange(const typename BreakList<T>::const_iterator& i) const; 139 Range BreakList<T>::GetRange(
|
render_text_pango.cc | 352 const size_t bold_end = styles()[BOLD].GetRange(bold).end(); 353 const size_t italic_end = styles()[ITALIC].GetRange(italic).end(); 432 Range style_range = style.GetRange(); 464 style_range = style.GetRange();
|
break_list_unittest.cc | 162 EXPECT_EQ(breaks.GetRange(it), cases[i].range);
|
render_text.h | 100 Range GetRange() const;
|
render_text.cc | 319 Range StyleIterator::GetRange() const { 320 Range range(colors_.GetRange(color_)); 322 range = range.Intersect(styles_[i].GetRange(style_[i])); [all...] |
/external/chromium_org/third_party/leveldatabase/src/db/ |
version_set.h | 279 void GetRange(const std::vector<FileMetaData*>& inputs,
|
version_set.cc | [all...] |
/external/chromium_org/ui/base/ime/win/ |
tsf_event_router.cc | 233 if (FAILED(composition_view->GetRange(range.Receive())))
|