HomeSort by relevance Sort by last modified time
    Searched full:pointer (Results 1 - 25 of 12887) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
alloca.h 7 typedef void *pointer; typedef
9 pointer alloca(unsigned size);
  /external/clang/test/Sema/
function-ptr.c 6 func = p; // expected-warning {{converts between void pointer and function pointer}}
7 p = func; // expected-warning {{converts between void pointer and function pointer}}
9 return p; // expected-warning {{converts between void pointer and function pointer}}
pointer-conversion.c 4 char const ** c2 = &c; // expected-warning {{discards qualifiers in nested pointer types}}
7 dchar *** c3 = &c2; // expected-warning {{discards qualifiers in nested pointer types}}
10 char ** c5 = &c4; // expected-warning {{discards qualifiers in nested pointer types}}
pointer-addition.c 6 b++; // expected-error {{arithmetic on a pointer to an incomplete type}}
7 b += 1; // expected-error {{arithmetic on a pointer to an incomplete type}}
8 c++; // expected-warning {{arithmetic on a pointer to void is a GNU extension}}
9 c += 1; // expected-warning {{arithmetic on a pointer to void is a GNU extension}}
10 c--; // expected-warning {{arithmetic on a pointer to void is a GNU extension}}
11 c -= 1; // expected-warning {{arithmetic on a pointer to void is a GNU extension}}
12 (void) c[1]; // expected-warning {{subscript of a pointer to void is a GNU extension}}
13 b = 1+b; // expected-error {{arithmetic on a pointer to an incomplete type}}
16 d += 1; // expected-warning {{arithmetic on a pointer to the function type 'void (S *, void *)' is a GNU extension}}
17 d++; // expected-warning {{arithmetic on a pointer to the function type 'void (S *, void *)' is a GNU extension}
    [all...]
  /external/valgrind/main/memcheck/tests/
pointer-trace.vgtest 1 prog: pointer-trace
  /external/clang/test/SemaObjC/
comptypes-7.m 27 obj = i; // expected-warning {{incompatible integer to pointer conversion assigning to 'id' from 'int'}}
28 obj = j; // expected-warning {{incompatible pointer types assigning to 'id' from 'int *'}}
30 obj_p = i; // expected-warning {{incompatible integer to pointer conversion assigning to 'id<MyProtocol>' from 'int'}}
31 obj_p = j; // expected-warning {{incompatible pointer types assigning to 'id<MyProtocol>' from 'int *'}}
33 obj_c = i; // expected-warning {{incompatible integer to pointer conversion assigning to 'MyClass *' from 'int'}}
34 obj_c = j; // expected-warning {{incompatible pointer types assigning to 'MyClass *' from 'int *'}}
36 obj_C = i; // expected-warning {{incompatible integer to pointer conversion assigning to 'Class' from 'int'}}
37 obj_C = j; // expected-warning {{incompatible pointer types assigning to 'Class' from 'int *'}}
39 i = obj; // expected-warning {{incompatible pointer to integer conversion assigning to 'int' from 'id'}}
40 i = obj_p; // expected-warning {{incompatible pointer to integer conversion assigning to 'int' from 'id<MyProtocol>'}
    [all...]
attr-malloc.m 4 - (id) test1 __attribute((malloc)); // expected-warning {{functions returning a pointer type}}
5 - (int) test2 __attribute((malloc)); // expected-warning {{functions returning a pointer type}}
13 __attribute((malloc)) id (*f)(); // expected-warning {{functions returning a pointer type}}
14 __attribute((malloc)) bptr (*g)(); // expected-warning {{functions returning a pointer type}}
15 __attribute((malloc)) void *(^h)(); // expected-warning {{functions returning a pointer type}}
arc-non-pod-memaccess.m 24 memcpy(sip, ptr, 17); // expected-warning{{destination for this 'memcpy' call is a pointer to ownership-qualified type}} \
25 // expected-note{{explicitly cast the pointer to silence this warning}}
26 memcpy(wip, ptr, 17); // expected-warning{{destination for this 'memcpy' call is a pointer to ownership-qualified type}} \
27 // expected-note{{explicitly cast the pointer to silence this warning}}
28 memcpy(aip, ptr, 17); // expected-warning{{destination for this 'memcpy' call is a pointer to ownership-qualified type}} \
29 // expected-note{{explicitly cast the pointer to silence this warning}}
32 memcpy(ptr, sip, 17); // expected-warning{{source of this 'memcpy' call is a pointer to ownership-qualified type}} \
33 // expected-note{{explicitly cast the pointer to silence this warning}}
34 memcpy(ptr, wip, 17); // expected-warning{{source of this 'memcpy' call is a pointer to ownership-qualified type}} \
35 // expected-note{{explicitly cast the pointer to silence this warning}
    [all...]
