OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:between
(Results
1 - 25
of
10120
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/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}}
vector-cast.c
13
v2 = (t2)v1; // -expected-error {{invalid conversion
between
vector type \
15
v1 = (t1)v2; // -expected-error {{invalid conversion
between
vector type \
19
v1 = (t1)(char *)10; // -expected-error {{invalid conversion
between
vector \
22
v1 = (t1)(short)10; // -expected-error {{invalid conversion
between
vector \
26
short r2 = (short)v1; // -expected-error {{invalid conversion
between
vector \
28
char *r3 = (char *)v1; // -expected-error {{invalid conversion
between
vector\
ext_vector_casts.c
27
i = (int)ivec4; // expected-error {{invalid conversion
between
vector type 'int4' and integer type 'int' of different size}}
30
ivec4 = (int4)ptr; // expected-error {{invalid conversion
between
vector type 'int4' and scalar type 'int *'}}
32
vec4 = (float4)vec2; // expected-error {{invalid conversion
between
ext-vector type 'float4' and 'float2'}}
34
ish8 += 5; // expected-error {{can't convert
between
vector values of different size ('short8' and 'int')}}
40
ivec4 += vec4; // expected-error {{can't convert
between
vector values of different size ('int4' and 'float4')}}
44
ivec4 += ptr; // expected-error {{can't convert
between
vector values of different size ('int4' and 'int *')}}
incompatible-sign.c
4
int b(unsigned* y) { return a(y); } // expected-warning {{passing 'unsigned int *' to parameter of type 'int *' converts
between
pointers to integer types with different sign}}
attr-regparm.c
5
__attribute((regparm(-1))) int x2(void); // expected-error{{'regparm' parameter must be
between
0 and 3 inclusive}}
6
__attribute((regparm(5))) int x3(void); // expected-error{{'regparm' parameter must be
between
0 and 3 inclusive}}
/external/clang/test/CXX/temp/temp.param/
p15.cpp
6
X<X<int>> *x2; // expected-error{{a space is required
between
consecutive right angle brackets (use '> >')}}
8
X<X<X<X<int>> // expected-error{{a space is required
between
consecutive right angle brackets (use '> >')}}
9
>> *x3; // expected-error{{a space is required
between
consecutive right angle brackets (use '> >')}}
/development/sdk/prebuilt/v7/gridlayout/res/values/
dimens.xml
4
<!-- The default gap
between
components in a layout. -->
/ndk/tests/device/gnustl-shared-1/
README
2
between
several binaries. I.e. one exception is thrown in libfoo.so and caught
/external/clang/test/SemaCXX/
reinterpret-fn-obj-pedantic.cpp
7
void *vp = reinterpret_cast<void*>(fp); // expected-warning {{reinterpret_cast
between
pointer-to-function and pointer-to-object is an extension}}
8
(void)reinterpret_cast<fnptr>(vp); // expected-warning {{reinterpret_cast
between
pointer-to-function and pointer-to-object is an extension}}
/external/clang/test/SemaOpenCL/
vector_conv_invalid.cl
11
int4 e = (int4)u; // expected-error{{invalid conversion
between
ext-vector type 'int4' and 'uint4'}}
13
uint3 u4 = (uint3)u; // expected-error{{invalid conversion
between
ext-vector type 'uint3' and 'uint4'}}
/external/jsr305/ri/src/main/java/javax/annotation/meta/
When.java
4
* Used to describe the relationship
between
a qualifier T and the set of values
16
/** nothing definitive is known about the relation
between
S and T */
/external/webkit/LayoutTests/fast/dom/Node/
normalize-expected.txt
6
test5 (empty text node
between
elements): PASSED
9
test8 (empty text nodes
between
non-empty nodes): PASSED
/dalvik/dx/tests/112-dex-return-jsr-result/
info.txt
5
goto instruction to be interposed
between
an invoke instruction and
/external/clang/test/CodeGen/
2008-08-07-AlignPadding2.c
3
The FE must not generate padding here
between
array elements. PR 2533. */
/external/kernel-headers/original/linux/nfsd/
interface.h
4
* defines interface
between
nfsd and other bits of
/external/llvm/test/TableGen/
TemplateArgRename.td
4
// Make sure there is no collision
between
XX and XX.
/external/markdown/tests/extensions-x-toc/
invalid.txt
8
clue the author in that s/he needs to add a blank line
between
the TOC and
/external/webkit/Source/WebCore/manual-tests/
drag-move-in-search-field.html
2
between
"lorem" and "ipsum". There should be no assertion failure in a
/frameworks/base/docs/html/design/patterns/
swipe-views.jd
9
<h2 id="detail-views">Swiping
Between
Detail Views</h2>
21
jump back and forth
between
the list and the detail view, aka "pogo-sticking".</p>
27
Navigating
between
consecutive Email messages using the swipe gesture.
30
<h2 id="
between
-tabs">Swiping
Between
Tabs</h2>
43
People app with swipe gesture navigation
between
top-level screens.
50
<p>If your app uses action bar tabs, use swipe to navigate
between
the different views.</p>
57
<p>Use swipe to quickly navigate
between
detail views or tabs.</p>
60
<p>Transition
between
the views as the user performs the swipe gesture. Do not wait for the
61
gesture to complete and then transition
between
views.</p
[
all
...]
/external/chromium/chrome/browser/autofill/
autofill_type_unittest.cc
53
// In-
between
value. Missing from enum but within range. Error condition.
54
AutofillType
between
(static_cast<AutofillFieldType>(16));
55
EXPECT_EQ(UNKNOWN_TYPE,
between
.field_type());
56
EXPECT_EQ(AutofillType::NO_GROUP,
between
.group());
57
EXPECT_EQ(AutofillType::NO_SUBGROUP,
between
.subgroup());
/external/clang/test/ARCMT/
cxx-checking.mm
4
struct HasObjectMember0 { // expected-warning{{'HasObjectMember0' cannot be shared
between
ARC and non-ARC code; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}}
8
struct HasObjectMember1 { // expected-warning{{'HasObjectMember1' cannot be shared
between
ARC and non-ARC code; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}}
12
struct HasObjectMember2 { // expected-warning{{'HasObjectMember2' cannot be shared
between
ARC and non-ARC code; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}}
29
struct HasBlockPointerMember0 { // expected-warning{{'HasBlockPointerMember0' cannot be shared
between
ARC and non-ARC code; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}}
33
struct HasBlockPointerMember1 { // expected-warning{{'HasBlockPointerMember1' cannot be shared
between
ARC and non-ARC code; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}}
41
struct HasObjectMemberAndNonPOD0 { // expected-warning{{'HasObjectMemberAndNonPOD0' cannot be shared
between
ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}} \
42
// expected-warning{{'HasObjectMemberAndNonPOD0' cannot be shared
between
ARC and non-ARC code; add a non-trivial destructor to make it ABI-compatible}}
47
struct HasObjectMemberAndNonPOD1 { // expected-warning{{'HasObjectMemberAndNonPOD1' cannot be shared
between
ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}} \
48
// expected-warning{{'HasObjectMemberAndNonPOD1' cannot be shared
between
ARC and non-ARC code; add a non-trivial destructor to make it ABI-compatible}}
53
struct HasObjectMemberAndNonPOD2 { // expected-warning{{'HasObjectMemberAndNonPOD2' cannot be shared
between
ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}}
[
all
...]
/external/clang/test/SemaObjCXX/
arc-non-pod.mm
4
struct HasObjectMember0 { // expected-warning{{'HasObjectMember0' cannot be shared
between
ARC and non-ARC code; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}}
8
struct HasObjectMember1 { // expected-warning{{'HasObjectMember1' cannot be shared
between
ARC and non-ARC code; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}}
12
struct HasObjectMember2 { // expected-warning{{'HasObjectMember2' cannot be shared
between
ARC and non-ARC code; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}}
29
struct HasBlockPointerMember0 { // expected-warning{{'HasBlockPointerMember0' cannot be shared
between
ARC and non-ARC code; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}}
33
struct HasBlockPointerMember1 { // expected-warning{{'HasBlockPointerMember1' cannot be shared
between
ARC and non-ARC code; add a copy constructor, a copy assignment operator, and a destructor to make it ABI-compatible}}
41
struct HasObjectMemberAndNonPOD0 { // expected-warning{{'HasObjectMemberAndNonPOD0' cannot be shared
between
ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}} \
42
// expected-warning{{'HasObjectMemberAndNonPOD0' cannot be shared
between
ARC and non-ARC code; add a non-trivial destructor to make it ABI-compatible}}
47
struct HasObjectMemberAndNonPOD1 { // expected-warning{{'HasObjectMemberAndNonPOD1' cannot be shared
between
ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}} \
48
// expected-warning{{'HasObjectMemberAndNonPOD1' cannot be shared
between
ARC and non-ARC code; add a non-trivial destructor to make it ABI-compatible}}
53
struct HasObjectMemberAndNonPOD2 { // expected-warning{{'HasObjectMemberAndNonPOD2' cannot be shared
between
ARC and non-ARC code; add a non-trivial copy assignment operator to make it ABI-compatible}}
[
all
...]
/external/srec/srec/ca/
catrans.c
76
hTransform->imelda_acc.
between
= create_accumulate_matrix(hTransform->dim);
82
hTransform->mllr_acc.
between
= create_accumulate_matrix(hTransform->dim + 1);
117
delete_accumulate_matrix(hTransform->imelda_acc.
between
, hTransform->dim);
119
delete_accumulate_matrix(hTransform->mllr_acc.
between
, hTransform->dim + 1);
142
ASSERT(hTransform->imelda_acc.
between
);
146
ASSERT(hTransform->mllr_acc.
between
);
152
hTransform->mllr_acc.
between
[ii][jj] = 0;
163
hTransform->imelda_acc.
between
[ii][jj] = 0;
194
ASSERT(hPattern->data.mllr_acc.
between
);
195
ASSERT(hTransform->mllr_acc.
between
);
[
all
...]
/external/clang/test/Parser/
pointer_promotion.c
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 *')}}
/external/clang/test/SemaObjC/
comptypes-7.m
49
if (obj == i) foo() ; // expected-warning {{comparison
between
pointer and integer ('id' and 'int')}}
50
if (i == obj) foo() ; // expected-warning {{comparison
between
pointer and integer ('int' and 'id')}}
54
if (obj_c == i) foo() ; // expected-warning {{comparison
between
pointer and integer ('MyClass *' and 'int')}}
55
if (i == obj_c) foo() ; // expected-warning {{comparison
between
pointer and integer ('int' and 'MyClass *')}}
59
if (obj_p == i) foo() ; // expected-warning {{comparison
between
pointer and integer ('id<MyProtocol>' and 'int')}}
60
if (i == obj_p) foo() ; // expected-warning {{comparison
between
pointer and integer ('int' and 'id<MyProtocol>')}}
64
if (obj_C == i) foo() ; // expected-warning {{comparison
between
pointer and integer ('Class' and 'int')}}
65
if (i == obj_C) foo() ; // expected-warning {{comparison
between
pointer and integer ('int' and 'Class')}}
Completed in 5494 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>