Home
last modified time | relevance | path

Searched refs:ex1 (Results 1 – 25 of 42) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xalan/processor/
DTransformerFactoryImpl.java326 catch (javax.xml.parsers.FactoryConfigurationError ex1) in getAssociatedStylesheet()
328 throw new org.xml.sax.SAXException(ex1.toString()); in getAssociatedStylesheet()
658 catch( TransformerConfigurationException ex1 ) in newXMLFilter()
660 throw ex1; in newXMLFilter()
662 catch( TransformerException ex1 ) in newXMLFilter()
664 throw new TransformerConfigurationException(ex1); in newXMLFilter()
722 catch (TransformerConfigurationException ex1 ) in newTransformerHandler()
724 throw ex1; in newTransformerHandler()
726 catch (TransformerException ex1 ) in newTransformerHandler()
728 throw new TransformerConfigurationException(ex1); in newTransformerHandler()
[all …]
DProcessorInclude.java291 } catch( javax.xml.parsers.FactoryConfigurationError ex1 ) { in parse()
292 throw new org.xml.sax.SAXException( ex1.toString() ); in parse()
/external/jmonkeyengine/engine/src/tools/jme3tools/savegame/
DSaveGame.java55 } catch (IOException ex1) { in saveGame()
56 … Logger.getLogger(SaveGame.class.getName()).log(Level.SEVERE, "Error saving data: {0}", ex1); in saveGame()
57 ex1.printStackTrace(); in saveGame()
64 } catch (IOException ex1) { in saveGame()
65 … Logger.getLogger(SaveGame.class.getName()).log(Level.SEVERE, "Error saving data: {0}", ex1); in saveGame()
66 ex1.printStackTrace(); in saveGame()
/external/llvm/utils/
Dfindmisopt99 ex1=$?
112 if [ "$ex1" -ne "$ex2" ] ; then
115 echo "Unoptimized returned: $ex1"
/external/pdfium/third_party/agg23/
Dagg_rasterizer_scanline_aa.cpp164 int ex1 = x1 >> poly_base_shift; in render_hline() local
174 if(ex1 == ex2) { in render_hline()
196 ex1 += incr; in render_hline()
197 set_cur_cell(ex1, ey); in render_hline()
199 if(ex1 != ex2) { in render_hline()
208 while (ex1 != ex2) { in render_hline()
217 ex1 += incr; in render_hline()
218 set_cur_cell(ex1, ey); in render_hline()
/external/mesa3d/src/glsl/
Dast_expr.cpp82 ast_expression *ex1) : in ast_expression_bin() argument
83 ast_expression(oper, ex0, ex1, NULL) in ast_expression_bin()
/external/freetype/src/smooth/
Dftgrays.c608 TCoord ex1, ex2, fx1, fx2, first, delta, mod; in gray_render_scanline() local
613 ex1 = TRUNC( x1 ); in gray_render_scanline()
623 fx1 = (TCoord)( x1 - SUBPIXELS( ex1 ) ); in gray_render_scanline()
629 if ( ex1 == ex2 ) in gray_render_scanline()
660 ex1 += incr; in gray_render_scanline()
661 gray_set_cell( RAS_VAR_ ex1, ey ); in gray_render_scanline()
664 if ( ex1 != ex2 ) in gray_render_scanline()
687 ex1 += incr; in gray_render_scanline()
688 gray_set_cell( RAS_VAR_ ex1, ey ); in gray_render_scanline()
689 } while ( ex1 != ex2 ); in gray_render_scanline()
[all …]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
DPrivilegedActionExceptionTest.java39 PrivilegedActionException ex1 = new PrivilegedActionException(ex); in getData() local
43 new PrivilegedActionException(ex1) in getData()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/smooth/
Dftgrays.c705 TCoord ex1, ex2, fx1, fx2, delta, mod;
712 ex1 = TRUNC( x1 );
714 fx1 = (TCoord)( x1 - SUBPIXELS( ex1 ) );
726 if ( ex1 == ex2 )
754 ex1 += incr;
755 gray_set_cell( RAS_VAR_ ex1, ey );
758 if ( ex1 != ex2 )
781 ex1 += incr;
782 gray_set_cell( RAS_VAR_ ex1, ey );
783 } while ( ex1 != ex2 );
[all …]
/external/nist-sip/java/gov/nist/javax/sip/address/
DNetObject.java140 } catch (IllegalAccessException ex1) { in equals()
141 InternalErrorHandler.handleException(ex1); in equals()
262 } catch (IllegalAccessException ex1) { in match()
263 InternalErrorHandler.handleException(ex1); in match()
369 } catch (IllegalAccessException ex1) { in debugDump()
/external/nist-sip/java/gov/nist/javax/sip/header/
DSIPObject.java142 } catch (IllegalAccessException ex1) { in equals()
146 InternalErrorHandler.handleException(ex1); in equals()
269 } catch (IllegalAccessException ex1) { in match()
270 InternalErrorHandler.handleException(ex1); in match()
376 } catch (IllegalAccessException ex1) { in debugDump()
/external/nist-sip/java/gov/nist/core/
DGenericObject.java281 } catch (IllegalAccessException ex1) { in merge()
282 ex1.printStackTrace(); in merge()
469 } catch (IllegalAccessException ex1) { in equals()
470 InternalErrorHandler.handleException(ex1); in equals()
572 } catch (IllegalAccessException ex1) { in match()
573 InternalErrorHandler.handleException(ex1); in match()
679 } catch (IllegalAccessException ex1) { in debugDump()
/external/opencv/cvaux/src/
Dcvepilines.cpp1100 double ex1,ey1,ex2,ey2; in icvGetCrossPiecePiece() local
1106 ex1 = p1_start.x; in icvGetCrossPiecePiece()
1116 del = (py1-py2)*(ex1-ex2)-(px1-px2)*(ey1-ey2); in icvGetCrossPiecePiece()
1123 delA = (ey1-ey2)*(ex1-px1) + (ex1-ex2)*(py1-ey1); in icvGetCrossPiecePiece()
1124 delB = (py1-py2)*(ex1-px1) + (px1-px2)*(py1-ey1); in icvGetCrossPiecePiece()
1135 delX = (px1-px2)*(ey1*(ex1-ex2)-ex1*(ey1-ey2))+ in icvGetCrossPiecePiece()
1136 (ex1-ex2)*(px1*(py1-py2)-py1*(px1-px2)); in icvGetCrossPiecePiece()
1138 delY = (py1-py2)*(ey1*(ex1-ex2)-ex1*(ey1-ey2))+ in icvGetCrossPiecePiece()
3418 double ex1,ey1,ex2,ey2; in GetCrossLines() local
3424 ex1 = p1_start.x; in GetCrossLines()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/utils/
DXMLReaderManager.java129 } catch (FactoryConfigurationError ex1) { in getXMLReader()
130 throw new SAXException(ex1.toString()); in getXMLReader()
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
DKSBuilder_ImplTest.java443 Exception ex1 = null; in testNewInstanceStringProviderProtectionParameter() local
448 ex1 = e; in testNewInstanceStringProviderProtectionParameter()
455 assertEquals("Incorrect exception", ex1.getMessage(), ex2 in testNewInstanceStringProviderProtectionParameter()
468 ex1 = e; in testNewInstanceStringProviderProtectionParameter()
475 assertEquals("Incorrect exception", ex1.getMessage(), ex2 in testNewInstanceStringProviderProtectionParameter()
/external/nist-sip/java/gov/nist/javax/sip/
DSipStackImpl.java570 } catch (InvocationTargetException ex1) { in SipStackImpl()
575 ex1); in SipStackImpl()
599 } catch (InvocationTargetException ex1) { in SipStackImpl()
604 ex1); in SipStackImpl()
637 } catch (InvocationTargetException ex1) { in SipStackImpl()
641 (Exception) ex1.getCause()); in SipStackImpl()
643 "Cound not instantiate router - check constructor", ex1); in SipStackImpl()
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/Shapes/
Db2PolygonShape.cpp417 float32 ex1 = e1.x, ey1 = e1.y; in ComputeMass() local
420 float32 intx2 = ex1*ex1 + ex2*ex1 + ex2*ex2; in ComputeMass()
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DTrAXFilter.java134 } catch( javax.xml.parsers.FactoryConfigurationError ex1 ) { in parse()
135 throw new org.xml.sax.SAXException( ex1.toString() ); in parse()
/external/mesa3d/src/mesa/swrast/
Ds_aaline.c56 GLfloat ex1, ey1; member
299 GLfloat cross1 = (info->ex1 * fy1 - info->ey1 * fx1); in compute_coveragef()
308 cross1 = info->ex1 + info->ey1; in compute_coveragef()
360 line->ex1 = line->qx2 - line->qx1; in segment()
/external/apache-xml/src/main/java/org/apache/xpath/
DSourceTreeManager.java362 } catch( javax.xml.parsers.FactoryConfigurationError ex1 ) { in getXMLReader()
363 throw new org.xml.sax.SAXException( ex1.toString() ); in getXMLReader()
/external/pdfium/third_party/freetype/src/smooth/
Dftgrays.c693 TCoord ex1, ex2, fx1, fx2, delta, mod; in gray_render_scanline() local
700 ex1 = TRUNC( x1 ); in gray_render_scanline()
702 fx1 = (TCoord)( x1 - SUBPIXELS( ex1 ) ); in gray_render_scanline()
714 if ( ex1 == ex2 ) in gray_render_scanline()
742 ex1 += incr; in gray_render_scanline()
743 gray_set_cell( RAS_VAR_ ex1, ey ); in gray_render_scanline()
746 if ( ex1 != ex2 ) in gray_render_scanline()
769 ex1 += incr; in gray_render_scanline()
770 gray_set_cell( RAS_VAR_ ex1, ey ); in gray_render_scanline()
771 } while ( ex1 != ex2 ); in gray_render_scanline()
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
DReflectionPool.java47 } catch (Exception ex1) { in findConstructor()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DCompoundTransliteratorTest.java54 }catch(IllegalArgumentException ex1) { in TestConstruction()
56 throw ex1; in TestConstruction()
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DCompoundTransliteratorTest.java50 }catch(IllegalArgumentException ex1) { in TestConstruction()
52 throw ex1; in TestConstruction()
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/shapes/
DPolygonShape.java610 final float ex1 = e1.x, ey1 = e1.y; in computeMass() local
613 float intx2 = ex1 * ex1 + ex2 * ex1 + ex2 * ex2; in computeMass()

12