OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RawVarData
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ppapi/proxy/
raw_var_data.h
28
class
RawVarData
;
36
// var. A
RawVarData
object is created for each of these vars. We then write
37
// data contained in each
RawVarData
to the message. The format looks like this:
84
ScopedVector<
RawVarData
> data_;
88
class
RawVarData
{
90
// Create a new, empty
RawVarData
for the given type.
91
static
RawVarData
* Create(PP_VarType type);
92
RawVarData
();
93
virtual ~
RawVarData
();
95
// Returns the type of the PP_Var represented by the
RawVarData
[
all
...]
raw_var_data.cc
41
// For a given PP_Var, returns the
RawVarData
associated with it, or creates a
47
ScopedVector<
RawVarData
>* data) {
54
data->push_back(
RawVarData
::Create(var.type));
58
data->push_back(
RawVarData
::Create(var.type));
89
// Map of |var.value.as_id| to a
RawVarData
index in RawVarDataGraph.
99
RawVarData
* current_var_data = graph->data_[stack.top().data_index];
198
result->data_.push_back(
RawVarData
::Create(var_type));
224
//
RawVarData
------------------------------------------------------------------
227
RawVarData
*
RawVarData
::Create(PP_VarType type)
[
all
...]
Completed in 42 milliseconds