OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RawVarDataGraph
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ppapi/proxy/
raw_var_data.h
49
class PPAPI_PROXY_EXPORT
RawVarDataGraph
{
51
// Construct a
RawVarDataGraph
from a given root PP_Var. A null pointer
53
static scoped_ptr<
RawVarDataGraph
> Create(const PP_Var& var,
56
// Constructs an empty
RawVarDataGraph
.
57
RawVarDataGraph
();
58
~
RawVarDataGraph
();
69
// Create a
RawVarDataGraph
from the given message.
70
static scoped_ptr<
RawVarDataGraph
> Read(const IPC::Message* m,
73
// Returns a vector of SerializedHandles associated with this
RawVarDataGraph
.
74
// Ownership of the pointers remains with the elements of the
RawVarDataGraph
[
all
...]
raw_var_data.cc
69
//
RawVarDataGraph
------------------------------------------------------------
70
RawVarDataGraph
::
RawVarDataGraph
() {
73
RawVarDataGraph
::~
RawVarDataGraph
() {
86
scoped_ptr<
RawVarDataGraph
>
RawVarDataGraph
::Create(const PP_Var& var,
88
scoped_ptr<
RawVarDataGraph
> graph(new
RawVarDataGraph
);
89
// Map of |var.value.as_id| to a RawVarData index in
RawVarDataGraph
[
all
...]
Completed in 27 milliseconds