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

1 2 3 4

  /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}}
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
CombinedLexer.h 17 #define INT 5
CombinedParser.h 15 #define INT 5
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteLexer.h 21 #define INT 4
TreeRewriteParser.h 30 #define INT 4
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
TreeRewriteLexer.h 17 #define INT 4
TreeRewriteParser.h 14 #define INT 4
  /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/SemaCXX/
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...]
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}} \
27 int version
    [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...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TLexer.h 23 #define INT 5
TParser.h 32 #define INT 5
  /external/clang/test/CXX/except/except.spec/
p3.cpp 7 extern void (*r1)() throw(int);
8 extern void (*r1)() throw(int);
11 typedef int INT;
12 extern void (*r2)() throw(int);
13 extern void (*r2)() throw(INT);
16 extern void (*r3)() throw(int, float);
17 extern void (*r3)() throw(float, int);
24 extern void (*r5)() throw(int); // expected-note {{previous declaration}}
28 extern void f5() throw(int); // expected-note {{previous declaration}
    [all...]
  /external/clang/test/SemaTemplate/
qualified-names-diag.cpp 7 typedef int INT;
13 std::vector<INT> v1;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangLexer.h 25 #define INT 7
LangDumpDecl.h 34 #define INT 7
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableLexer.h 30 #define INT 5
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableLexer.h 30 #define INT 5
SymbolTableParser.h 19 #define INT 5
55 int level;
  /external/conscrypt/src/main/java/org/conscrypt/util/
EmptyArray.java 28 public static final int[] INT = new int[0];
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 46 INT("int") {
52 return call(Type.INT, "asInt", expression);
132 * The Java literal representing the type (e.g. "int", "boolean", "Value")
330 return literal(Type.INT, value);
336 public static JavaExpression integer(int value) {
337 return literal(Type.INT, String.valueOf(value));
  /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/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCLexer.h 36 #define INT 5
  /external/chromium_org/base/strings/
safe_sprintf.h 58 // that expect integers. Thus, it is explicitly legal to pass an "int" to
139 enum Type { INT, UINT, STRING, POINTER };
142 Arg(signed char c) : type(INT) {
150 Arg(signed short j) : type(INT) {
158 Arg(signed int j) : type(INT) {
160 integer.width = sizeof(int);
162 Arg(unsigned int j) : type(UINT) {
164 integer.width = sizeof(int);
166 Arg(signed long j) : type(INT) {
    [all...]

Completed in 941 milliseconds

1 2 3 4