HomeSort by relevance Sort by last modified time
    Searched refs:GetPrototype (Results 1 - 25 of 48) 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...]
extension_set_unittest.cc 634 dynamic_factory.GetPrototype(dynamic_message_extension->message_type());
  /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 413 V8DOMWrapper::setDOMWrapper(v8::Handle<v8::Object>::Cast(jsWindow->GetPrototype()), &V8DOMWindow::info, window);
419 v8::Handle<v8::Object> v8RealGlobal = v8::Handle<v8::Object>::Cast(context->Global()->GetPrototype());
450 ASSERT(!document->isHTMLDocument() || (V8Document::toNative(v8::Handle<v8::Object>::Cast(wrapper->GetPrototype())) == document));
561 v8::Handle<v8::Value> prototype = info.Holder()->GetPrototype();
V8DOMWrapper.cpp 263 v8::Handle<v8::Object> globalPrototype = v8::Handle<v8::Object>::Cast(context->Global()->GetPrototype());
461 v8::Handle<v8::Object> globalPrototype = v8::Handle<v8::Object>::Cast(context->Global()->GetPrototype());
WorkerContextExecutionProxy.cpp 177 v8::Handle<v8::Object> globalObject = v8::Handle<v8::Object>::Cast(m_context->Global()->GetPrototype());
  /external/v8/src/
ic-inl.h 128 Object* map_owner = (holder == OWN_MAP ? object : object->GetPrototype());
accessors.cc 50 obj = obj->GetPrototype();
456 function = FindInPrototypeChain<JSFunction>(object->GetPrototype(),
781 Object* current = receiver->GetPrototype();
784 current = current->GetPrototype();
builtins.cc 398 Object* proto = array_proto->GetPrototype();
403 return array_proto->GetPrototype()->IsNull();
454 return receiver->GetPrototype() == array_proto &&
570 top = array->GetPrototype()->GetElement(len - 1);
947 || JSArray::cast(arg)->GetPrototype() != array_proto)
    [all...]
objects.cc 586 ASSERT(this != this->GetPrototype());
587 for (Object* current = this; true; current = current->GetPrototype()) {
656 holder = holder->GetPrototype()) {
704 Object* Object::GetPrototype() {
    [all...]
ic.cc 179 current = current->GetPrototype()) {
203 receiver->GetPrototype()->IsNull()) {
445 Handle<Object> proto(holder->GetPrototype());
692 isolate(), lookup, object->GetPrototype())) {
743 : Handle<JSObject>(JSObject::cast(object->GetPrototype()));
    [all...]
stub-cache.cc 114 while (last->GetPrototype() != heap()->null_value()) {
115 last = Handle<JSObject>(JSObject::cast(last->GetPrototype()));
    [all...]
runtime.h 70 F(GetPrototype, 1, 1) \
  /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/ia32/
stub-cache-ia32.cc     [all...]
  /external/v8/src/x64/
stub-cache-x64.cc     [all...]
  /external/v8/test/cctest/
test-heap-profiler.cc 332 v8::Handle<v8::Object> global = global_proxy->GetPrototype().As<v8::Object>();
    [all...]

Completed in 2619 milliseconds

1 2