OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IntWrapper
(Results
1 - 15
of
15
) sorted by null
/external/clang/test/Analysis/inlining/
eager-reclamation-path-notes.cpp
7
}
IntWrapper
;
9
IntWrapper
*getNullWrapper() {
24
IntWrapper
*ptr = getNullWrapper();
/libcore/benchmarks/src/benchmarks/
DeepArrayOpsBenchmark.java
37
array[i] = new
IntWrapper
(i);
38
array2[i] = new
IntWrapper
(i);
95
array[i] = new
IntWrapper
(i);
124
public static final class
IntWrapper
{
127
public
IntWrapper
(int wrap) {
138
if (!(o instanceof
IntWrapper
)) {
142
return ((
IntWrapper
) o).wrapped == this.wrapped;
/external/clang/test/Analysis/
reinterpret-cast.cpp
6
struct
IntWrapper
{
10
struct Child : public
IntWrapper
{
51
struct IntWrapperSubclass : public
IntWrapper
{};
54
IntWrapper
w;
dtor.cpp
129
struct
IntWrapper
{
130
IntWrapper
() : x(0) {}
131
~
IntWrapper
();
140
IntWrapper
arr[2];
312
IntWrapper
arr[2][2];
333
struct
IntWrapper
{
335
IntWrapper
(int y) : x(y) {}
336
IntWrapper
() {
342
struct DerivedWrapper : public
IntWrapper
{
343
DerivedWrapper(int y) :
IntWrapper
(y) {
[
all
...]
inline.cpp
313
class
IntWrapper
{
317
IntWrapper
(int input) : value(input) {
326
IntWrapper
*obj = new
IntWrapper
(42);
333
IntWrapper
*obj = static_cast<
IntWrapper
*>(malloc(sizeof(
IntWrapper
)));
334
IntWrapper
*alias = new (obj)
IntWrapper
(42);
/external/skia/tests/
GrTRecorderTest.cpp
21
class
IntWrapper
{
23
IntWrapper
() {}
24
IntWrapper
(int value) : fValue(value) {}
37
GrTRecorder<
IntWrapper
, int> recorder(j);
44
IntWrapper
, (i)));
48
IntWrapper
, (i),
/external/google-breakpad/src/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
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/vulkan-validation-layers/tests/gtest-1.7.0/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
...]
/ndk/sources/third_party/googletest/googletest/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/clang/test/SemaCXX/
constructor-initializer.cpp
151
int
IntWrapper
(int &i) { return 0; };
158
: 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
...]
/external/libbrillo/brillo/
any_internal_impl.h
66
struct
IntWrapper
{
69
//
IntWrapper
when both overloads are provided.
72
IntWrapper
(int /* dummy */) {} // do nothing
77
// takes an argument of type
IntWrapper
(which is implicitly convertible from
80
static std::false_type TriggerFunction(
IntWrapper
dummy);
/external/clang/test/Misc/
diag-template-diffing.cpp
[
all
...]
Completed in 2996 milliseconds