OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Wrapped
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/content/browser/indexed_db/
list_set_unittest.cc
96
class
Wrapped
{
98
explicit
Wrapped
(const T& value) : value_(value) {}
99
explicit
Wrapped
(const
Wrapped
<T>& other) : value_(other.value_) {}
100
Wrapped
& operator=(const
Wrapped
<T>& rhs) {
105
bool operator<(const
Wrapped
<T>& rhs) const { return value_ < rhs.value_; }
106
bool operator==(const
Wrapped
<T>& rhs) const { return value_ == rhs.value_; }
113
list_set<
Wrapped
<int> > set;
116
list_set<
Wrapped
<int> >::iterator it = set.begin()
[
all
...]
/external/chromium_org/third_party/sqlite/src/src/
test_init.c
32
static struct
Wrapped
{
43
}
wrapped
;
variable in typeref:struct:Wrapped
47
if(
wrapped
.mem_fail ){
50
rc =
wrapped
.mem.xInit(
wrapped
.mem.pAppData);
53
wrapped
.mem_init = 1;
58
wrapped
.mem.xShutdown(
wrapped
.mem.pAppData);
59
wrapped
.mem_init = 0;
61
static void *wrMemMalloc(int n) {return
wrapped
.mem.xMalloc(n);
[
all
...]
Completed in 771 milliseconds