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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p9-0x.cpp 7 auto j() -> enum { e3 }; // expected-error{{unnamed enumeration must be a definition}} expected-error {{expected a type}} enumerator in enum:__anon19045
p8.cpp 7 enum { e3 } A::g() { } // expected-error{{can not be defined in the result type}} \ enumerator in enum:__anon19044
  /external/clang/test/CodeGen/
2007-04-11-PR1321.c 7 unsigned int e3 : 17; member in struct:X
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListAddAtIndexTester.java 65 getList().add(0, samples.e3);
66 expectAdded(0, samples.e3);
72 getList().add(0, samples.e3);
77 expectMissing(samples.e3);
83 getList().add(getNumElements() / 2, samples.e3);
84 expectAdded(getNumElements() / 2, samples.e3);
90 getList().add(getNumElements(), samples.e3);
91 expectAdded(getNumElements(), samples.e3);
117 getList().add(-1, samples.e3);
122 expectMissing(samples.e3);
    [all...]
SetAddAllTester.java 41 getSet().addAll(MinimalCollection.of(samples.e3, samples.e0)));
42 expectAdded(samples.e3);
48 = MinimalCollection.of(samples.e3, samples.e4, samples.e3, samples.e4);
51 expectAdded(samples.e3, samples.e4);
ListSetTester.java 42 doTestSet(samples.e3);
61 doTestSet(samples.e3);
78 getList().set(-1, samples.e3);
89 getList().set(index, samples.e3);
100 getList().set(aValidIndex(), samples.e3);
111 getList().set(0, samples.e3);
MapEqualsTester.java 50 Entry<K, V> e3 = getSubjectGenerator().samples().e3; local
51 other.put(e3.getKey(), e3.getValue());
62 entries.add(entry(null, samples.e3.getValue()));
73 entries.add(entry(null, samples.e3.getValue()));
86 entries.add(entry(samples.e3.getKey(), null));
97 entries.add(entry(samples.e3.getKey(), null));
QueueOfferTester.java 38 getQueue().offer(samples.e3));
39 expectAdded(samples.e3);
CollectionAddTester.java 45 collection.add(samples.e3));
46 expectAdded(samples.e3);
52 collection.add(samples.e3);
57 expectMissing(samples.e3);
  /external/chromium_org/sandbox/linux/seccomp-bpf/
