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

1 2 34 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
ImmutableMultiset.java 91 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3) {
92 return copyOfInternal(e1, e2, e3);
102 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3, E e4) {
103 return copyOfInternal(e1, e2, e3, e4);
113 public static <E> ImmutableMultiset<E> of(E e1, E e2, E e3, E e4, E e5) {
114 return copyOfInternal(e1, e2, e3, e4, e5);
125 E e1, E e2, E e3, E e4, E e5, E e6, E... others) {
128 Collections.addAll(all, e1, e2, e3, e4, e5, e6);
ImmutableSet.java 109 public static <E> ImmutableSet<E> of(E e1, E e2, E e3) {
110 return construct(e1, e2, e3);
120 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) {
121 return construct(e1, e2, e3, e4);
131 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) {
132 return construct(e1, e2, e3, e4, e5);
143 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6,
149 elements[2] = e3;
ImmutableSortedMultiset.java 118 public static <E extends Comparable<? super E>> ImmutableSortedMultiset<E> of(E e1, E e2, E e3) {
119 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3));
130 E e1, E e2, E e3, E e4) {
131 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4));
142 E e1, E e2, E e3, E e4, E e5) {
143 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4, e5));
156 E e3,
163 Collections.addAll(all, e1, e2, e3, e4, e5, e6);
ImmutableSortedSet.java 150 E e1, E e2, E e3) {
151 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3));
163 E e1, E e2, E e3, E e4) {
164 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4));
176 E e1, E e2, E e3, E e4, E e5) {
177 return copyOf(Ordering.natural(), Arrays.asList(e1, e2, e3, e4, e5));
190 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) {
193 Collections.addAll(all, e1, e2, e3, e4, e5, e6);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedSet.java 89 E e1, E e2, E e3) {
90 return ofInternal(Ordering.natural(), e1, e2, e3);
95 E e1, E e2, E e3, E e4) {
96 return ofInternal(Ordering.natural(), e1, e2, e3, e4);
101 E e1, E e2, E e3, E e4, E e5) {
102 return ofInternal(Ordering.natural(), e1, e2, e3, e4, e5);
107 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) {
110 Collections.addAll(all, e1, e2, e3, e4, e5, e6);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionContainsAllTester.java 67 collection.containsAll(MinimalCollection.of(samples.e0, samples.e3)));
72 collection.containsAll(MinimalCollection.of(samples.e3)));
CollectionToArrayTester.java 123 array[getNumElements()] = samples.e3;
124 array[getNumElements() + 1] = samples.e3;
144 array[getNumElements()] = samples.e3;
145 array[getNumElements() + 1] = samples.e3;
CollectionRetainAllTester.java 83 List<E> disjointList = Arrays.asList(samples.e3, samples.e4);
88 samples.e0, samples.e1, samples.e2, samples.e3, samples.e4),
95 MinimalCollection.of(samples.e0, samples.e0, samples.e3, samples.e3),
98 = new Target(MinimalCollection.of(samples.e2, samples.e3),
  /external/javassist/src/main/javassist/compiler/ast/
ASTList.java 38 public static ASTList make(ASTree e1, ASTree e2, ASTree e3) {
39 return new ASTList(e1, new ASTList(e2, new ASTList(e3)));
  /external/chromium_org/third_party/icu/source/test/perf/perldriver/
Format.pm 95 my @MULT = (1 , 1e3, 1e6, 1e9);
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
p5.cpp 15 enum alignas(4) E3 { e3 = 0 }; // ok
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
p3.cpp 51 void e3(union B<A>::Member);
  /external/clang/test/SemaCXX/
enum-scoped.cpp 22 enum E3 : char {
26 E3 v4 = Val2;
29 static_assert(sizeof(E3) == 1, "bad size");
42 e3 = 2147483648 // expected-error{{enumerator value evaluates to 2147483648, which cannot be narrowed to type 'int'}} member in class:E1::E2::E4
52 e3 // expected-error{{2 is not representable in the underlying}}
57 e3 // expected-error{{2 is not representable in the underlying}}
64 e3 // expected-error{{2 is not representable in the underlying}}
warn-sign-conversion.cpp 77 int e3 = 1 ? E : B; // expected-warning {{operand of ? changes signedness: 'test2::Named5' to 'int'}} local
  /external/icu4c/test/perf/perldriver/
Format.pm 95 my @MULT = (1 , 1e3, 1e6, 1e9);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/variadic/
size.hpp 27 # define BOOST_PP_VARIADIC_SIZE_I(e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11, e12, e13, e14, e15, e16, e17, e18, e19, e20, e21, e22, e23, e24, e25, e26, e27, e28, e29, e30, e31, e32, e33, e34, e35, e36, e37, e38, e39, e40, e41, e42, e43, e44, e45, e46, e47, e48, e49, e50, e51, e52, e53, e54, e55, e56, e57, e58, e59, e60, e61, e62, e63, size, ...) size
  /external/chromium_org/ui/gfx/
matrix3_f.cc 217 Vector3dF e3 = CrossProduct(matrix_b.get_column(2),
220 // e1, e2 and e3 should point in the same direction.
224 if (DotProduct(e1, e3) < 0)
225 e3 = -e3;
227 Vector3dF eigvec = e1 + e2 + e3;
  /external/chromium_org/chrome/browser/extensions/api/identity/
account_tracker_unittest.cc 114 const TrackingEvent& e3);
117 const TrackingEvent& e3,
171 const TrackingEvent& e3) {
175 events.push_back(e3);
182 const TrackingEvent& e3,
187 events.push_back(e3);
  /external/ceres-solver/internal/ceres/
c_api_test.cc 189 ScopedSetValue<double> outlier1y(&data[13], 1.0e3);
191 ScopedSetValue<double> outlier2y(&data[15], 30e3);
  /hardware/libhardware/tests/camera2/
camera2_utils.h 132 Notification(int32_t type, int32_t e1, int32_t e2, int32_t e3):
136 ext3(e3)
  /external/chromium_org/third_party/libjingle/source/talk/base/
timing.cc 122 Sleep(DWORD(period * 1.0e3));
  /external/clang/test/Analysis/
outofbound.c 96 1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7,
  /external/clang/test/CodeGenCXX/
mangle-ms-return-qualifiers.cpp 132 Enum* e3() { return 0; } function
133 // CHECK: "\01?e3@@YAPAW4Enum@@XZ"
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
OneSizeGenerator.java 76 samples.e0, samples.e1, samples.e2, samples.e3, samples.e4);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetSetCountConditionallyTester.java 54 getMultiset().setCount(samples.e3, -1, 1);

Completed in 588 milliseconds

1 2 34 5 6 7 8 91011>>