Searched refs:op2 (Results 1 – 4 of 4) sorted by relevance
| /trunk/main/qadevOOo/java/OOoRunner/src/main/java/util/ |
| H A D | ValueComparer.java | 97 static boolean compareArrays(Object op1, Object op2) throws Exception { in compareArrays() argument 99 if (op1 instanceof PropertyValue[] && op2 instanceof PropertyValue[]) { in compareArrays() 100 return compareArrayOfPropertyValue((PropertyValue[])op1,(PropertyValue[])op2); in compareArrays() 103 if((op1.getClass().getComponentType() == op2.getClass().getComponentType()) in compareArrays() 104 && (Array.getLength(op1) == Array.getLength(op2))) in compareArrays() 109 result = result & compareObjects(Array.get(op1, i), Array.get(op2, i)); in compareArrays() 117 static boolean compareInterfaces(XInterface op1, XInterface op2) { in compareInterfaces() argument 118 return op1 == op2; in compareInterfaces() 121 …static boolean compareUntil(Class zClass, Class untilClass, Object op1, Object op2) throws Excepti… in compareUntil() argument 127 result = result & compareUntil(superClass, untilClass, op1, op2); in compareUntil() [all …]
|
| /trunk/main/jurt/java/jurt/src/test/java/com/sun/star/lib/uno/protocols/urp/ |
| H A D | Marshaling_Test.java | 226 Object op2 = unmarshal.readValue(dataTypes[i]); in test() local 231 assertTrue(compareObjects(op1, op2)); in test() 235 private static boolean compareArrays(Object op1, Object op2) throws Exception { in compareArrays() argument 237 if((op1.getClass().getComponentType() == op2.getClass().getComponentType()) in compareArrays() 238 && (Array.getLength(op1) == Array.getLength(op2))) in compareArrays() 243 result = result & compareObjects(Array.get(op1, i), Array.get(op2, i)); in compareArrays() 249 private static boolean compareInterfaces(XInterface op1, XInterface op2) { in compareInterfaces() argument 250 return op1 == op2; in compareInterfaces() 253 private static boolean compareStructs(Class zClass, Object op1, Object op2) throws Exception { in compareStructs() argument 260 result = result & compareObjects(fields[i].get(op1), fields[i].get(op2)); in compareStructs() [all …]
|
| /trunk/main/io/source/connector/ |
| H A D | connector.hxx | 52 const ::com::sun::star::uno::Reference<T> & op2) const in operator ()() 54 return op1.get() == op2.get(); in operator ()()
|
| /trunk/main/io/source/acceptor/ |
| H A D | acc_socket.cxx | 59 const ::com::sun::star::uno::Reference<T> & op2) const in operator ()() 61 return op1.get() == op2.get(); in operator ()()
|