errorcode_unittest.cc 25 ErrorCode e3 = sandbox.Trap(NULL, NULL); local
26 SANDBOX_ASSERT((e3.err() & SECCOMP_RET_ACTION) == SECCOMP_RET_TRAP);
48 ErrorCode e3(EPERM);
49 SANDBOX_ASSERT(!e1.Equals(e3));
56 SANDBOX_ASSERT(!e3.Equals(e4));
68 ErrorCode e3(EPERM);
69 SANDBOX_ASSERT(!e1.LessThan(e3));
70 SANDBOX_ASSERT( e3.LessThan(e1));
77 SANDBOX_ASSERT(e3.LessThan(e4));
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SampleElements.java 29 // TODO: rename e3, e4 => missing1, missing2
33 public final E e3; field in class:SampleElements
36 public SampleElements(E e0, E e1, E e2, E e3, E e4) {
40 this.e3 = e3;
71 Helpers.mapEntry(keys.e3, values.e3),
  /external/guava/guava/src/com/google/common/collect/
ImmutableSortedMultisetFauxverideShim.java 86 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3) {
100 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4) {
115 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4, E e5) {
133 E e3,
ImmutableSortedSetFauxverideShim.java 87 @Deprecated public static <E> ImmutableSortedSet<E> of(E e1, E e2, E e3) {
102 E e1, E e2, E e3, E e4) {
117 E e1, E e2, E e3, E e4, E e5) {
132 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) {
ImmutableList.java 97 public static <E> ImmutableList<E> of(E e1, E e2, E e3) {
98 return construct(e1, e2, e3);
106 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) {
107 return construct(e1, e2, e3, e4);
115 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) {
116 return construct(e1, e2, e3, e4, e5);
124 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) {
125 return construct(e1, e2, e3, e4, e5, e6);
134 E e1, E e2, E e3, E e4, E e5, E e6, E e7) {
135 return construct(e1, e2, e3, e4, e5, e6, e7)
    [all...]
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 28 enum {e3}; // expected-note{{unnamed type used in template argument was declared here}} enumerator in enum:N0::__anon19078
40 X<__typeof__(e3)*> x; // expected-warning{{template argument uses unnamed type}}
  /external/clang/test/Sema/
no-documentation-warn-tagdecl-specifier.c 60 /** @return e3 Test 3 - expected warning here */
61 enum e3;
62 enum e3* g3(void);
  /external/clang/test/CodeGenCXX/
pr12251.cpp 30 enum e3 { e3_a = 16 }; enum
31 e3 g3(e3 *x) {
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_FwdTransformResidual4x4.c 47 int e3 = d1 - d2; local
49 int f1 = (e1 << 1) + e3;
51 int f3 = e1 - (e3 << 1);
armVCM4P10_TransformResidual4x4.c 48 int e3 = d1 + (d3>>1); local
49 int f0 = e0 + e3;
52 int f3 = e0 - e3;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/tuple/
rem.hpp 44 # define BOOST_PP_TUPLE_REM_4(e0, e1, e2, e3) e0, e1, e2, e3
45 # define BOOST_PP_TUPLE_REM_5(e0, e1, e2, e3, e4) e0, e1, e2, e3, e4
46 # define BOOST_PP_TUPLE_REM_6(e0, e1, e2, e3, e4, e5) e0, e1, e2, e3, e4, e5
47 # define BOOST_PP_TUPLE_REM_7(e0, e1, e2, e3, e4, e5, e6) e0, e1, e2, e3, e4, e5, e6
48 # define BOOST_PP_TUPLE_REM_8(e0, e1, e2, e3, e4, e5, e6, e7) e0, e1, e2, e3, e4, e5, e6, e
    [all...]
to_list.hpp 54 # define BOOST_PP_TUPLE_TO_LIST_4(e0, e1, e2, e3) (e0, (e1, (e2, (e3, BOOST_PP_NIL))))
55 # define BOOST_PP_TUPLE_TO_LIST_5(e0, e1, e2, e3, e4) (e0, (e1, (e2, (e3, (e4, BOOST_PP_NIL)))))
56 # define BOOST_PP_TUPLE_TO_LIST_6(e0, e1, e2, e3, e4, e5) (e0, (e1, (e2, (e3, (e4, (e5, BOOST_PP_NIL))))))
57 # define BOOST_PP_TUPLE_TO_LIST_7(e0, e1, e2, e3, e4, e5, e6) (e0, (e1, (e2, (e3, (e4, (e5, (e6, BOOST_PP_NIL)))))))
58 # define BOOST_PP_TUPLE_TO_LIST_8(e0, e1, e2, e3, e4, e5, e6, e7) (e0, (e1, (e2, (e3, (e4, (e5, (e6, (e7, BOOST_PP_NIL)))))))
    [all...]
eat.hpp 44 # define BOOST_PP_TUPLE_EAT_4(e0, e1, e2, e3)
45 # define BOOST_PP_TUPLE_EAT_5(e0, e1, e2, e3, e4)
46 # define BOOST_PP_TUPLE_EAT_6(e0, e1, e2, e3, e4, e5)
47 # define BOOST_PP_TUPLE_EAT_7(e0, e1, e2, e3, e4, e5, e6)
48 # define BOOST_PP_TUPLE_EAT_8(e0, e1, e2, e3, e4, e5, e6, e7)
49 # define BOOST_PP_TUPLE_EAT_9(e0, e1, e2, e3, e4, e5, e6, e7, e8)
50 # define BOOST_PP_TUPLE_EAT_10(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9)
51 # define BOOST_PP_TUPLE_EAT_11(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10)
52 # define BOOST_PP_TUPLE_EAT_12(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11)
53 # define BOOST_PP_TUPLE_EAT_13(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11, e12
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/variadic/
elem.hpp 31 # define BOOST_PP_VARIADIC_ELEM_3(e0, e1, e2, e3, ...) e3
32 # define BOOST_PP_VARIADIC_ELEM_4(e0, e1, e2, e3, e4, ...) e4
33 # define BOOST_PP_VARIADIC_ELEM_5(e0, e1, e2, e3, e4, e5, ...) e5
34 # define BOOST_PP_VARIADIC_ELEM_6(e0, e1, e2, e3, e4, e5, e6, ...) e6
35 # define BOOST_PP_VARIADIC_ELEM_7(e0, e1, e2, e3, e4, e5, e6, e7, ...) e7
36 # define BOOST_PP_VARIADIC_ELEM_8(e0, e1, e2, e3, e4, e5, e6, e7, e8, ...) e8
37 # define BOOST_PP_VARIADIC_ELEM_9(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, ...) e9
38 # define BOOST_PP_VARIADIC_ELEM_10(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, ...) e10
39 # define BOOST_PP_VARIADIC_ELEM_11(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11, ...) e1
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p2.cpp 81 struct E3 {
82 E3() = default;
83 E3(const E3&) = default;
84 E3(E3&&) = default;
85 E3 &operator=(const E3&) = default;
86 E3 &operator=(E3&&) = default
89 E3 e3; variable
90 static_assert(noexcept(E3(), E3(E3()), E3(e3), e3 = E3(), e3 = e3), ""); variable
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableList.java 69 public static <E> ImmutableList<E> of(E e1, E e2, E e3) {
71 ImmutableList.<E>nullCheckedList(e1, e2, e3));
74 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) {
76 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4));
79 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) {
81 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5));
84 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) {
86 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5, e6));
90 E e1, E e2, E e3, E e4, E e5, E e6, E e7) {
92 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5, e6, e7))
    [all...]

Completed in 1865 milliseconds

1 2 3 4 5 6 7 8 91011>>