Home
last modified time | relevance | path

Searched defs:int (Results 1 – 25 of 754) sorted by relevance

12345678910>>...31

/external/clang/test/Parser/
Dmethod-prototype-1.m3 - (void) bycopy : (int) woodo, ... ; argument
4 - (void) break : (int) woodo, ... ; argument
5 - (void) enum : (int) woodo, ... ; argument
6 - (void) struct : (int) woodo, ... ; argument
7 - (void) union : (int) woodo, ... ; argument
8 - (void) if : (int) woodo, int i, char chh, ... ; argument
9 - (void) else : (int) woodo, ... ; argument
10 - (void) while : (int) woodo, ... ; argument
11 - (void) do : (int) woodo, ... ; argument
12 - (void) for : (int) woodo, ... ; argument
[all …]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DUrlComponentEncodingTester.java45 map.put((int) '\b', Encoding.PERCENT); // Backspace in map.put() argument
46 map.put((int) '\t', Encoding.SKIP); // Horizontal Tab in map.put() argument
47 map.put((int) '\n', Encoding.SKIP); // Line feed in map.put() argument
49 map.put((int) '\f', Encoding.SKIP); // Form feed in map.put() argument
50 map.put((int) '\r', Encoding.SKIP); // Carriage return in map.put() argument
69 map.put((int) ' ', Encoding.PERCENT); in map.put() argument
70 map.put((int) '!', Encoding.IDENTITY); in map.put() argument
71 map.put((int) '"', Encoding.PERCENT); in map.put() argument
72 map.put((int) '#', Encoding.PERCENT); in map.put() argument
73 map.put((int) '$', Encoding.IDENTITY); in map.put() argument
[all …]
/external/clang/test/Index/
Dcomplete-super.m7 - (void)add:(int)x to:(int)y; argument
8 + (void)select:(Bool)condition first:(int)x second:(int)y; argument
14 - (void)add:(int)x to:(int)y; argument
15 + (void)select:(Bool)condition first:(int)x second:(int)y; argument
19 - (void)add:(int)a to:(int)b { argument
23 + (void)select:(Bool)condition first:(int)a second:(int)b { argument
30 - (void)multiply:(int)x by:(int)y; argument
37 - (void)multiply:(int)a by:(int)b { argument
Dcomplete-method-decls.m6 - (id)initWithInt:(int)x; argument
7 - (id)initWithTwoInts:(inout int)x second:(int)y;
22 - (id)initWithInt:(int)x; argument
25 - (int)setValue:(int)x; argument
29 - (id)categoryFunction:(int)x; argument
36 - (void)setValue:(int)x { } argument
37 - (id)initWithTwoInts:(int)x second:(int)y { return self; } argument
42 - (id)categoryFunction:(int)x { return self; } argument
46 - (int)first:(int)x second:(float)y third:(double)z; argument
47 - (id)first:(int)xx second2:(float)y2 third:(double)z; argument
[all …]
Dcomplete-at-exprstmt.m4 - (int)myMethod:(int)arg; argument
8 - (int)myMethod:(int)arg { argument
14 + (int)add:(int)x to:(int)y; argument
15 + (int)add:(int)x to:(int)y plus:(int)z; argument
Dcomplete-property-getset.m7 - (int)getter2_not:(int)x; argument
9 - (void)setter1:(int)x; argument
10 + (void)setter2_not_inst:(int)x; argument
11 + (void)setter2_many_args:(int)x second:(int)y; argument
12 - (void)setter3:(int)y; argument
18 - (void)setter4:(int)x; argument
Dcomplete-objc-message.m6 - protocolInstanceMethod : (int)value; argument
11 + (int)classMethod1:a withKeyword:(int)b; argument
86 - (int)Method:(int)i; argument
88 - (int)Method:(float)f Arg1:(int)i1 Arg2:(int)i2; argument
89 - (int)Method:(float)f Arg1:(int)i1 OtherArg:(id)obj; argument
90 - (int)Method:(float)f SomeArg:(int)i1 OtherArg:(id)obj; argument
91 - (int)OtherMethod:(float)f Arg1:(int)i1 Arg2:(int)i2; argument
99 - (int)Method:(int)i, ...; argument
107 + (int)Method:(int)i; argument
109 + (int)Method:(float)f Arg1:(int)i1 Arg2:(int)i2; argument
[all …]
/external/clang/test/CodeGenObjCXX/
Dmangle.mm37 - (void) process: (int)r3 :(int)r4 :(int)r5 :(int)r6 :(int)r7 :(int)r8 :(int)r9 :(int)r10 :(int &)i; argument
41 - (void) process: (int)r3 :(int)r4 :(int)r5 :(int)r6 :(int)r7 :(int)r8 :(int)r9 :(int)r10 :(int &)i… argument
/external/clang/test/CodeGenObjC/
Ddot-syntax-1.m18 -(void) setX: (int) arg; argument
26 -(void) _setX: (int) arg { argument
36 -(void) setX: (int) arg { argument
45 -(void) setX: (int) arg; argument
57 -(void) setX: (int) arg { argument
67 -(void) _setX: (int) arg { argument
76 -(void) _setX: (int) arg; argument
88 -(void) _setX: (int) arg { argument
98 -(void) setX: (int) arg { argument
107 -(void) setX: (int) arg; argument
[all …]
/external/clang/test/SemaObjC/
Dmethod-undefined-warn-1.m5 - (void) meth : (int) arg1; argument
8 + (void) cls_meth1 : (int) arg1; // expected-note {{method 'cls_meth1:' declared here}} argument
15 - (void) meth : (int) arg2{} argument
16 - (void) cls_meth1 : (int) arg2{} argument
21 - (void) meth : (int) arg1; argument
24 + (void) cls_meth1 : (int) arg1; // expected-note {{method 'cls_meth1:' declared here}} argument
31 - (void) meth : (int) arg2{} argument
32 - (void) cls_meth1 : (int) arg2{} argument
37 - (void) meth : (int) arg1; argument
38 - (void) cls_meth1 : (int) arg1; argument
[all …]
Divar-ref-misuse.m7 + (void)setFoo:(int)foo; argument
8 + (void)setSprite:(int)sprite; argument
9 - (void)setFoo:(int)foo; argument
10 - (void)setSprite:(int)sprite; argument
17 + (void)setFoo:(int)foo { argument
23 + (void)setSprite:(int)sprite { argument
30 - (void)setFoo:(int)foo { argument
34 - (void)setSprite:(int)sprite { argument
Dmethod-typecheck-1.m4 - (void) setMoo: (int) x; // expected-note {{previous definition is here}} argument
5 - (int) setMoo1: (int) x; // expected-note {{previous definition is here}} argument
6 - (int) setOk : (int) x : (double) d; argument
11 - (char) setMoo1: (int) x { return 0; } // expected-warning {{conflicting return type in implement… argument
12 - (int) setOk : (int) x : (double) d { return 0; } argument
18 + (void) cMoo: (int) x; // expected-note 2 {{previous definition is here}} argument
28 - (void) setCat: (int) x; // expected-note 2 {{previous definition is here}} argument
29 + (void) cCat: (int) x; // expected-note {{previous definition is here}} argument
35 + (int) cCat: (int) x { return 0; } // expected-warning {{conflicting return type in implementatio… argument
Dproperty-user-setter.m7 -(void) setY: (int) y0; argument
11 -(void) setX: (int) a0; argument
18 -(void) setY: (int) y0{} argument
37 - (void)setIdentifier:(int)ident {} argument
39 - (id)initWithIdentifier:(int)Arg { argument
54 - (void)setRprop:(int)ident {} argument
56 - (id)initWithIdentifier:(int)Arg { argument
73 - (void) setSetterOnly:(int)value; argument
77 - (void) setSetterOnly:(int)value { argument
85 - (void)setFoo:(int)value; argument
Dprovisional-ivar-lookup.m18 - (void)setFoo:(int)value { argument
22 - (void)setFoo1:(int)value { argument
26 - (void)setFoo2:(int)value { argument
30 - (void)setFoo3:(int)value { argument
38 - (void)setPROP:(int)value { argument
Dwarn-superclass-method-mismatch.m4 -(void) method_r: (char)ch : (float*)f1 : (int*) x; // expected-note {{previous declaration is here… argument
10 -(void) method: (int*) x; // expected-note {{previous declaration is here}} argument
13 + method3: (int)x1 : (Base *)x2 : (float)x3; // expected-note {{previous declaration is here}} argument
15 - method5: (int) x : (double) d; // expected-note {{previous declaration is here}} argument
16 - method6: (int) x : (float) d; // expected-note {{previous declaration is here}} argument
27 + method3: (int)x1 : (Sub *)x2 : (float)x3; // expected-warning {{method parameter type 'Sub *' doe… argument
30 - method5: (int) x : (float) d; // expected-warning {{method parameter type 'float' does not match … argument
31 - method6: (int) x : (double) d; // expected-warning {{method parameter type 'double' does not matc… argument
/external/clang/test/SemaTemplate/
Dinstantiation-default-1.cpp16 void test_Def1(Def1<int, const int> *d1, Def1<const int, const int> *d2, in test_Def1()
17 Def1<int&, int&> *d3) { in test_Def1()
31 void test_Def2(Def2<int, int const*> *d2) { in test_Def2()
51 void test_Def3(Def3<int, int&> *d3a, Def3<int&, int&> *d3b) { in test_Def3()
63 void test_Def4(Def4<int, int[]> *d4a) { in test_Def4()
77 void test_Def5(Def5<int, const int[12]> *d5a, Def5<int, const int[13]> *d5b) { in test_Def5()
94 bool test_Def6(Def6<int, float, float> *d6a, in test_Def6()
97 bool(*)(int*, float(*)(double, double))> *d6c) { in test_Def6()
/external/lldb/test/lang/objc/objc-property/
Dmain.m16 - (void) setNonexistantInt: (int) in_int; argument
19 - (void) mySetUnbackedInt: (int) in_int; argument
23 +(BaseClass *) baseClassWithBackedInt: (int) inInt andUnbackedInt: (int) inOtherInt; argument
44 - (int) myGetUnbackedInt argument
58 - (int) nonexistantInt argument
71 - (int) getAccessCount argument
/external/compiler-rt/lib/tsan/dd/
Ddd_interceptors.cc46 INTERCEPTOR(int, pthread_mutex_destroy, pthread_mutex_t *m) { in INTERCEPTOR() argument
52 INTERCEPTOR(int, pthread_mutex_lock, pthread_mutex_t *m) { in INTERCEPTOR() argument
60 INTERCEPTOR(int, pthread_mutex_trylock, pthread_mutex_t *m) { in INTERCEPTOR() argument
68 INTERCEPTOR(int, pthread_mutex_unlock, pthread_mutex_t *m) { in INTERCEPTOR() argument
74 INTERCEPTOR(int, pthread_spin_destroy, pthread_spinlock_t *m) { in INTERCEPTOR() argument
81 INTERCEPTOR(int, pthread_spin_lock, pthread_spinlock_t *m) { in INTERCEPTOR() argument
89 INTERCEPTOR(int, pthread_spin_trylock, pthread_spinlock_t *m) { in INTERCEPTOR() argument
97 INTERCEPTOR(int, pthread_spin_unlock, pthread_spinlock_t *m) { in INTERCEPTOR() argument
103 INTERCEPTOR(int, pthread_rwlock_destroy, pthread_rwlock_t *m) { in INTERCEPTOR() argument
109 INTERCEPTOR(int, pthread_rwlock_rdlock, pthread_rwlock_t *m) { in INTERCEPTOR() argument
[all …]
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
Dinvoke_no_variadics.pass.cpp22 int foo1(int) { return 42; } in foo1() argument
23 int foo2(int, int) { return 42; } in foo2() argument
24 int foo3(int, int, int) { return 42; } in foo3() argument
/external/boringssl/src/util/
Dmake_errors.go164 func (a assignmentsSlice) Less(i, j int) bool {
168 func (a assignmentsSlice) Swap(i, j int) {
172 func outputAssignments(w io.Writer, assignments map[string]int) {
218 …eaderFile(w io.Writer, headerFile io.Reader, lib string, functions, reasons map[string]int) error {
267 func outputStrings(w io.Writer, lib string, ty int, assignments map[string]int) {
286 func assignNewValues(assignments map[string]int, reserved int) {
322 func handleDeclareMacro(line, join, macroName string, m map[string]int) {
342 func addFunctionsAndReasons(functions, reasons map[string]int, filename, prefix string) error {
/external/skia/src/ports/
DSkImageDecoder_empty.cpp51 int* /*width*/, int* /*height*/) { in onBuildTileIndex() argument
81 void SkImageDecoder::setSampleSize(int) {} in setSampleSize() argument
83 bool SkImageDecoder::cropBitmap(SkBitmap*, SkBitmap*, int, int, int, int, int, in cropBitmap() argument
112 bool SkImageEncoder::EncodeStream(SkWStream*, const SkBitmap&, SkImageEncoder::Type, int) { in EncodeStream() argument
120 bool SkImageEncoder::encodeStream(SkWStream*, const SkBitmap&, int) { in encodeStream() argument
124 SkData* SkImageEncoder::encodeData(const SkBitmap&, int) { in encodeData() argument
/external/valgrind/VEX/switchback/
Dtest_simple.c3 static void bar ( void*(*service)(int,int) ) in bar()
8 void entry ( void*(*service)(int,int) ) in entry()
Dtest_hello.c3 static void bar ( void*(*service)(int,int) ) in bar()
15 void entry ( void*(*service)(int,int) ) in entry()
/external/compiler-rt/lib/asan/
Dasan_malloc_win.cc47 void _free_dbg(void *ptr, int) { in _free_dbg() argument
63 void *_malloc_dbg(size_t size, int, const char *, int) { in _malloc_dbg() argument
74 void *_calloc_dbg(size_t nmemb, size_t size, int, const char *, int) { in _calloc_dbg() argument
90 void *_realloc_dbg(void *ptr, size_t size, int) { in _realloc_dbg() argument
127 int _CrtDbgReport(int, const char*, int, in _CrtDbgReport() argument
132 int _CrtDbgReportW(int reportType, const wchar_t*, int, in _CrtDbgReportW() argument
137 int _CrtSetReportMode(int, int) { in _CrtSetReportMode() argument
/external/valgrind/helgrind/
Dhg_intercepts.c298 PTH_FUNC(int, pthreadZucreateZAZa, // pthread_create@* in PTH_FUNC() argument
304 PTH_FUNC(int, pthreadZucreate, // pthread_create in PTH_FUNC() argument
309 PTH_FUNC(int, pthreadZucreateZuZa, // pthread_create_* in PTH_FUNC() argument
352 PTH_FUNC(int, pthreadZujoin, // pthread_join in PTH_FUNC() argument
357 PTH_FUNC(int, pthreadZujoinZa, // pthread_join* in PTH_FUNC() argument
495 PTH_FUNC(int, pthreadZumutexZuinit, // pthread_mutex_init in PTH_FUNC() argument
534 PTH_FUNC(int, pthreadZumutexZudestroy, // pthread_mutex_destroy in PTH_FUNC() argument
572 PTH_FUNC(int, pthreadZumutexZulock, // pthread_mutex_lock in PTH_FUNC() argument
616 PTH_FUNC(int, pthreadZumutexZutrylock, // pthread_mutex_trylock in PTH_FUNC() argument
656 PTH_FUNC(int, pthreadZumutexZutimedlock, // pthread_mutex_timedlock in PTH_FUNC() argument
[all …]

12345678910>>...31