warn-incompatible-builtin-types.m 13 [f foo:f]; // expected-warning {{incompatible pointer types sending 'Foo *' to parameter of type 'Class'}}
14 c = f; // expected-warning {{incompatible pointer types assigning to 'Class' from 'Foo *'}}
24 s1 = i; // expected-warning {{incompatible pointer types assigning to 'SEL' from 'id'}}
25 i = s1; // expected-warning {{incompatible pointer types assigning to 'id' from 'SEL'}}
29 s1 = c; // expected-warning {{incompatible pointer types assigning to 'SEL' from 'Class'}}
31 c = s1; // expected-warning {{incompatible pointer types assigning to 'Class' from 'SEL'}}
35 f = c; // expected-warning {{incompatible pointer types assigning to 'Foo *' from 'Class'}}
37 f = s1; // expected-warning {{incompatible pointer types assigning to 'Foo *' from 'SEL'}}
41 s1 = f; // expected-warning {{incompatible pointer types assigning to 'SEL' from 'Foo *'}}
  /external/clang/test/SemaCXX/
reinterpret-fn-obj-pedantic.cpp 7 void *vp = reinterpret_cast<void*>(fp); // expected-warning {{cast between pointer-to-function and pointer-to-object is an extension}}
8 (void)reinterpret_cast<fnptr>(vp); // expected-warning {{cast between pointer-to-function and pointer-to-object is an extension}}
warn-bad-memaccess.cpp 29 // expected-warning {{destination for this 'memset' call is a pointer to dynamic class}} \
30 // expected-note {{explicitly cast the pointer to silence this warning}}
32 // expected-warning {{destination for this 'memset' call is a pointer to dynamic class}} \
33 // expected-note {{explicitly cast the pointer to silence this warning}}
36 // expected-warning{{destination for this 'memmove' call is a pointer to dynamic class 'struct X1'; vtable pointer will be overwritten}} \
37 // expected-note {{explicitly cast the pointer to silence this warning}}
39 // expected-warning{{source of this 'memmove' call is a pointer to dynamic class 'struct X1'; vtable pointer will be moved}} \
40 // expected-note {{explicitly cast the pointer to silence this warning}
    [all...]
cxx-member-pointer-op.cpp 11 c->*pmfc(); // expected-error {{invalid use of pointer to member type after ->*}}
13 c1.*pmfc(); // expected-error {{invalid use of pointer to member type after .*}}
14 c->*(pmfc()); // expected-error {{invalid use of pointer to member type after ->*}}
15 c1.*((pmfc())); // expected-error {{invalid use of pointer to member type after .*}}
  /frameworks/compile/slang/tests/F_kernel_ptr_ret_val/
stderr.txt.expect 1 kernel_ptr_ret_val.rs:4:1: error: Compute kernel root() cannot return a pointer type: 'int *'
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3interfaces.h 45 /// Pointer to an instantiation of the 'class' #ANTLR3_BASE_RECOGNIZER
49 /// Pointer to an instantiation of 'class' #ANTLR3_RECOGNIZER_SHARED_STATE
54 /// Pointer to an instantiation of 'class' #ANTLR3_BITSET_LIST
59 /// Pointer to an instantiation of 'class' #ANTLR3_BITSET
64 /// Pointer to an instantiation of 'class' #ANTLR3_TOKEN_FACTORY
68 /// Pointer to an instantiation of 'class' #ANTLR3_COMMON_TOKEN
73 /// Pointer to an instantiation of 'class' #ANTLR3_EXCEPTION
78 /// Pointer to an instantiation of 'class' #ANTLR3_HASH_BUCKET
82 /// Pointer to an instantiation of 'class' #ANTLR3_HASH_ENTRY
86 /// Pointer to an instantiation of 'class' #ANTLR3_HASH_ENUM
    [all...]
  /external/clang/test/Parser/
pointer_promotion.c 11 if (ip < cp) {} // expected-warning {{comparison of distinct pointer types ('int *' and 'char *')}}
12 if (cp < fp) {} // expected-warning {{comparison of distinct pointer types ('char *' and 'struct foo *')}}
13 if (fp < bp) {} // expected-warning {{comparison of distinct pointer types ('struct foo *' and 'struct bar *')}}
14 if (ip < 7) {} // expected-warning {{comparison between pointer and integer ('int *' and 'int')}}
15 if (sint < ip) {} // expected-warning {{comparison between pointer and integer ('int' and 'int *')}}
16 if (ip == cp) {} // expected-warning {{comparison of distinct pointer types ('int *' and 'char *')}}
check_cast.c 10 xxx = (struct foo)1; // expected-error {{used type 'struct foo' where arithmetic or pointer type is required}}
11 i = (int)xxx; // expected-error {{operand of type 'struct foo' where arithmetic or pointer type is required}}
  /frameworks/compile/mclinker/unittests/
