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

1 2 3

  /external/clang/test/CodeGen/
2007-04-11-PR1321.c 8 unsigned int e4 : 17; member in struct:X
  /external/guava/src/com/google/common/collect/
ImmutableList.java 107 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) {
108 return new RegularImmutableList<E>(copyIntoArray(e1, e2, e3, e4));
116 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) {
117 return new RegularImmutableList<E>(copyIntoArray(e1, e2, e3, e4, e5));
125 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) {
126 return new RegularImmutableList<E>(copyIntoArray(e1, e2, e3, e4, e5, e6));
135 E e1, E e2, E e3, E e4, E e5, E e6, E e7) {
137 copyIntoArray(e1, e2, e3, e4, e5, e6, e7));
146 E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8) {
148 copyIntoArray(e1, e2, e3, e4, e5, e6, e7, e8))
    [all...]
ImmutableSortedSetFauxverideShim.java 102 E e1, E e2, E e3, E e4) {
117 E e1, E e2, E e3, E e4, E e5) {
ImmutableSet.java 124 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) {
125 return create(e1, e2, e3, e4);
136 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) {
137 return create(e1, e2, e3, e4, e5);
ImmutableSortedSet.java 160 E e1, E e2, E e3, E e4) {
161 return ofInternal(Ordering.natural(), e1, e2, e3, e4);
173 E e1, E e2, E e3, E e4, E e5) {
174 return ofInternal(Ordering.natural(), e1, e2, e3, e4, e5);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
p3.cpp 51 void e4(enum B<A>::Member); // expected-error {{use of 'Member' with tag type that does not match previous declaration}}
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderFactory.java 200 } catch (ClassCastException e4) {
202 " does not implement XMLReader", e4);
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest_pred_impl.h 244 const char* e4,
257 << e4 << ") evaluates to false, where"
261 << "\n" << e4 << " evaluates to " << v4;
309 const char* e4,
324 << e4 << ", "
329 << "\n" << e4 << " evaluates to " << v4
  /external/chromium/testing/gtest/include/gtest/
gtest_pred_impl.h 238 const char* e4,
250 << e4 << ") evaluates to false, where"
254 << "\n" << e4 << " evaluates to " << v4;
301 const char* e4,
315 << e4 << ", "
320 << "\n" << e4 << " evaluates to " << v4
  /external/gtest/include/gtest/
gtest_pred_impl.h 244 const char* e4,
257 << e4 << ") evaluates to false, where"
261 << "\n" << e4 << " evaluates to " << v4;
309 const char* e4,
324 << e4 << ", "
329 << "\n" << e4 << " evaluates to " << v4
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest_pred_impl.h 238 const char* e4,
250 << e4 << ") evaluates to false, where"
254 << "\n" << e4 << " evaluates to " << v4;
301 const char* e4,
315 << e4 << ", "
320 << "\n" << e4 << " evaluates to " << v4
  /external/protobuf/gtest/include/gtest/
gtest_pred_impl.h 244 const char* e4,
257 << e4 << ") evaluates to false, where"
261 << "\n" << e4 << " evaluates to " << v4;
309 const char* e4,
324 << e4 << ", "
329 << "\n" << e4 << " evaluates to " << v4
  /libcore/luni/src/main/java/java/util/
EnumSet.java 211 * @param e4
217 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4) {
219 set.add(e4);
235 * @param e4
243 public static <E extends Enum<E>> EnumSet<E> of(E e1, E e2, E e3, E e4, E e5) {
244 EnumSet<E> set = of(e1, e2, e3, e4);
DualPivotQuicksort.java 133 int e4 = e3 + sixth; local
137 int ae1 = a[e1], ae2 = a[e2], ae3 = a[e3], ae4 = a[e4], ae5 = a[e5];
163 int pivot2 = ae4; a[e4] = a[right];
411 int e4 = e3 + sixth; local
415 long ae1 = a[e1], ae2 = a[e2], ae3 = a[e3], ae4 = a[e4], ae5 = a[e5];
441 long pivot2 = ae4; a[e4] = a[right];
706 int e4 = e3 + sixth; local
710 short ae1 = a[e1], ae2 = a[e2], ae3 = a[e3], ae4 = a[e4], ae5 = a[e5];
736 short pivot2 = ae4; a[e4] = a[right];
999 int e4 = e3 + sixth; local
1294 int e4 = e3 + sixth; local
1667 int e4 = e3 + sixth; local
2040 int e4 = e3 + sixth; local
    [all...]
  /external/clang/test/SemaCXX/
warn-sign-conversion.cpp 78 int e4 = 1 ? B : E; // expected-warning {{operand of ? changes signedness: 'test2::Named5' to 'int'}} local
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
7.7.3.js 72 array[item++] = new TestCase( SECTION, "4.e4", 40000, 4.e4 );
78 array[item++] = new TestCase( SECTION, "4.4e4", 44000, 4.4e4 );
84 array[item++] = new TestCase( SECTION, ".4e4", 4000, .4e4 );
90 array[item++] = new TestCase( SECTION, "4e4", 40000, 4e4 );
96 array[item++] = new TestCase( SECTION, "4e4", 40000, 4e4 );
    [all...]
  /external/v8/test/mjsunit/
str-to-num.js 121 assertEquals(12340000, toNumber("1234e4"));
122 assertEquals(12340000, toNumber("+1234e4"));
123 assertEquals(-12340000, toNumber("-1234e4"));
201 assertTrue(isNaN(toNumber(".1e4 junk")), ".1e4 junk");
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 49 enum E4 { V4 } constexpr e4 = V4; variable in typeref:enum:E4
  /external/jdiff/src/jdiff/
JDiff.java 229 } catch (IllegalAccessException e4) {
231 e4.printStackTrace();
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-matchers.h 397 const T4& e4) : e1_(e1), e2_(e2), e3_(e3), e4_(e4) {}
427 ElementsAreMatcher5(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
428 const T5& e5) : e1_(e1), e2_(e2), e3_(e3), e4_(e4), e5_(e5) {}
461 ElementsAreMatcher6(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
462 const T5& e5, const T6& e6) : e1_(e1), e2_(e2), e3_(e3), e4_(e4),
498 ElementsAreMatcher7(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
500 e4_(e4), e5_(e5), e6_(e6), e7_(e7) {}
537 ElementsAreMatcher8(const T1& e1, const T2& e2, const T3& e3, const T4& e4,
539 e2_(e2), e3_(e3), e4_(e4), e5_(e5), e6_(e6), e7_(e7), e8_(e8) {
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/login/
AppConfigurationEntryTest.java 106 } catch (IllegalArgumentException e4) {
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
MockAbstractPreferences.java 232 } catch (BackingStoreException e4) {
  /external/chromium/testing/gtest/test/
gtest_pred_impl_unittest.cc     [all...]
  /external/gtest/test/
gtest_pred_impl_unittest.cc     [all...]
  /external/openssl/crypto/aes/
aes_wrap.c 220 static const unsigned char e4[] = { local
250 ret = AES_wrap_unwrap_test(kek, 192, NULL, e4, key, 24);

Completed in 471 milliseconds

1 2 3