OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CppVariant
(Results
1 - 4
of
4
) sorted by null
/external/chromium/webkit/glue/
cpp_variant.h
6
This file contains the declaration for
CppVariant
, a type used by C++ classes
9
CppVariant
exists primarily as an interface between C++ callers and the
10
corresponding NPVariant type.
CppVariant
also provides a number of
27
class
CppVariant
: public NPVariant {
29
CppVariant
();
30
~
CppVariant
();
36
// Note that setting a
CppVariant
to a string value involves copying the
38
//
CppVariant
is set to a different value or is no longer needed. Normally
45
// Note that setting a
CppVariant
to an NPObject involves ref-counting
46
// the actual object. FreeData() should only be called if the
CppVariant
[
all
...]
cpp_variant.cc
5
// This file contains definitions for
CppVariant
.
17
CppVariant
::
CppVariant
() {
23
CppVariant
::
CppVariant
(const
CppVariant
& original) {
29
CppVariant
&
CppVariant
::operator=(const
CppVariant
& original) {
35
CppVariant
::~CppVariant()
[
all
...]
/external/webkit/Tools/DumpRenderTree/chromium/
CppVariant.h
32
This file contains the declaration for
CppVariant
, a type used by C++ classes
35
CppVariant
exists primarily as an interface between C++ callers and the
36
corresponding NPVariant type.
CppVariant
also provides a number of
50
class
CppVariant
: public NPVariant {
52
CppVariant
();
53
~
CppVariant
();
59
// Note that setting a
CppVariant
to a string value involves copying the
61
//
CppVariant
is set to a different value or is no longer needed. Normally
68
// Note that setting a
CppVariant
to an NPObject involves ref-counting
69
// the actual object. freeData() should only be called if the
CppVariant
[
all
...]
CppVariant.cpp
32
#include "
CppVariant
.h"
42
CppVariant
::
CppVariant
()
49
CppVariant
::
CppVariant
(const
CppVariant
& original)
56
CppVariant
&
CppVariant
::operator=(const
CppVariant
& original)
63
CppVariant
::~CppVariant(
[
all
...]
Completed in 522 milliseconds