HomeSort by relevance Sort by last modified time
    Searched refs:INT (Results 1 - 25 of 181) sorted by null

1 2 3 4 5 6 7 8

  /external/clang/test/SemaCXX/
qualified-names-print.cpp 1 // RUN: %clang_cc1 -ast-print %s 2>&1 | grep "N::M::X<INT>::value"
11 typedef int INT;
13 int test() {
14 return N::M::X<INT>::value;
overload-decl.cpp 3 void f(int);
4 void f(int, float);
5 void f(int, int);
6 void f(int, ...);
9 void f(int, Float); // expected-note {{previous declaration is here}}
11 int f(int, Float); // expected-error {{functions that differ only in their return type cannot be overloaded}}
14 int g(); // expected-error {{functions that differ only in their return type cannot be overloaded}}
16 typedef int INT
    [all...]
typedef-redecl.cpp 2 typedef int INT;
3 typedef INT REALLY_INT; // expected-note {{previous definition is here}}
6 typedef float REALLY_INT; // expected-error{{typedef redefinition with different types ('float' vs 'INT' (aka 'int'))}}
9 typedef int result_type; // expected-note {{previous definition is here}}
10 typedef INT result_type; // expected-error {{redefinition of 'result_type'}}
14 typedef int Y; // expected-error{{typedef redefinition with different types ('int' vs 'Y')}}
16 typedef int Y2; // expected-note{{declared here}
    [all...]
overloaded-operator-decl.cpp 4 X(int);
12 void operator()(int x = 17) const;
13 int operator[](int);
15 static int operator+(Y, Y); // expected-error{{overloaded 'operator+' cannot be a static member function}}
23 X operator+(int, float); // expected-error{{overloaded 'operator+' must have at least one parameter of class or enumeration type}}
31 void operator()(Y&, int, int); // expected-error{{overloaded 'operator()' must be a non-static member function}}
33 typedef int INT;
    [all...]
constructor.cpp 2 typedef int INT;
7 explicit Foo(int); // expected-note {{previous declaration is here}}
10 ((Foo))(INT); // expected-error{{cannot be redeclared}}
12 Foo(Foo foo, int i = 17, int j = 42); // expected-error{{copy constructor must pass its first argument by reference}}
18 int Foo(int, int); // expected-error{{constructor cannot have a return type}} \
25 int version
    [all...]
  /external/clang/test/SemaTemplate/
qualified-names-diag.cpp 7 typedef int INT;
13 std::vector<INT> v1;
  /hardware/ti/omap3/dspbridge/libbridge/inc/
perfutils.h 22 INT getTimeStamp(struct timeval *tv);
24 VOID PrintStatistics(struct timeval *tv_beg,struct timeval* tv_end, char * ModuleName,INT BufferSize);
DSPProcessor_OEM.h 96 IN CONST INT iArgc,
  /libcore/luni/src/main/java/libcore/io/
SizeOf.java 20 public static final int CHAR = 2;
21 public static final int DOUBLE = 8;
22 public static final int FLOAT = 4;
23 public static final int INT = 4;
24 public static final int LONG = 8;
25 public static final int SHORT = 2;
  /dalvik/hit/src/com/android/hit/
Types.java 20 private static int mIdSize = 4;
22 public static final int OBJECT = 2;
23 public static final int BOOLEAN = 4;
24 public static final int CHAR = 5;
25 public static final int FLOAT = 6;
26 public static final int DOUBLE = 7;
27 public static final int BYTE = 8;
28 public static final int SHORT = 9;
29 public static final int INT = 10
    [all...]
  /external/clang/test/CXX/temp/temp.param/
p4.cpp 5 typedef int INT;
7 template<int N> struct A1;
8 template<INT N, INT M> struct A2;
10 template<int &X> struct A4;
11 template<int *Ptr> struct A5;
12 template<int (&f)(int, int)> struct A6
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p4-neg.cpp 6 template<int I> void f0() { } // expected-note{{previous}}
7 template<int> void f0() { } // expected-error{{redefinition}}
9 typedef int INT;
11 template<template<class T, T Value1, INT> class X>
13 template<template<typename T, T Value1, int> class>
25 // template<int> struct A { };
26 // template<int I> void f0(A<I>) { } // Xpected-note{{previous}}
27 // template<int J> void f0(A<J>) { } // Xpected-error{{redefinition}}
  /dalvik/dexgen/src/com/android/dexgen/rop/type/
StdTypeList.java 29 /** {@code non-null;} the list {@code [int]} */
30 public static final StdTypeList INT = StdTypeList.make(Type.INT);
52 /** {@code non-null;} the list {@code [int, int]} */
54 StdTypeList.make(Type.INT, Type.INT);
72 /** {@code non-null;} the list {@code [int, Object]} */
74 StdTypeList.make(Type.INT, Type.OBJECT);
88 /** {@code non-null;} the list {@code [long, int]} */
    [all...]
  /dalvik/dx/src/com/android/dx/rop/type/
StdTypeList.java 29 /** {@code non-null;} the list {@code [int]} */
30 public static final StdTypeList INT = StdTypeList.make(Type.INT);
52 /** {@code non-null;} the list {@code [int, int]} */
54 StdTypeList.make(Type.INT, Type.INT);
72 /** {@code non-null;} the list {@code [int, Object]} */
74 StdTypeList.make(Type.INT, Type.OBJECT);
88 /** {@code non-null;} the list {@code [long, int]} */
    [all...]
  /libcore/luni/src/main/java/java/nio/
IntToByteBufferAdapter.java 22 * This class wraps a byte buffer to be a int buffer.
45 super(byteBuffer.capacity() / SizeOf.INT);
66 byteBuffer.limit(limit * SizeOf.INT);
67 byteBuffer.position(position * SizeOf.INT);
87 public int get() {
91 return byteBuffer.getInt(position++ * SizeOf.INT);
95 public int get(int index) {
97 return byteBuffer.getInt(index * SizeOf.INT);
101 public IntBuffer get(int[] dst, int dstOffset, int intCount)
    [all...]
  /hardware/ti/omap3/dspbridge/libbridge/
perfutils.c 38 INT getTimeStamp(struct timeval *tv)
40 INT Result = 0;
52 char *ModuleName, INT BufferSize)
  /hardware/ti/omap3/dspbridge/inc/
uuidutil.h 58 INT size);
DSPProcessor_OEM.h 96 IN CONST INT iArgc,
  /libcore/luni/src/main/java/libcore/util/
EmptyArray.java 26 public static final int[] INT = new int[0];
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Rops.java 37 /** {@code r,x: int :: r = x;} */
39 new Rop(RegOps.MOVE, Type.INT, StdTypeList.INT, "move-int");
67 /** {@code r,param(x): int :: r = param(x);} */
69 new Rop(RegOps.MOVE_PARAM, Type.INT, StdTypeList.EMPTY,
70 "move-param-int");
92 /** {@code r, literal: int :: r = literal;} */
94 new Rop(RegOps.CONST, Type.INT, StdTypeList.EMPTY, "const-int");
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
Rops.java 37 /** {@code r,x: int :: r = x;} */
39 new Rop(RegOps.MOVE, Type.INT, StdTypeList.INT, "move-int");
67 /** {@code r,param(x): int :: r = param(x);} */
69 new Rop(RegOps.MOVE_PARAM, Type.INT, StdTypeList.EMPTY,
70 "move-param-int");
92 /** {@code r, literal: int :: r = literal;} */
94 new Rop(RegOps.CONST, Type.INT, StdTypeList.EMPTY, "const-int");
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 48 static final int WIRETYPE_VARINT = 0;
49 static final int WIRETYPE_FIXED64 = 1;
50 static final int WIRETYPE_LENGTH_DELIMITED = 2;
51 static final int WIRETYPE_START_GROUP = 3;
52 static final int WIRETYPE_END_GROUP = 4;
53 static final int WIRETYPE_FIXED32 = 5;
55 static final int TAG_TYPE_BITS = 3;
56 static final int TAG_TYPE_MASK = (1 << TAG_TYPE_BITS) - 1;
59 static int getTagWireType(final int tag)
    [all...]
  /external/clang/test/PCH/
types.c 8 typedef int INT;
9 INT int_value;
11 __attribute__((address_space(1))) int int_as_one;
22 _Atomic(int) AtomicInt_val;
30 *bl = ^(int x, float f) { return x; };
50 int np1(x, y)
51 int x;
69 struct S { int x, y; };
70 typeof_17 t17_2 = (struct S){1, 2}; // expected-error{{initializing 'typeof_17' (aka 'int') with an expression of incompatible type 'struct S'}
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
EventValueDescription.java 48 private int mValue;
56 if ((type != EventValueType.INT && type != EventValueType.LONG)
68 public static ValueType getValueType(int value) {
80 public int getValue() {
89 private ValueType(int value) {
101 * If the type is {@link EventValueType#INT} or {@link EventValueType#LONG}, the
110 if (mEventValueType == EventValueType.INT || mEventValueType == EventValueType.LONG) {
172 case INT:
196 case INT:
  /external/clang/test/Sema/
function-redecl.c 4 void g0(int, int);
11 void g0(int); // expected-error{{conflicting types for 'g0'}}
13 int g1(int, int);
15 typedef int INT;
17 INT g1(x, y)
18 int x
    [all...]

Completed in 519 milliseconds

1 2 3 4 5 6 7 8