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

1 2

  /external/protobuf/src/google/protobuf/
dynamic_message.h 112 const Message* GetPrototype(const Descriptor* type);
dynamic_message_unittest.cc 86 prototype_ = factory_.GetPrototype(descriptor_);
91 extensions_prototype_ = factory_.GetPrototype(extensions_descriptor_);
96 packed_prototype_ = factory_.GetPrototype(packed_descriptor_);
102 // passed to GetPrototype().
108 EXPECT_EQ(prototype_, factory_.GetPrototype(descriptor_));
message.cc 205 const Message* GetPrototype(const Descriptor* type);
252 // function during GetPrototype(), in which case we already have locked
260 const Message* GeneratedMessageFactory::GetPrototype(const Descriptor* type) {
message_unittest.cc 262 MessageFactory::generated_factory()->GetPrototype(
277 MessageFactory::generated_factory()->GetPrototype(descriptor) == NULL);
extension_set_heavy.cc 118 return *factory->GetPrototype(message_type);
134 factory->GetPrototype(descriptor->message_type());
164 prototype = factory->GetPrototype(descriptor->message_type());
192 factory_->GetPrototype(extension->message_type());
194 << "Extension factory's GetPrototype() returned NULL for extension: "
dynamic_message.cc 453 const Message* DynamicMessageFactory::GetPrototype(const Descriptor* type) {
462 return MessageFactory::generated_factory()->GetPrototype(type);
message.h 516 // factory->GetPrototype(field->message_type() MUST return an instance of the
663 // Some implementations do not support all types. GetPrototype() will
668 virtual const Message* GetPrototype(const Descriptor* type) = 0;
672 // MessageFactory::generated_factory()->GetPrototype(
676 // pool, GetPrototype() will return NULL. (You can also check if a
680 // This factory is 100% thread-safe; calling GetPrototype() does not modify
687 // time, to be placed in generated_factory. The first time GetPrototype()
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8IsolatedContext.h 99 return v8::Handle<v8::Object>::Cast(context->Global()->GetPrototype());
WorkerScriptDebugServer.cpp 53 v8::Handle<v8::Object> prototype = v8::Handle<v8::Object>::Cast(global->GetPrototype());
56 prototype = v8::Handle<v8::Object>::Cast(prototype->GetPrototype());
ScriptState.cpp 68 global = v8::Local<v8::Object>::Cast(global->GetPrototype());
V8DOMWindowShell.cpp 425 V8DOMWrapper::setDOMWrapper(v8::Handle<v8::Object>::Cast(jsWindow->GetPrototype()), &V8DOMWindow::info, window);
431 v8::Handle<v8::Object> v8RealGlobal = v8::Handle<v8::Object>::Cast(context->Global()->GetPrototype());
462 ASSERT(!document->isHTMLDocument() || (V8Document::toNative(v8::Handle<v8::Object>::Cast(wrapper->GetPrototype())) == document));
573 v8::Handle<v8::Value> prototype = info.Holder()->GetPrototype();
WorkerContextExecutionProxy.cpp 177 v8::Handle<v8::Object> globalObject = v8::Handle<v8::Object>::Cast(m_context->Global()->GetPrototype());
V8DOMWrapper.cpp 267 v8::Handle<v8::Object> globalPrototype = v8::Handle<v8::Object>::Cast(context->Global()->GetPrototype());
465 v8::Handle<v8::Object> globalPrototype = v8::Handle<v8::Object>::Cast(context->Global()->GetPrototype());
  /external/v8/src/
ic-inl.h 122 Object* map_owner = (holder == OWN_MAP ? object : object->GetPrototype());
accessors.cc 48 obj = obj->GetPrototype();
454 function = FindInPrototypeChain<JSFunction>(object->GetPrototype(),
739 Object* current = receiver->GetPrototype();
742 current = current->GetPrototype();
builtins.cc 373 array_proto = JSObject::cast(array_proto->GetPrototype());
376 Object* proto = array_proto->GetPrototype();
381 return array_proto->GetPrototype()->IsNull();
404 return receiver->GetPrototype() == array_proto &&
521 top = array->GetPrototype()->GetElement(len - 1);
924 || JSArray::cast(arg)->GetPrototype() != array_proto) {
    [all...]
objects.cc 504 for (Object* current = this; true; current = current->GetPrototype()) {
590 Object* Object::GetPrototype() {
    [all...]
handles.h 260 Handle<Object> GetPrototype(Handle<Object> obj);
handles.cc 403 Handle<Object> GetPrototype(Handle<Object> obj) {
404 Handle<Object> result(obj->GetPrototype());
791 p = Handle<Object>(p->GetPrototype(), isolate)) {
    [all...]
ic.cc 148 current = current->GetPrototype()) {
172 receiver->GetPrototype()->IsNull()) {
420 Object* proto = holder->GetPrototype();
718 isolate(), lookup, object->GetPrototype())) {
782 object->GetPrototype())->map();
    [all...]
runtime.cc 630 Object* prototype = V->GetPrototype();
648 RUNTIME_ASSERT(!jsobject->GetPrototype()->IsHeapObject() ||
649 !HeapObject::cast(jsobject->GetPrototype())->map()->is_hidden_prototype());
669 new_proto_map->set_prototype(jsobject->GetPrototype());
696 Object* proto = obj->GetPrototype();
746 current = JSObject::cast(current->GetPrototype());
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8InjectedScriptManager.cpp 122 global = v8::Local<v8::Object>::Cast(global->GetPrototype());
137 global = v8::Local<v8::Object>::Cast(global->GetPrototype());
  /external/v8/src/arm/
stub-cache-arm.cc     [all...]
  /external/v8/src/ia32/
stub-cache-ia32.cc     [all...]
  /external/v8/src/x64/
stub-cache-x64.cc     [all...]

Completed in 194 milliseconds

1 2