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

1 2 3 4 5 6 7

  /external/clang/test/Index/Inputs/
preamble-with-error.h 1 typedef int Int;
3 extern Int *const www;
  /external/clang/test/ASTMerge/Inputs/
function2.c 1 typedef int Int;
2 void f0(Int);
3 void f1(Int, double);
4 void f2(int, int);
5 void f3(int);
7 int f5(int) __attribute__((const));
struct1.c 1 typedef int Int;
6 Int field1;
14 Int field1;
15 int field2;
21 struct S2 { int i; float f; } x2;
24 struct S3 { int i; float f; double d; } x3;
27 struct S4 { int i; } x4;
30 struct S5 { int i : 8; unsigned j : 8; } x5;
33 struct S6 { int i : 8; unsigned j : 8; } x6
    [all...]
  /external/clang/test/PCH/
cxx-templates.cpp 24 typedef int type;
30 void test(const int (&a6)[17]) {
31 int x = templ_f<int, 5>(3);
34 S<int, char>::partial();
35 S<int, float>::explicit_special();
41 S3<int> s3;
46 S6<const int[17]>::t2 b6 = a6;
49 template struct S4<int>;
51 S7<int[5]> s7_5
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p7-1y.cpp 11 int i;
12 int &&f();
14 using Int = int;
15 using IntLRef = int&;
16 using IntRRef = int&&;
17 using InitListInt = std::initializer_list<int>;
18 using IntPtr = int*;
22 using Int = decltype(x3a);
23 using Int = decltype(x3d)
    [all...]
  /external/clang/test/Index/
annotate-tokens.c 1 typedef int T;
2 struct X { int a, b; };
12 typedef int Int;
13 enum Color g(int i, ...) {
15 (void)__builtin_va_arg(va, Int);
16 (void)__builtin_types_compatible_p(Int, Int);
36 __attribute__((unavailable)) Int __attribute__((unavailable)) test() __attribute__((unavailable));
39 int x;
    [all...]
complete-member-access.m 9 int SuperIVar;
12 @interface Int : Super<MyProtocol>
14 int IVar;
17 @property int prop1;
20 void test_props(Int* ptr) {
25 @interface Sub : Int
26 @property int myProp;
28 - (int)myProp;
29 - (int)myOtherPropLikeThing;
30 - (int)myOtherNonPropThing:(int)value
    [all...]
annotate-tokens-cxx0x.cpp 2 int f(Args ...args) {
7 int a;
10 typedef int Integer;
16 typedef int Int;
19 virtual void foo(Int);
23 virtual void foo(Int) override;
28 typedef decltype(sizeof(int)) size_t;
60 Foo(std::initializer_list<int> il);
85 // CHECK-WITH-OVERRIDE: Identifier: "Int" [19:19 - 19:22] TypeRef=Int:16:1
    [all...]
  /external/libedit/src/
chared.h 64 int level;
65 int offset;
74 int cursor; /* position of saved cursor */
85 int count;
86 int action; /* from cv_action() */
93 int action;
146 protected int cv__isword(Int);
147 protected int cv__isWord(Int);
    [all...]
search.h 48 int patdir; /* Direction of the last search */
49 int chadir; /* Character search direction */
55 protected int el_match(const Char *, const Char *);
56 protected int search_init(EditLine *);
58 protected int c_hmatch(EditLine *, const Char *);
60 protected el_action_t ce_inc_search(EditLine *, int);
61 protected el_action_t cv_search(EditLine *, int);
62 protected el_action_t ce_search_line(EditLine *, int);
63 protected el_action_t cv_repeat_srch(EditLine *, Int);
64 protected el_action_t cv_csearch(EditLine *, int, Int, int, int)
    [all...]
refresh.h 47 int r_oldcv; /* Vertical locations */
48 int r_newcv;
51 protected void re_putc(EditLine *, Int, int);
common.c 55 ed_end_of_file(EditLine *el, Int c __attribute__((__unused__)))
69 ed_insert(EditLine *el, Int c)
71 int count = el->el_state.argument;
112 ed_delete_prev_word(EditLine *el, Int c __attribute__((__unused__)))
126 c_delbefore(el, (int)(el->el_line.cursor - cp));/* delete before dot */
140 ed_delete_next_char(EditLine *el, Int c __attribute__((__unused__)))
187 ed_kill_line(EditLine *el, Int c __attribute__((__unused__)))
208 ed_move_to_end(EditLine *el, Int c __attribute__((__unused__)))
231 ed_move_to_beg(EditLine *el, Int c __attribute__((__unused__)))
254 ed_transpose_chars(EditLine *el, Int c
    [all...]
vi.c 54 private el_action_t cv_action(EditLine *, Int);
55 private el_action_t cv_paste(EditLine *, Int);
61 cv_action(EditLine *el, Int c)
66 if (c != (Int)el->el_chared.c_vcmd.action)
72 (int)(el->el_line.lastchar - el->el_line.buffer));
93 cv_paste(EditLine *el, Int c)
101 (void) fprintf(el->el_errfile, "Paste: \"%.*s\"\n", (int)len, k->buf);
109 c_insert(el, (int)len);
125 vi_paste_next(EditLine *el, Int c __attribute__((__unused__)))
138 vi_paste_prev(EditLine *el, Int c __attribute__((__unused__))
    [all...]
emacs.c 55 em_delete_or_list(EditLine *el, Int c)
91 em_delete_next_word(EditLine *el, Int c __attribute__((__unused__)))
106 c_delafter(el, (int)(cp - el->el_line.cursor)); /* delete after dot */
120 em_yank(EditLine *el, Int c __attribute__((__unused__)))
137 (int)(el->el_chared.c_kill.last - el->el_chared.c_kill.buf));
156 em_kill_line(EditLine *el, Int c __attribute__((__unused__)))
178 em_kill_region(EditLine *el, Int c __attribute__((__unused__)))
191 c_delafter(el, (int)(cp - el->el_line.cursor));
198 c_delbefore(el, (int)(cp - el->el_chared.c_kill.mark));
211 em_copy_region(EditLine *el, Int c __attribute__((__unused__))
    [all...]
  /external/clang/test/CXX/basic/basic.start/basic.start.main/
p2.cpp 24 typedef int Int;
28 Int main(Int argc, Carp argv[]) {
34 typedef int Int;
38 Int main(Int argc, Carp argv[], Char *env[]) {
44 int main() {
49 static int main() { // expected-error {{'main' is not allowed to be declared static}
    [all...]
  /external/llvm/include/llvm/Analysis/
IntervalIterator.h 68 inline void addNodeToInterval(Interval *Int, BasicBlock *BB) {
69 Int->Nodes.push_back(BB);
79 inline void addNodeToInterval(Interval *Int, Interval *I) {
80 // Add all of the nodes in I as new nodes in Int.
81 copy(I->Nodes.begin(), I->Nodes.end(), back_inserter(Int->Nodes));
153 inline _Self operator++(int) { // Postincrement
170 Interval *Int = new Interval(Header);
176 ProcessNode(Int, getSourceGraphNode(OrigContainer, *I));
178 IntStack.push_back(std::make_pair(Int, succ_begin(Int)));
    [all...]
  /external/clang/test/CXX/expr/expr.const/
p3-0x.cpp 4 int nonconst = 8; // expected-note 3 {{here}}
6 template<int = nonconst> struct NonConstT {}; // expected-error {{non-type template argument is not a constant expression}} expected-note {{read of non-const}}
18 bool a(int n) {
35 struct S { constexpr operator int() const { return 5; } };
47 int b(unsigned n) {
51 case (int)EE::EE32:
53 case (long long)1e10: // expected-error {{case value evaluates to 10000000000, which cannot be narrowed to type 'unsigned int'}}
54 case -3: // expected-error {{case value evaluates to -3, which cannot be narrowed to type 'unsigned int'}}
62 c = (int)EE::EE32,
67 template<unsigned char> using A = int;
    [all...]
  /external/clang/test/Sema/
cast.c 20 typedef int Int;
24 typedef _Complex int CInt;
33 (void) (Int) v;
45 void testInt(Int v) {
47 (void) (Int) v;
55 (void) (VoidPtr) v; // expected-warning{{cast to 'VoidPtr' (aka 'void *') from smaller integer type 'Int' (aka 'int')}}
56 (void) (CharPtr) v; // expected-warning{{cast to 'CharPtr' (aka 'char *') from smaller integer type 'Int' (aka 'int')}}
    [all...]
  /external/clang/include/clang/Serialization/
ContinuousRangeMap.h 1 //===--- ContinuousRangeMap.h - Map with int range as key -------*- C++ -*-===//
35 template <typename Int, typename V, unsigned InitialCapacity>
38 typedef std::pair<Int, V> value_type;
49 bool operator ()(const_reference L, Int R) const {
52 bool operator ()(Int L, const_reference R) const {
55 bool operator ()(Int L, Int R) const {
91 iterator find(Int K) {
100 const_iterator find(Int K) const {
  /external/chromium_org/v8/src/compiler/
machine-operator.h 161 V(Int, Add) \
162 V(Int, Sub) \
163 V(Int, Mul) \
164 V(Int, Div) \
165 V(Int, UDiv) \
166 V(Int, Mod) \
167 V(Int, UMod) \
168 V(Int, LessThan) \
169 V(Int, LessThanOrEqual)
  /external/clang/test/CXX/class/class.friend/
p1.cpp 5 int intfield;
12 typedef int Int;
13 Int typedeffed_member();
19 int myglobal;
32 friend int Outer::Inner::intfield; // expected-error {{friends can only be classes or functions}}
33 friend int Outer::Inner::missing_field; //expected-error {{friends can only be classes or functions}}
34 friend int myoperation(float); // okay
35 friend int myglobal; // expected-error {{friends can only be classes or functions}}
53 friend int Base::typedeffed_member(); // okay: should look through typede
    [all...]
  /external/llvm/lib/Analysis/
IntervalPartition.cpp 58 void IntervalPartition::updatePredecessors(Interval *Int) {
59 BasicBlock *Header = Int->getHeaderNode();
60 for (Interval::succ_iterator I = Int->Successors.begin(),
61 E = Int->Successors.end(); I != E; ++I)
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 31 Constant.Int = i;
54 int64_t Int;
70 return Constant.Int == other.Constant.Int;
83 int64_t getInt() const { return Constant.Int; }
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 292 const llvm::APSInt& Int,
296 const llvm::APSInt& Int,
300 const llvm::APSInt& Int,
304 const llvm::APSInt& Int,
308 const llvm::APSInt& Int,
312 const llvm::APSInt& Int,
420 const llvm::APSInt &Int,
424 if (AdjustmentType.testInRange(Int, true) != APSIntType::RTR_Within)
427 llvm::APSInt Lower = AdjustmentType.convert(Int) - Adjustment;
432 // [Int-Adjustment+1, Int-Adjustment-1
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
decNumber.c 208 #define BADINT (Int)0x80000000 /* most-negative Int; error indicator */
210 #define BIGEVEN (Int)0x80000002
211 #define BIGODD (Int)0x80000003
229 #define eInt Int /* extended integer */
251 static void decApplyRound(decNumber *, decContext *, Int, uInt *);
252 static Int decCompare(const decNumber *lhs, const decNumber *rhs, Flag);
257 Int *, uInt *);
258 static decNumber * decDecap(decNumber *, Int);
263 static void decFinalize(decNumber *, decContext *, Int *, uInt *)
    [all...]

Completed in 2503 milliseconds

1 2 3 4 5 6 7