OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:distinct
(Results
1 - 25
of
828
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/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 *')}}
16
if (ip == cp) {} // expected-warning {{comparison of
distinct
pointer types ('int *' and 'char *')}}
/external/llvm/test/FileCheck/
two-checks-for-same-match.txt
1
// Check that two
distinct
CHECK lines won't match the same string
/external/clang/test/Modules/
linkage-merge.m
14
static int f1(float); // okay: considered
distinct
15
static int f2(float); // okay: considered
distinct
16
extern int f3(float); // okay: considered
distinct
/external/bison/m4/
double-slash-root.m4
10
AC_CACHE_CHECK([whether // is
distinct
from /], [gl_cv_double_slash_root],
14
# that have a
distinct
// are Apollo DomainOS (too old to port to),
16
# special semantics and is
distinct
from /, please report it to
36
[Define to 1 if // is a file system root
distinct
from /.])
/external/clang/test/CodeGen/
2002-02-13-TypeVarNameCollision.c
4
* names should be in
distinct
namespaces
/external/clang/test/SemaCXX/
composite-pointer-type.cpp
14
if (d1 >= d2) // expected-error{{comparison of
distinct
}}
25
if (d1 == d2) // expected-error{{comparison of
distinct
}}
34
return a < b; // expected-error{{
distinct
}}
56
if (p == q) // expected-warning{{comparison of
distinct
pointer types ('void **' and 'const void **') uses non-standard composite pointer type 'const void *const *'}}
no-warn-composite-pointer-type.cpp
1
// RUN: %clang_cc1 -fsyntax-only -Wno-compare-
distinct
-pointer-types -verify %s
/ndk/sources/host-tools/sed-4.2.1/m4/
double-slash-root.m4
10
AC_CACHE_CHECK([whether // is
distinct
from /], [gl_cv_double_slash_root],
14
# that have a
distinct
// are Apollo DomainOS (too old to port to),
16
# special semantics and is
distinct
from /, please report it to
36
[Define to 1 if // is a file system root
distinct
from /.])
/external/clang/test/SemaObjC/
comptypes-3.m
45
if (obj_a == obj_b) foo (); // expected-warning {{comparison of
distinct
pointer types ('id<MyProtocolA>' and 'id<MyProtocolB>')}}
46
if (obj_b == obj_a) foo (); // expected-warning {{comparison of
distinct
pointer types ('id<MyProtocolB>' and 'id<MyProtocolA>')}}
57
if (obj_b == obj_ac) foo (); // expected-warning {{comparison of
distinct
pointer types ('id<MyProtocolB>' and 'id<MyProtocolAC>')}}
58
if (obj_ac == obj_b) foo (); // expected-warning {{comparison of
distinct
pointer types ('id<MyProtocolAC>' and 'id<MyProtocolB>')}}
60
if (obj_ab == obj_ac) foo (); // expected-warning {{comparison of
distinct
pointer types ('id<MyProtocolAB>' and 'id<MyProtocolAC>')}}
61
if (obj_ac == obj_ab) foo (); // expected-warning {{comparison of
distinct
pointer types ('id<MyProtocolAC>' and 'id<MyProtocolAB>')}}
comptypes-7.m
51
if (obj == j) foo() ; // expected-warning {{comparison of
distinct
pointer types ('id' and 'int *')}}
52
if (j == obj) foo() ; // expected-warning {{comparison of
distinct
pointer types ('int *' and 'id')}}
56
if (obj_c == j) foo() ; // expected-warning {{comparison of
distinct
pointer types ('MyClass *' and 'int *')}}
57
if (j == obj_c) foo() ; // expected-warning {{comparison of
distinct
pointer types ('int *' and 'MyClass *')}}
61
if (obj_p == j) foo() ; // expected-warning {{comparison of
distinct
pointer types ('id<MyProtocol>' and 'int *')}}
62
if (j == obj_p) foo() ; // expected-warning {{comparison of
distinct
pointer types ('int *' and 'id<MyProtocol>')}}
66
if (obj_C == j) foo() ; // expected-warning {{comparison of
distinct
pointer types ('Class' and 'int *')}}
67
if (j == obj_C) foo() ; // expected-warning {{comparison of
distinct
pointer types ('int *' and 'Class')}}
compare-qualified-class.m
28
classA == classD; // expected-warning {{comparison of
distinct
pointer types ('Class<SomeProtocol> *' and 'Class<SomeProtocol1> *')}}
/dalvik/tests/068-classloader/
info.txt
3
classes are
distinct
and must be treated as such. This test exercises
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
p8.cpp
65
struct
Distinct
{};
67
void over(
Distinct
);
72
Distinct
d;
100
// specializations) are
distinct
in an inline namespace vs. not in an
/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/
p4.cpp
4
// All of these function templates are
distinct
.
/external/regex-re2/
AUTHORS
2
# This file is
distinct
from the CONTRIBUTORS files.
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteQueryBuilder.java
15
public static String buildQueryString(boolean
distinct
, String tables,
21
if (
distinct
) {
22
sb.append("
DISTINCT
");
/dalvik/vm/jdwp/
README.txt
8
An attempt has been made to keep the implementation
distinct
from the VM,
/external/llvm/test/Transforms/InstSimplify/
past-the-end.ll
9
; Comparing base addresses of two
distinct
globals. Never equal.
18
; Comparing past-the-end addresses of two
distinct
globals. Never equal.
41
; Comparing base addresses of two
distinct
allocas. Never equal.
52
; Comparing past-the-end addresses of two
distinct
allocas. Never equal.
/ndk/tests/device/multi-static-instances/jni/
main.cpp
19
fprintf(stderr, "ERROR: instance() returned two
distinct
addresses: %p %p\n", first, second);
/external/jmonkeyengine/engine/src/android/jme3test/android/
AndroidManifest.xml
12
<!-- Tell the system that you need
distinct
touches (for the zoom gesture). -->
13
<uses-feature android:name="android.hardware.touchscreen.multitouch.
distinct
" android:required="true" />
/external/guava/guava/src/com/google/common/collect/
HashMultiset.java
47
* number of
distinct
elements.
49
* @param distinctElements the expected number of
distinct
elements
80
* @serialData the number of
distinct
elements, the first element, its count,
Serialization.java
40
* #writeMap(Map, ObjectOutputStream)}, the number of
distinct
elements in a
42
* #writeMultiset(Multiset, ObjectOutputStream)}, or the number of
distinct
101
* <p>The serialized output consists of the number of
distinct
elements, the
128
* of
distinct
elements is determined by a prior call to {@link #readCount}.
147
* <p>The serialized output consists of the number of
distinct
keys, and then
148
* for each
distinct
key: the key, the number of values for that key, and the
177
* of
distinct
keys is determined by a prior call to {@link #readCount}.
/external/compiler-rt/lib/asan/lit_tests/
log_path_fork_test.cc.disabled
16
// There are two processes at this point, thus there should be two
distinct
/external/oprofile/daemon/liblegacy/
opd_24_stats.h
31
OPD_SAMPLES, /**< nr
distinct
samples */
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
HashMultiset.java
43
* number of
distinct
elements.
45
* @param distinctElements the expected number of
distinct
elements
Completed in 1701 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>