OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:constructor_template
(Results
1 - 3
of
3
) sorted by null
/hardware/ril/mock-ril/src/cpp/
node_buffer.cpp
79
Persistent<FunctionTemplate> Buffer::
constructor_template
;
member in class:Buffer
168
Local<Object> b =
constructor_template
->GetFunction()->NewInstance(1, &arg);
355
constructor_template
->GetFunction()->NewInstance(3, argv);
448
constructor_template
->GetFunction()->Set(chars_written_sym,
620
constructor_template
= Persistent<FunctionTemplate>::New(t);
621
constructor_template
->InstanceTemplate()->SetInternalFieldCount(1);
622
constructor_template
->SetClassName(String::NewSymbol("Buffer"));
625
SET_PROTOTYPE_METHOD(
constructor_template
, "binarySlice", Buffer::BinarySlice);
626
SET_PROTOTYPE_METHOD(
constructor_template
, "asciiSlice", Buffer::AsciiSlice);
627
SET_PROTOTYPE_METHOD(
constructor_template
, "slice", Buffer::Slice)
[
all
...]
node_buffer.h
64
return
constructor_template
->HasInstance(obj);
76
static v8::Persistent<v8::FunctionTemplate>
constructor_template
;
member in class:Buffer
/external/v8/test/cctest/
test-log-stack-tracer.cc
247
Local<v8::FunctionTemplate>
constructor_template
=
local
249
constructor_template
->SetClassName(v8_str("FPGrabber"));
250
Local<Function> fun =
constructor_template
->GetFunction();
Completed in 4471 milliseconds