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