HomeSort by relevance Sort by last modified time
    Searched defs:int (Results 51 - 62 of 62) sorted by null

1 23

  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ReflectionTest.java 52 assertNull(int.class.getSuperclass());
72 assertEquals("int", int.class.getName());
73 assertEquals("[I", int[].class.getName());
83 assertEquals("int", int.class.getCanonicalName());
84 assertEquals("int[]", int[].class.getCanonicalName());
314 assertFalse(int.class.isLocalClass());
329 assertFalse(int.class.isAnonymousClass())
    [all...]
  /external/clang/test/Preprocessor/
cxx_oper_keyword_ms_compat.cpp 60 #define int macro
145 int
  /external/clang/test/SemaCXX/
conversion-function.cpp 5 operator int() const;
18 operator int(); // expected-error{{conversion function must be a non-static member function}}
20 operator int; // expected-error{{'operator int' cannot be the name of a variable or data member}}
22 typedef int func_type(int);
23 typedef int array_type[10];
27 void operator bool(int, ...) const; // expected-error{{conversion function cannot have a return type}} \
30 operator bool(int a = 4, int b = 6) const; // expected-error{{conversion function cannot have any parameters}
    [all...]
typo-correction.cpp 4 int a(-rsing[2]); // expected-error {{undeclared identifier 'rsing'; did you mean 'using'?}}
9 int v_;
10 operator int() const {return v_;}
15 int _val_;
19 error_condition(int _val)
35 return error_condition(static_cast<int>(_e));
45 static int base_type; // expected-note {{'base_type' declared here}}
51 int get_type(struct Derived *st) {
68 int field1;
115 void add_in(int i)
    [all...]
type-traits.cpp 5 struct NonPOD { NonPOD(int); };
9 struct POD { Enum e; int i; float f; NonPOD* p; };
12 typedef int Int;
13 typedef Int IntAr[10];
14 typedef Int IntArNB[];
15 class Statics { static int priv; static NonPOD np; };
17 union Union { int i; float f; };
20 struct HasConv { operator int(); };
21 struct HasAssign { void operator =(int); };
    [all...]
warn-thread-safety-analysis.cpp 37 void LockWhen(const int &cond) __attribute__((exclusive_lock_function));
94 T& operator[](int i) const { return ptr_[i]; }
132 T& operator[](int i);
133 const T& operator[](int i) const;
144 int sls_guard_var __attribute__((guarded_var)) = 0;
145 int sls_guardby_var __attribute__((guarded_by(sls_mu))) = 0;
152 int x __attribute__((guarded_by(mu)));
166 int x = sls_guard_var;
184 int x = sls_guardby_var;
411 operator int*() {
    [all...]
  /external/icu/icu4c/source/i18n/
decNumberLocal.h 67 /* not use int or long directly. */
73 #define Int int32_t
82 typedef long int LI; /* for printf arguments only */
83 #define DECNOINT 0 /* 1 to check no internal use of 'int' */
87 #define int ? /* enable to ensure that plain C 'int' */ macro
283 Int exponent; /* Unadjusted signed exponent (q), or */
431 /* Get the exponent continuation from a decFloat *df as an Int */
432 #define GETECON(df) ((Int)((DFWORD((df), 0)&0x03ffffff)>>(32-6-DECECONL)))
434 #define GETWECON(df) ((Int)((DFWWORD((df), 0)&0x03ffffff)>>(32-6-DECWECONL))
    [all...]
  /external/clang/test/CXX/drs/
dr4xx.cpp 12 struct A { int a; struct a {}; }; // expected-note 2{{conflicting}} expected-note {{ambiguous}}
13 struct B { int a; struct a {}; }; // expected-note 2{{target}} expected-note {{ambiguous}}
24 typedef int type; // expected-note {{protected}}
28 typedef int type; // expected-note {{private}}
33 typedef int type; // expected-note {{private}}
34 friend class A<D, int>;
46 typedef int type;
66 int f(void*);
71 int k = f(p); // ok, finds A::f, even though type XS is a typedef-name
82 static int n; // expected-error {{static data member 'n' not allowed in anonymous struct}
    [all...]
dr2xx.cpp 16 template <class T> T f(int);
20 f<int>(1);
28 template<int (*g)()> struct X {
29 int arr[fold(g == &f<int>) ? 1 : -1];
84 int &r2 = g(t); // expected-error {{undeclared}}
88 int &f(B);
89 int &g(B); // expected-note {{in dependent base class}}
100 void foo(int *arg) { checked_cast<const C *>(arg); }
102 template<typename T> T f(int);
    [all...]
  /external/llvm/test/MC/X86/
x86-64.s 196 // rdar://8735979 - int $3 -> int3
198 int $3 label
  /external/eigen/unsupported/test/mpreal/
mpreal.h 126 #undef MPFR_USE_INTMAX_T // GCC already supports x64 as of "long int" is 64-bit integer, nothing left to do
181 mpreal(const unsigned long int u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
182 mpreal(const unsigned int u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
183 mpreal(const long int u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
184 mpreal(const int u, mp_prec_t prec = mpreal::get_default_prec(), mp_rnd_t mode = mpreal::get_default_rnd());
195 mpreal(const char* s, mp_prec_t prec = mpreal::get_default_prec(), int base = 10, mp_rnd_t mode = mpreal::get_default_rnd());
196 mpreal(const std::string& s, mp_prec_t prec = mpreal::get_default_prec(), int base = 10, mp_rnd_t mode = mpreal::get_default_rnd());
218 mpreal& operator=(const unsigned long int v);
219 mpreal& operator=(const unsigned int v);
220 mpreal& operator=(const long int v);
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldClassTest.java 65 public TestClass2(int i) throws IllegalArgumentException {
75 public static int TEST_INTERFACE_FIELD = 0;
77 int getCount();
78 void setCount(int value);
99 public void setCount(int value) {
129 int count = 0;
131 public int getCount() {
135 public void setCount(int value) {
156 private int privField = 1;
158 public int pubField = 2
    [all...]

Completed in 2654 milliseconds

1 23