OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IntWrapper
(Results
1 - 5
of
5
) sorted by null
/external/chromium/testing/gtest/test/
gtest-param-test_test.cc
303
class
IntWrapper
{
305
explicit
IntWrapper
(int a_value) : value_(a_value) {}
306
IntWrapper
(const
IntWrapper
& other) : value_(other.value_) {}
308
IntWrapper
operator=(const
IntWrapper
& other) {
313
IntWrapper
operator+(int other) const { return
IntWrapper
(value_ + other); }
314
bool operator<(const
IntWrapper
& other) const {
324
const ParamGenerator<
IntWrapper
> gen = Range(IntWrapper(0), IntWrapper(2))
[
all
...]
/external/gtest/test/
gtest-param-test_test.cc
303
class
IntWrapper
{
305
explicit
IntWrapper
(int a_value) : value_(a_value) {}
306
IntWrapper
(const
IntWrapper
& other) : value_(other.value_) {}
308
IntWrapper
operator=(const
IntWrapper
& other) {
313
IntWrapper
operator+(int other) const { return
IntWrapper
(value_ + other); }
314
bool operator<(const
IntWrapper
& other) const {
324
const ParamGenerator<
IntWrapper
> gen = Range(IntWrapper(0), IntWrapper(2))
[
all
...]
/external/protobuf/gtest/test/
gtest-param-test_test.cc
244
class
IntWrapper
{
246
explicit
IntWrapper
(int value) : value_(value) {}
247
IntWrapper
(const
IntWrapper
& other) : value_(other.value_) {}
249
IntWrapper
operator=(const
IntWrapper
& other) {
254
IntWrapper
operator+(int other) const { return
IntWrapper
(value_ + other); }
255
bool operator<(const
IntWrapper
& other) const {
265
const ParamGenerator<
IntWrapper
> gen = Range(IntWrapper(0), IntWrapper(2))
[
all
...]
/external/clang/test/SemaCXX/
constructor-initializer.cpp
143
int
IntWrapper
(int i) { return 0; };
150
: A(
IntWrapper
(A)), // Due to a conservative implementation, we do not report warnings inside function/ctor calls even though it is possible to do so.
type-traits.cpp
[
all
...]
Completed in 473 milliseconds