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

1 2 3 4 5 6 7 8 91011>>

  /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
  /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...]
  /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}}
27 // throw(int) and no spec are not compatibl
    [all...]
  /external/clang/test/SemaTemplate/
qualified-names-diag.cpp 12 typedef int INT;
18 std::vector<INT> v1;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangLexer.h 25 #define INT 7
  /hardware/qcom/display/msm8996/libgralloc1/
gr_utils.h 42 #define INT(exp) static_cast<int>(exp)
43 #define UINT(exp) static_cast<unsigned int>(exp)
52 bool IsCompressedRGBFormat(int format);
53 bool IsUncompressedRGBFormat(int format);
54 uint32_t GetBppForUncompressedRGB(int format);
  /hardware/qcom/display/msm8998/libgralloc1/
gr_utils.h 42 #define INT(exp) static_cast<int>(exp)
43 #define UINT(exp) static_cast<unsigned int>(exp)
52 bool IsCompressedRGBFormat(int format);
53 bool IsUncompressedRGBFormat(int format);
54 uint32_t GetBppForUncompressedRGB(int format);
  /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;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic4x/
data.s 4 INT: .int 10,IEEE,-1,"abc",'a'
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
tokens.h 24 #define INT 150
129 extern Node * element(int old_not,int first_on_line,int use_def_MT_handler);
  /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/common/src/main/java/org/conscrypt/
EmptyArray.java 28 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));
  /toolchain/binutils/binutils-2.25/include/cgen/
basic-modes.h 46 typedef int INT;
47 typedef unsigned int UINT;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCLexer.h 36 #define INT 5

Completed in 559 milliseconds

1 2 3 4 5 6 7 8 91011>>