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

1 2 34 5 6 7 8 91011>>

  /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/bluetooth/glib/tests/
regex-test.c 228 gchar *e2 = g_strescape (string, NULL); local
229 g_print ("failed \t(unexpected %s) '%s' against '%s'\n", match ? "match" : "mismatch", e1, e2);
231 g_free (e2);
408 t1, s1, e1, t2, s2, e2) { \
411 t1, s1, e1, t2, s2, e2, NULL)) \
418 t1, s1, e1, t2, s2, e2, t3, s3, e3) { \
421 t1, s1, e1, t2, s2, e2, t3, s3, e3, NULL)) \
428 t1, s1, e1, t2, s2, e2, t3, s3, e3, t4, s4, e4) { \
431 t1, s1, e1, t2, s2, e2, t3, s3, e3, t4, s4, e4, NULL)) \
742 #define TEST_FETCH_ALL2(pattern, string, e1, e2) { \
    [all...]
  /external/chromium/testing/gmock/test/
gmock-spec-builders_test.cc 1360 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1390 Expectation e2 = EXPECT_CALL(a, DoA(1)); local
1410 const Expectation e2; local
1453 Expectation e2 = EXPECT_CALL(a, DoA(1)); local
1512 const Expectation e2 = EXPECT_CALL(b, DoB()) local
1528 Expectation e2 = EXPECT_CALL(b, DoB()) local
1594 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1611 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1630 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1650 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/res/
XResourceBundle.java 80 catch (MissingResourceException e2)
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
p3.cpp 50 void e2(class B<A>::Member); // expected-error {{use of 'Member' with tag type that does not match previous declaration}}
  /external/clang/test/Sema/
function-redecl.c 97 enum e { e1, e2 }; enumerator in enum:e
  /external/clang/test/SemaCXX/
enum.cpp 39 enum e2; // expected-error{{ISO C++ forbids forward references to 'enum' types}}
expressions.cpp 100 e2 = A && 7 // expected-warning {{use of logical '&&' with constant operand}} \ enumerator in enum:S::__anon5750
MicrosoftExtensions.cpp 69 int e2; member in union:A::__anon5667::C2
warn-sign-conversion.cpp 76 int e2 = 1 ? E : i; // expected-warning {{operand of ? changes signedness: 'test2::Named5' to 'int'}} local
  /external/junit/src/org/junit/internal/builders/
AnnotatedBuilder.java 38 } catch (NoSuchMethodException e2) {
  /external/valgrind/main/exp-sgcheck/
pc_common.h 50 Bool pc_eq_Error ( VgRes res, Error* e1, Error* e2 );
  /bionic/libc/bionic/
malloc_debug_common.c 66 HashEntry* e2 = *(HashEntry**)arg2; local
70 result = (e2 == NULL) ? 0 : 1;
71 } else if (e2 == NULL) {
75 size_t nbAlloc2 = e2->allocations;
77 size_t size2 = e2->size & ~SIZE_FLAG_MASK;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionRetainAllTester.java 88 samples.e0, samples.e1, samples.e2, samples.e3, samples.e4),
98 = new Target(MinimalCollection.of(samples.e2, samples.e3),
125 expectMissing(samples.e0, samples.e1, samples.e2);
156 expectMissing(samples.e0, samples.e1, samples.e2);
216 expectContents(samples.e2);
  /libcore/luni/src/main/java/java/util/
Arrays.java 1581 Object e1 = array1[i], e2 = array2[i]; local
1633 Object e1 = array1[i], e2 = array2[i]; local
    [all...]
  /external/chromium/chrome/browser/ui/views/
reload_button_unittest.cc 118 views::MouseEvent e2(ui::ET_MOUSE_MOVED, 0, 0, 0);
119 reload_.OnMouseExited(e2);
  /frameworks/av/media/libeffects/data/
audio_effects.conf 44 uuid 8631f300-72e2-11df-b57e-0002a5d5c51b
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
PlaybackActivity.java 56 public boolean onScroll(MotionEvent e1, MotionEvent e2,
66 return super.onScroll(e1, e2, distanceX, distanceY);
  /packages/apps/Calculator/src/com/android/calculator2/
PanelSwitcher.java 60 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
62 int dx = (int) (e2.getX() - e1.getX());
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
WrapCipherSpi.java 344 catch (IllegalBlockSizeException e2)
346 throw new InvalidKeyException(e2.getMessage());
428 catch (InvalidKeySpecException e2)
430 throw new InvalidKeyException("Unknown key type " + e2.getMessage());
  /external/chromium/testing/gtest/test/
gtest_pred_impl_unittest.cc 490 const char* e2,
497 << e1 << " + " << e2
506 const char* e2,
509 return PredFormatFunction2(e1, e2, v1, v2);
920 const char* e2,
929 << e1 << " + " << e2 << " + " << e3
938 const char* e2,
943 return PredFormatFunction3(e1, e2, e3, v1, v2, v3);
    [all...]
  /external/clang/test/Parser/
MicrosoftExtensions.c 52 enum __declspec(deprecated) E2 { i, j, k };
58 enum E2 e1; // expected-warning {{'E2' is deprecated}}
59 enum E3 e2; // No warning expected, the deprecation follows the variable local
  /external/clang/test/SemaTemplate/
instantiate-member-class.cpp 61 X<void>::D::E e2; // expected-note{{in instantiation of member class 'X<void>::D::E' requested here}} variable
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-launcher.jar 
  /external/gtest/test/
gtest_pred_impl_unittest.cc 490 const char* e2,
497 << e1 << " + " << e2
506 const char* e2,
509 return PredFormatFunction2(e1, e2, v1, v2);
920 const char* e2,
929 << e1 << " + " << e2 << " + " << e3
938 const char* e2,
943 return PredFormatFunction3(e1, e2, e3, v1, v2, v3);
    [all...]

Completed in 853 milliseconds

1 2 34 5 6 7 8 91011>>