Searched refs:e2 (Results 151 - 175 of 384) sorted by relevance

1234567891011>>

/external/skia/samplecode/
H A DSampleColorFilter.cpp60 int e2 = 0; local
80 e2 += err2;
85 SkDebugf("--- trunc: %d %d round: %d %d new: %d %d\n", e0, ae0, e1, ae1, e2, ae2);
/external/v8/test/mjsunit/
H A Ddebug-function-scopes.js115 } catch (e2) {
117 return e1 + e2;
127 CheckScope(mirror.scope(0), { e2: "I'm error 2" }, ScopeType.Catch);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowContentValues.java141 } catch (NumberFormatException e2) {
161 } catch (NumberFormatException e2) {
181 } catch (NumberFormatException e2) {
201 } catch (NumberFormatException e2) {
221 } catch (NumberFormatException e2) {
241 } catch (NumberFormatException e2) {
/external/javassist/src/main/javassist/compiler/ast/
H A DASTList.java38 public static ASTList make(ASTree e1, ASTree e2, ASTree e3) { argument
39 return new ASTList(e1, new ASTList(e2, new ASTList(e3)));
/external/jetty/src/java/org/eclipse/jetty/io/nio/
H A DSelectChannelEndPoint.java716 catch(IOException e2){LOG.ignore(e2);}
722 catch(IOException e2){LOG.ignore(e2);}
728 catch(IOException e2){LOG.ignore(e2);}
743 catch(IOException e2){LOG.ignore(e2);}
/external/freetype/src/raster/
H A Dftraster.c1004 Int e1, e2, f1, f2, size; /* XXX: is `Short' sufficient? */ local
1033 e2 = (Int)TRUNC( maxy );
1038 e2 = (Int)TRUNC( y2 );
1044 if ( e1 == e2 )
1067 size = e2 - e1 + 1;
1187 Long y1, y2, e, e2, e0; local
1204 e2 = FLOOR( y2 );
1206 if ( e2 > maxy )
1207 e2 = maxy;
1239 if ( e2 <
2188 Long e1, e2; local
2268 Long e1, e2, pxl; local
2457 Long e1, e2; local
2504 Long e1, e2, pxl; local
2650 Long x1, x2, xs, e1, e2; local
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock-spec-builders_test.cc1371 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1378 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2);
1383 Expectation e10 = e2; // Copy ctor.
1385 EXPECT_THAT(e1, Ne(e2));
1386 EXPECT_THAT(e2, Eq(e10));
1401 Expectation e2 = EXPECT_CALL(a, DoA(1)); local
1403 EXPECT_THAT(e1, Ne(e2));
1405 e1 = e2;
1406 EXPECT_THAT(e1, Eq(e2));
1421 const Expectation e2; local
1464 Expectation e2 = EXPECT_CALL(a, DoA(1)); local
1523 const Expectation e2 = EXPECT_CALL(b, DoB()) local
1539 Expectation e2 = EXPECT_CALL(b, DoB()) local
1605 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1622 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1641 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1661 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/res/
H A DXResourceBundle.java80 catch (MissingResourceException e2)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DAndroidDigestFactory.java41 } catch (ClassNotFoundException e2) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseWrapCipher.java350 catch (IllegalBlockSizeException e2)
352 throw new InvalidKeyException(e2.getMessage());
404 catch (InvalidKeySpecException e2)
406 throw new InvalidKeyException("Unknown key type " + e2.getMessage());
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
H A Dp3.cpp50 void e2(class B<A>::Member); // expected-error {{use of 'Member' with tag type that does not match previous declaration}}
/external/clang/test/Sema/
H A Dattr-aligned.c45 char e2[__alignof__(e.member) == 2 ?: -1] = {0}; variable
H A Dfunction-redecl.c95 enum e { e1, e2 }; enumerator in enum:e
/external/clang/test/SemaCXX/
H A Denum.cpp39 enum e2; // expected-error{{ISO C++ forbids forward references to 'enum' types}}
H A Dexpressions.cpp100 e2 = A && 7 // expected-warning {{use of logical '&&' with constant operand}} \ enumerator in enum:S::__anon2567
/external/eigen/bench/btl/actions/
H A Daction_cholesky.hh47 X_stl[i][i] = std::abs(X_stl[i][i]) * 1e2 + 100;
H A Daction_partial_lu.hh47 X_stl[i][i] = X_stl[i][i] * 1e2 + 1;
/external/google-breakpad/src/client/
H A Dminidump_file_writer_unittest.cc53 #define ASSERT_EQ(e1, e2) ASSERT_TRUE((e1) == (e2))
54 #define ASSERT_NE(e1, e2) ASSERT_TRUE((e1) != (e2))
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DMultimapGetTester.java62 Helpers.mapEntry(sampleKeys().e0, sampleValues().e2));
66 sampleValues().e2);
79 Helpers.mapEntry(sampleKeys().e0, sampleValues().e2));
128 V v2 = sampleValues().e2;
H A DSetMultimapPutAllTester.java40 V v1 = sampleValues().e2;
H A DSetMultimapReplaceValuesTester.java39 V v1 = sampleValues().e2;
/external/junit/src/org/junit/internal/builders/
H A DAnnotatedBuilder.java38 } catch (NoSuchMethodException e2) {
/external/toybox/kconfig/
H A Dexpr.h163 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
165 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
166 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
169 int expr_eq(struct expr *e1, struct expr *e2);
/external/valgrind/exp-sgcheck/
H A Dpc_common.h50 Bool pc_eq_Error ( VgRes res, const Error* e1, const Error* e2 );
/external/valgrind/include/
H A Dpub_tool_execontext.h85 const ExeContext* e2 );

Completed in 1489 milliseconds

1234567891011>>