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

1 2 3 4

  /external/chromium_org/tools/gn/
token.h 60 const Location& location() const { return location_; }
62 return LocationRange(location_,
63 Location(location_.file(), location_.line_number(),
64 location_.char_offset() +
75 Location location_; member in class:Token
token.cc 17 location_(location) {
  /external/chromium_org/components/autofill/content/browser/wallet/
form_field_error.cc 55 location_(location) {}
62 if (location_ == LEGAL_ADDRESS || location_ == PAYMENT_INSTRUMENT)
64 if (location_ == SHIPPING_ADDRESS)
71 if (location_ == LEGAL_ADDRESS || location_ == PAYMENT_INSTRUMENT)
73 if (location_ == SHIPPING_ADDRESS)
78 if (location_ == LEGAL_ADDRESS || location_ == PAYMENT_INSTRUMENT)
80 if (location_ == SHIPPING_ADDRESS
    [all...]
form_field_error.h 60 Location location() const { return location_; }
80 Location location_; member in class:autofill::wallet::FormFieldError
  /external/chromium_org/native_client_sdk/src/examples/demo/flock/
goose.cc 40 Goose::Goose() : location_(0, 0), velocity_(0, 0) {
44 : location_(location),
58 location_.Add(velocity_);
62 while (location_.x() < flock_box.x())
63 location_.set_x(location_.x() + flock_box.width());
65 while (location_.x() >= flock_box.right())
66 location_.set_x(location_.x() - flock_box.width());
68 while (location_.y() < flock_box.y()
    [all...]
goose.h 64 return location_;
125 Vector2 location_; member in class:Goose
  /external/chromium_org/ui/ozone/platform/test/
file_surface_factory.cc 33 FileSurface(const base::FilePath& location) : location_(location) {}
52 FROM_HERE, base::Bind(&WriteDataToFile, location_, bitmap), true);
60 base::FilePath location_; member in class:ui::__anon20843::FileSurface
67 : location_(dump_location) {
68 CHECK(!base::DirectoryExists(location_)) << "Location cannot be a directory ("
69 << location_.value() << ")";
70 CHECK(!base::PathExists(location_) || base::PathIsWritable(location_));
89 return make_scoped_ptr<SurfaceOzoneCanvas>(new FileSurface(location_));
file_surface_factory.h 31 base::FilePath location_; member in class:ui::FileSurfaceFactory
  /art/compiler/
output_stream.h 37 explicit OutputStream(const std::string& location) : location_(location) {}
42 return location_;
50 const std::string location_; member in class:art::OutputStream
  /external/chromium_org/sync/internal_api/public/util/
unrecoverable_error_info.cc 16 : location_(location),
27 location_ = location;
37 return location_;
unrecoverable_error_info.h 33 tracked_objects::Location location_; member in class:syncer::UnrecoverableErrorInfo
  /external/chromium_org/v8/src/
handles.h 21 INLINE(MaybeHandle()) : location_(NULL) { }
32 this->location_ = reinterpret_cast<T**>(handle.location());
44 location_ = reinterpret_cast<T**>(maybe_handle.location_);
47 INLINE(void Assert() const) { ASSERT(location_ != NULL); }
48 INLINE(void Check() const) { CHECK(location_ != NULL); }
52 return Handle<T>(location_);
57 if (location_ == NULL) {
61 *out = Handle<T>(location_);
66 bool is_null() const { return location_ == NULL;
69 T** location_; member in class:v8::internal::MaybeHandle
137 T** location_; member in class:v8::internal::Handle
    [all...]
variables.h 92 bool IsUnallocated() const { return location_ == UNALLOCATED; }
93 bool IsParameter() const { return location_ == PARAMETER; }
94 bool IsStackLocal() const { return location_ == LOCAL; }
96 bool IsContextSlot() const { return location_ == CONTEXT; }
97 bool IsLookupSlot() const { return location_ == LOOKUP; }
123 Location location() const { return location_; }
131 location_ = location;
142 Location location_; member in class:v8::internal::Variable
handles-inl.h 19 location_ = HandleScope::CreateHandle(obj->GetIsolate(), obj);
25 location_ = HandleScope::CreateHandle(isolate, obj);
33 (location_ == NULL || IsDereferenceAllowed(NO_DEFERRED_CHECK)) &&
34 (o.location_ == NULL || o.IsDereferenceAllowed(NO_DEFERRED_CHECK)));
35 if (location_ == o.location_) return true;
36 if (location_ == NULL || o.location_ == NULL) return false;
37 return *location_ == *o.location_;
    [all...]
  /external/chromium_org/content/renderer/pepper/
ppb_widget_impl.cc 25 memset(&location_, 0, sizeof(location_));
50 *location = location_;
55 location_ = *location;
ppb_widget_impl.h 51 PP_Rect location() const { return location_; }
55 PP_Rect location_; member in class:content::PPB_Widget_Impl
  /external/chromium_org/sync/api/
sync_error.cc 75 location_.reset();
92 location_.reset(new tracked_objects::Location(location));
105 return *location_;
127 return location_->ToString() + ", " + ModelTypeToString(model_type_) +
132 LAZY_STREAM(logging::LogMessage(location_->file_name(),
133 location_->line_number(),
sync_change.cc 18 : location_(from_here),
56 return location_;
77 return "{ " + location_.ToString() + ", changeType: " +
sync_change.h 64 tracked_objects::Location location_; member in class:syncer::SyncChange
  /external/chromium_org/cc/test/
fake_scrollbar.h 33 void set_location(const gfx::Point& location) { location_ = location; }
47 gfx::Point location_; member in class:cc::FakeScrollbar
  /external/chromium_org/crypto/
openssl_util.h 105 : location_(location) {
109 ClearOpenSSLERRStack(location_);
113 const tracked_objects::Location location_; member in class:crypto::OpenSSLErrStackTracer
  /external/chromium_org/extensions/common/
extension_builder.cc 12 : location_(Manifest::UNPACKED),
21 location_,
36 location_ = location;
  /external/chromium_org/ui/views/controls/
glow_hover_controller.cc 38 location_ = location;
93 center_point.iset(location_.x(), location_.y());
110 hover_canvas.DrawRect(gfx::Rect(location_.x() - radius,
111 location_.y() - radius,
  /external/chromium_org/components/storage_monitor/
storage_info.h 83 const base::FilePath::StringType& location() const { return location_; }
91 location_ = location;
102 base::FilePath::StringType location_; member in class:storage_monitor::StorageInfo
  /external/chromium_org/ui/views/corewm/
tooltip_win.h 62 gfx::Point location_; member in class:views::corewm::TooltipWin

Completed in 555 milliseconds

1 2 3 4