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

  /external/v8/src/
variables.h 115 bool IsUnallocated() const { return location_ == UNALLOCATED; }
116 bool IsParameter() const { return location_ == PARAMETER; }
117 bool IsStackLocal() const { return location_ == LOCAL; }
119 bool IsContextSlot() const { return location_ == CONTEXT; }
120 bool IsLookupSlot() const { return location_ == LOOKUP; }
153 Location location() const { return location_; }
161 location_ = location;
172 Location location_; member in class:v8::internal::Variable
handles.h 46 INLINE(explicit Handle(T** location)) { location_ = location; }
50 INLINE(Handle()) : location_(NULL) {}
61 location_ = reinterpret_cast<T**>(handle.location());
76 ASSERT(location_ == NULL ||
77 reinterpret_cast<Address>(*location_) != kZapValue);
78 return location_;
87 bool is_null() const { return location_ == NULL; }
94 T** location_; member in class:v8::internal::Handle
handles-inl.h 51 location_ = HandleScope::CreateHandle(obj, GetIsolateForHandle(obj));
58 location_ = HandleScope::CreateHandle(obj, isolate);
64 ASSERT(location_ != NULL);
65 ASSERT(reinterpret_cast<Address>(*location_) != kHandleZapValue);
66 return *BitCast<T**>(location_);
variables.cc 68 location_(UNALLOCATED),
  /external/chromium/base/
openssl_util.h 104 : location_(location) {
108 ClearOpenSSLERRStack(location_);
112 const tracked_objects::Location location_; member in class:base::OpenSSLErrStackTracer
tracked_objects.h 164 const Location location() const { return location_; }
171 const Location location_; member in class:tracked_objects::BirthOnThread
200 // The number of births on this thread for our location_.
tracked_objects.cc 74 : location_(location),
    [all...]
  /external/chromium/crypto/
openssl_util.h 98 : location_(location) {
102 ClearOpenSSLERRStack(location_);
106 const tracked_objects::Location location_; member in class:crypto::OpenSSLErrStackTracer
  /external/chromium/net/websockets/
websocket.h 81 location_(location),
91 const std::string& location() const { return location_; }
114 std::string location_; member in class:net::WebSocket::Request
websocket_handshake.h 62 std::string location_; member in class:net::WebSocketHandshake
websocket_handshake_draft75.cc 147 if (location_ != ws_location_)
websocket_handshake.cc 32 location_(location),
202 if (location_ != ws_location_)
  /external/chromium/chrome/browser/accessibility/
browser_accessibility.h 146 gfx::Rect location() const { return location_; }
211 gfx::Rect location_; member in class:BrowserAccessibility
browser_accessibility.cc 59 location_ = src.location;
124 gfx::Rect bounds = location_;
browser_accessibility_win.cc 512 *x = location_.x() + top_left.x;
513 *y = location_.y() + top_left.y;
515 *x = location_.x();
516 *y = location_.y();
535 *height = location_.height();
536 *width = location_.width();
    [all...]
  /external/chromium/chrome/common/extensions/
extension.h 573 Location location() const { return location_; }
804 Location location_; member in class:Extension
    [all...]
extension.cc     [all...]
  /external/chromium/chrome/browser/extensions/
extension_service_unittest.cc 140 : location_(location), visitor_(visitor), visit_count_(0) {
163 i->first, version.get(), i->second.second, location_);
183 *location = location_;
203 Extension::Location location_; member in class:MockExtensionProvider
    [all...]

Completed in 535 milliseconds