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

12 3

  /external/clang/test/OpenMP/
parallel_for_simd_reduction_messages.cpp 6 bool foobool(int argc) {
13 mutable int a;
26 int a;
33 int operator+(const S3 &arg1, const S3 &arg2) { return 5; }
36 extern const int f; // expected-note 4 {{'f' declared here}}
38 int a;
44 S4(int v) : a(v) {}
48 int a;
54 S5(int v) : a(v) {}
56 class S6 { // expected-note 2 {{candidate function (the implicit copy assignment operator) not viable: no known conversion from 'int' to 'const S6' for 1st argument}
    [all...]
parallel_reduction_messages.cpp 6 bool foobool(int argc) {
13 mutable int a;
26 int a;
33 int operator+(const S3 &arg1, const S3 &arg2) { return 5; }
36 extern const int f; // expected-note 4 {{'f' declared here}}
38 int a;
44 S4(int v) : a(v) {}
48 int a;
54 S5(int v) : a(v) {}
56 class S6 { // expected-note 2 {{candidate function (the implicit copy assignment operator) not viable: no known conversion from 'int' to 'const S6' for 1st argument}
    [all...]
parallel_sections_reduction_messages.cpp 6 bool foobool(int argc) {
13 mutable int a;
26 int a;
33 int operator+(const S3 &arg1, const S3 &arg2) { return 5; }
36 extern const int f; // expected-note 4 {{'f' declared here}}
38 int a;
44 S4(int v) : a(v) {}
48 int a;
54 S5(int v) : a(v) {}
56 class S6 { // expected-note 2 {{candidate function (the implicit copy assignment operator) not viable: no known conversion from 'int' to 'const S6' for 1st argument}
    [all...]
sections_reduction_messages.cpp 6 bool foobool(int argc) {
13 mutable int a;
26 int a;
33 int operator+(const S3 &arg1, const S3 &arg2) { return 5; }
36 extern const int f; // expected-note 4 {{'f' declared here}}
38 int a;
44 S4(int v) : a(v) {}
48 int a;
54 S5(int v) : a(v) {}
56 class S6 { // expected-note 2 {{candidate function (the implicit copy assignment operator) not viable: no known conversion from 'int' to 'const S6' for 1st argument}
    [all...]
simd_reduction_messages.cpp 6 bool foobool(int argc) {
13 mutable int a;
26 int a;
33 int operator+(const S3 &arg1, const S3 &arg2) { return 5; }
36 extern const int f; // expected-note 4 {{'f' declared here}}
38 int a;
44 S4(int v) : a(v) {}
48 int a;
54 S5(int v) : a(v) {}
56 class S6 { // expected-note 2 {{candidate function (the implicit copy assignment operator) not viable: no known conversion from 'int' to 'const S6' for 1st argument}
    [all...]
teams_reduction_messages.cpp 6 bool foobool(int argc) {
13 mutable int a;
26 int a;
33 int operator+(const S3 &arg1, const S3 &arg2) { return 5; }
36 extern const int f; // expected-note 4 {{'f' declared here}}
38 int a;
44 S4(int v) : a(v) {}
48 int a;
54 S5(int v) : a(v) {}
56 class S6 { // expected-note 2 {{candidate function (the implicit copy assignment operator) not viable: no known conversion from 'int' to 'const S6' for 1st argument}
    [all...]
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/
fill_n.pass.cpp 43 int ia[n] = {0};
55 int ia[n] = {0};
66 operator int() const { return i++; }
67 mutable int i;
74 int ia[n] = {0};
138 int main()
145 test_int<forward_iterator<int*> >();
146 test_int<bidirectional_iterator<int*> >();
147 test_int<random_access_iterator<int*> >();
148 test_int<int*>();
    [all...]
  /external/llvm/test/MC/X86/
x86-32.s 111 int $4 label
112 // CHECK: int $4
114 int $255 label
115 // CHECK: int $255
x86-16.s 67 int $4 label
68 // CHECK: int $4
70 int $255 label
71 // CHECK: int $255
  /libcore/luni/src/test/java/libcore/java/lang/
ClassTest.java 47 assertNull(int.class.getGenericSuperclass());
  /external/clang/test/Analysis/
temp-obj-dtors-cfg-output.cpp 13 operator int() { return 0; }
22 operator int() { return 1; }
26 void foo(int);
31 int a = int(A()) + int(B());
32 foo(int(A()) + int(B()));
33 int b;
39 int b
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p4.cpp 14 NonLiteral(int) {}
18 explicit Literal(int); // expected-note 2 {{here}}
19 operator int() const { return 0; }
25 constexpr S(int, N::C) {}
26 constexpr S(int, NonLiteral, N::C) {} // expected-error {{constexpr constructor's 2nd parameter type 'NonLiteral' is not a literal type}}
27 constexpr S(int, NonLiteral = 42) {} // expected-error {{constexpr constructor's 2nd parameter type 'NonLiteral' is not a literal type}}
57 int u;
71 typedef int I;
73 using J = int;
74 using K = int[sizeof(I) + sizeof(J)]
    [all...]
p3.cpp 14 NonLiteral(int) {}
18 operator int() const { return 0; }
22 virtual int ImplicitlyVirtual() const = 0; // expected-note {{overridden virtual function}}
25 int ImplicitlyVirtual() const;
32 constexpr int f() const;
35 virtual constexpr int ExplicitlyVirtual() const { return 0; } // expected-error {{virtual function cannot be constexpr}}
37 constexpr int ImplicitlyVirtual() const { return 0; } // expected-error {{virtual function cannot be constexpr}}
50 constexpr int NonLiteralParam(NonLiteral) const { return 0; } // expected-error {{constexpr function's 1st parameter type 'NonLiteral' is not a literal type}}
51 typedef int G(NonLiteral) const;
55 constexpr int Deleted() const = delete
    [all...]
  /external/clang/test/CXX/expr/expr.const/
p5-0x.cpp 9 constexpr A(int i) : val(i) { }
10 constexpr operator int() const { return val; }
13 int val;
15 template<int> struct X { };
17 X<a> x; // ok, unique conversion to int
18 int ary[a]; // expected-error {{size of array has non-integer type 'const std_example::A'}}
24 constexpr operator int() const { return 8; }
29 constexpr explicit operator int() const { return 4; } // expected-note 4{{here}}
33 constexpr operator int() const { return 2; } // expected-note 4{{here}}
37 constexpr int test_ok = ok; // o
    [all...]
  /external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
p1.cpp 4 int begin;
5 void foo(int x) {
6 for (int& it : x) { // expected-error {{invalid range expression of type 'int'; no viable 'begin' function available}}
12 operator int*();
29 int begin(int);
30 int end(int);
37 int *begin(); // expected-note 3{{selected 'begin' function with iterator type 'int *'}} expected-note (…)
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
multi-level-substitution.cpp 26 X0<int>().f<1, 2, 3, 4, 5>();
43 int check0[X<short, int, long>::Inner<tuple<pair<short, unsigned short>,
44 pair<int, unsigned int>,
48 int check1[X<short, int>::Inner<tuple<pair<short, unsigned short>,
49 pair<int, unsigned int>,
67 int check2[X1<short, int, long>::Inner<tuple<pair<short, unsigned short>
    [all...]
  /external/clang/test/CodeGenCXX/
constructor-init.cpp 5 extern "C" int printf(...);
9 M(int i) { iM = i; printf("M(%d)\n", i); }
10 int iM;
16 P(int i) { iP = i; printf("P(%d)\n", i); }
17 int iP;
23 Q(int i) { iQ = i; printf("Q(%d)\n", i); }
24 int iQ;
34 int i1;
57 int main() {
67 A(int) {}
    [all...]
  /external/clang/test/SemaTemplate/
constexpr-instantiate.cpp 7 int n = get<int>();
11 constexpr int j = A::get<int>();
13 template<typename T> constexpr int consume(T);
15 const int k = consume(0); // expected-note {{here}}
17 template<typename T> constexpr int consume(T) { return 0; }
19 constexpr int l = consume(0);
21 constexpr int m = k; // expected-error {{constant expression}} expected-note {{initializer of 'k'}}
37 int f()
    [all...]
instantiate-declref.cpp 37 typedef int INT;
38 template struct N::Outer::Inner::InnerTemplate<INT>::VeryInner;
39 template struct N::Outer::Inner::InnerTemplate<INT>::UeberInner; // expected-error{{no struct named 'UeberInner' in 'N::Outer::Inner::InnerTemplate<int>'}}
71 template struct N2::Outer2::Inner<int*, float*>; // expected-note{{instantiation}}
77 int member;
80 operator int safe_bool::*() const {
87 void test_smart_ptr(smart_ptr<int> p) {
93 template <int K> struct X
    [all...]
  /external/skia/tests/
GrTRecorderTest.cpp 19 static int activeRecorderItems = 0;
24 IntWrapper(int value) : fValue(value) {}
25 operator int() { return fValue; }
27 int fValue;
32 for (int data = 0; data < 2; ++data) {
36 for (int j = 0; j < 8; ++j) {
37 GrTRecorder<IntWrapper, int> recorder(j);
41 for (int i = 0; i < 100; ++i) {
70 typedef GrTRecorder<ExtraData, int> Recorder;
72 ExtraData(int i) : fData(i)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
comutil.h 82 unsigned int length() const throw();
106 unsigned int Length() const throw();
107 int Compare(const Data_t &str) const throw();
123 int _Compare(const _bstr_t &str) const throw();
213 inline unsigned int _bstr_t::length() const throw() { return (m_Data!=NULL) ? m_Data->Length() : 0; }
266 inline int _bstr_t::_Compare(const _bstr_t &str) const throw() {
290 const unsigned int l1 = s1.length();
291 const unsigned int l2 = s2.length();
348 inline unsigned int _bstr_t::Data_t::Length() const throw() { return m_wstr ? ::SysStringLen(m_wstr) : 0; }
349 inline int _bstr_t::Data_t::Compare(const _bstr_t::Data_t &str) const throw()
    [all...]
  /external/clang/test/Misc/
ast-dump-decl.cpp 5 enum TestEnumDeclFixed : int;
7 // CHECK: EnumDecl{{.*}} class TestEnumDeclScoped 'int'
8 // CHECK: EnumDecl{{.*}} TestEnumDeclFixed 'int'
11 int TestFieldDeclInit = 0;
13 // CHECK: FieldDecl{{.*}} TestFieldDeclInit 'int'
25 void testParmVarDeclInit(int TestParmVarDeclInit = 0);
26 // CHECK: ParmVarDecl{{.*}} TestParmVarDeclInit 'int'
30 int i;
36 int j;
64 using TestTypeAliasDecl = int;
    [all...]
  /external/clang/test/SemaCXX/
member-init.cpp 4 int n : 3 = 7; // expected-error {{bitfield member cannot have an in-class initializer}}
7 int a;
9 int &n = a;
11 int &GetN() { return n; }
15 int k;
17 int &n = // expected-error {{cannot use defaulted default constructor of 'Recurse' within the class outside of member functions because 'n' has an initializer}}
24 int as[] = { 1, 2, 3 }; // expected-error {{array bound cannot be deduced from an in-class initializer}}
25 int bs[4] = { 4, 5, 6, 7 };
26 int cs[] = { 8, 9, 10 }; // expected-error {{array bound cannot be deduced from an in-class initializer}}
29 template<int n> struct T { static const int B; }
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
CameraUtilsTypeReferenceTest.java 153 TypeReference<int[]> intArrayToken = new TypeReference<int[]>() {{ }};
154 assertRawTypeEquals(intArrayToken, int[].class);
207 TypeReference<int[]> intArrayToken = new TypeReference<int[]>() {{ }};
208 assertTypeReferenceEquals(intArrayToken.getComponentType(), int.class);
  /ndk/tests/abcc/jni/
Abcc.h 70 operator int() const { return (int)mAbi; }
123 int readWrapper(BitcodeCompiler &);
128 int mOptimizationLevel;
140 static int transferBytesToNumLe(const unsigned char *buffer, size_t n);
203 virtual int parseLDFlags(BitcodeInfo &info, const std::string &str) = 0;

Completed in 250 milliseconds

12 3