LinearAllocatorTest.cpp 43 Data* pointer = m_pTestee->allocate(10); local
44 ASSERT_FALSE(0 == pointer);
50 Data* pointer = m_pTestee->allocate(); local
51 ASSERT_FALSE(0 == pointer);
57 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1); local
58 ASSERT_TRUE(0 == pointer);
64 Data* pointer = m_pTestee->allocate(); local
65 m_pTestee->construct(pointer);
66 ASSERT_TRUE(1 == pointer->one);
67 ASSERT_TRUE(2 == pointer->two)
73 Data* pointer = m_pTestee->allocate(); local
84 Data* pointer = m_pTestee->allocate(10); local
93 Data* pointer = m_pTestee->allocate(10); local
105 Data* pointer = m_pTestee->allocate(); local
122 Data* pointer = m_pTestee->allocate(10); local
    [all...]
RTLinearAllocatorTest.cpp 44 Data* pointer = m_pTestee->allocate(10); local
45 ASSERT_FALSE(0 == pointer);
51 Data* pointer = m_pTestee->allocate(); local
52 ASSERT_FALSE(0 == pointer);
58 Data* pointer = m_pTestee->allocate(CHUNK_SIZE+1); local
59 ASSERT_TRUE(0 == pointer);
65 Data* pointer = m_pTestee->allocate(); local
66 m_pTestee->construct(pointer);
67 ASSERT_TRUE(1 == pointer->one);
68 ASSERT_TRUE(2 == pointer->two)
74 Data* pointer = m_pTestee->allocate(); local
85 Data* pointer = m_pTestee->allocate(10); local
94 Data* pointer = m_pTestee->allocate(10); local
106 Data* pointer = m_pTestee->allocate(); local
123 Data* pointer = m_pTestee->allocate(10); local
    [all...]
  /dalvik/vm/compiler/template/armv5te-vfp/
TEMPLATE_RESTORE_STATE.S 6 add r0, r0, rSELF @ pointer to heapArgSpace.coreRegs[0]
7 add r0, #64 @ pointer to heapArgSpace.fpRegs[0]
9 sub r0, #64 @ pointer to heapArgSpace.coreRegs[0]
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t052importM3.g 6 s : 'b' {this.gt052importS3.foo();} ; // gS is import pointer
  /external/webkit/Source/WebKit/gtk/
webkitmarshal.list 10 BOOLEAN:OBJECT,STRING,POINTER
17 OBJECT:STRING,STRING,POINTER
21 VOID:OBJECT,POINTER,POINTER
  /frameworks/compile/libbcc/tests/data/src/
pointers.c 7 printf("Pointer difference: %d %d\n", pb - pa, ((int) pb) - ((int) pa));
9 printf("Pointer addition: %d\n", c);
10 printf("Pointer comparison to zero: %d %d %d\n", pa == 0, pb == 0, pc == 0);
11 printf("Pointer comparison: %d %d %d %d %d\n", pa < pb, pa == pb, pa > pb, ! pb, ! pc);
  /frameworks/compile/slang/tests/F_kernel_ptr_param/
stderr.txt.expect 1 kernel_ptr_param.rs:4:40: error: Compute kernel root() cannot have parameter 'i' of pointer type: 'int *'
  /external/clang/test/Analysis/diagnostics/
deref-track-symbolic-region.cpp 14 r.y = 5; // expected-warning {{Access to field 'y' results in a dereference of a null pointer (loaded from variable 'r')}}
15 // expected-note@-1{{Access to field 'y' results in a dereference of a null pointer (loaded from variable 'r')}}
26 use(ref); // expected-warning{{Forming reference to null pointer}}
27 // expected-note@-1{{Forming reference to null pointer}}
31 int *p = 0; // expected-note {{'p' initialized to a null pointer value}}
33 int *p3 = p2; // expected-note {{'p3' initialized to a null pointer value}}
34 return *p3; // expected-warning {{Dereference of null pointer}}
35 // expected-note@-1{{Dereference of null pointer}}
39 int *p = 0; // expected-note {{'p' initialized to a null pointer value}}
41 return *p2; //expected-warning {{Dereference of null pointer}}
    [all...]
  /external/clang/test/Driver/
no-objc-arr.m 7 void *pointer = string; // No error must be issued
8 return pointer;

Completed in 1171 milliseconds

1 2 3 4 5 6 7 8 91011>>