Searched refs:op1 (Results 1 – 5 of 5) sorted by relevance
| /AOO42X/main/qadevOOo/runner/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() 106 Class zClass = op1.getClass().getComponentType(); in compareArrays() 108 for(int i = 0; i < Array.getLength(op1); ++ i) 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() [all …]
|
| /AOO42X/main/jurt/java/jurt/src/test/java/com/sun/star/lib/uno/protocols/urp/ |
| H A D | Marshaling_Test.java | 221 Object op1 = data[i]; in test() local 228 if(op1 instanceof Any) in test() 229 op1 = ((Any)op1).getObject(); in test() 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() 240 Class zClass = op1.getClass().getComponentType(); in compareArrays() 242 for(int i = 0; i < Array.getLength(op1); ++ i) in compareArrays() 243 result = result & compareObjects(Array.get(op1, i), Array.get(op2, i)); in compareArrays() [all …]
|
| /AOO42X/main/rsc/source/rscpp/ |
| H A D | cpp5.c | 230 int op1; /* Operand from stack */ in eval() local 297 op1 = opp->skip; /* Save skip for test */ in eval() 318 opp->skip = (char)((op1 & S_ANDOR) | ((!skip) ? S_QUEST : 0)); in eval() 320 opp->skip = (char)((op1 & S_ANDOR) in eval() 321 | (((op1 & S_QUEST) != 0) ? 0 : S_QUEST)); in eval() 324 opp->skip = (char)op1; /* skipping unchanged. */ in eval() 338 switch ((op1 = opp->op)) { /* Look at stacked op */ in eval() 368 fprintf( pCppOut, "Stack before evaluation of %s\n", opname[op1]); in eval() 371 valp = evaleval(valp, op1, skip); in eval()
|
| /AOO42X/main/io/source/connector/ |
| H A D | connector.hxx | 51 sal_Bool operator () (const ::com::sun::star::uno::Reference<T> & op1, in operator ()() 54 return op1.get() == op2.get(); in operator ()()
|
| /AOO42X/main/io/source/acceptor/ |
| H A D | acc_socket.cxx | 58 sal_Bool operator () (const ::com::sun::star::uno::Reference<T> & op1, in operator ()() 61 return op1.get() == op2.get(); in operator ()()
|