Lines Matching refs:index

746 							  sal_uInt16 index)  in checkMethod()  argument
749 if ( reader1.getMethodName(index) != reader2.getMethodName(index) ) in checkMethod()
754 fprintf(stdout, " Method1 %d: Name1 = %s != Name2 = %s\n", index, in checkMethod()
755 U2S(reader1.getMethodName(index)), in checkMethod()
756 U2S(reader2.getMethodName(index))); in checkMethod()
761 if ( reader1.getMethodReturnTypeName(index) != reader2.getMethodReturnTypeName(index) ) in checkMethod()
766 fprintf(stdout, " Method1 %d: ReturnType1 = %s != ReturnType2 = %s\n", index, in checkMethod()
767 U2S(reader1.getMethodReturnTypeName(index)), in checkMethod()
768 U2S(reader2.getMethodReturnTypeName(index))); in checkMethod()
773 sal_uInt16 nParams1 = (sal_uInt16)reader1.getMethodParameterCount(index); in checkMethod()
774 sal_uInt16 nParams2 = (sal_uInt16)reader2.getMethodParameterCount(index); in checkMethod()
780 …fprintf(stdout, " Method %d : nParameters1 = %d != nParameters2 = %d\n", index, nParams1, nPara… in checkMethod()
787 …if ( reader1.getMethodParameterTypeName(index, i) != reader2.getMethodParameterTypeName(index, i) ) in checkMethod()
792 fprintf(stdout, " Method %d, Parameter %d: Type1 = %s != Type2 = %s\n", index, i, in checkMethod()
793 U2S(reader1.getMethodParameterTypeName(index, i)), in checkMethod()
794 U2S(reader2.getMethodParameterTypeName(index, i))); in checkMethod()
798 …ions.fullCheck() && (reader1.getMethodParameterName(index, i) != reader2.getMethodParameterName(in… in checkMethod()
803 fprintf(stdout, " Method %d, Parameter %d: Name1 = %s != Name2 = %s\n", index, i, in checkMethod()
804 U2S(reader1.getMethodParameterName(index, i)), in checkMethod()
805 U2S(reader2.getMethodParameterName(index, i))); in checkMethod()
809 if ( reader1.getMethodParameterFlags(index, i) != reader2.getMethodParameterFlags(index, i) ) in checkMethod()
814 fprintf(stdout, " Method %d, Parameter %d: Mode1 = %s != Mode2 = %s\n", index, i, in checkMethod()
815 getParamMode(reader1.getMethodParameterFlags(index, i)), in checkMethod()
816 getParamMode(reader2.getMethodParameterFlags(index, i))); in checkMethod()
824 fprintf(stdout, " Registry1: Method %d contains %d more parameters\n", index, nParams1 - i); in checkMethod()
829 fprintf(stdout, " Registry2: Method %d contains %d more parameters\n", index, nParams2 - i); in checkMethod()
832 sal_uInt16 nExcep1 = (sal_uInt16)reader1.getMethodExceptionCount(index); in checkMethod()
833 sal_uInt16 nExcep2 = (sal_uInt16)reader2.getMethodExceptionCount(index); in checkMethod()
845 …if ( reader1.getMethodExceptionTypeName(index, i) != reader2.getMethodExceptionTypeName(index, i) ) in checkMethod()
850 fprintf(stdout, " Method %d, Exception %d: Name1 = %s != Name2 = %s\n", index, i, in checkMethod()
851 U2S(reader1.getMethodExceptionTypeName(index, i)), in checkMethod()
852 U2S(reader2.getMethodExceptionTypeName(index, i))); in checkMethod()
860 fprintf(stdout, " Registry1: Method %d contains %d more exceptions\n", index, nExcep1 - i); in checkMethod()
865 fprintf(stdout, " Registry2: Method %d contains %d more exceptions\n", index, nExcep2 - i); in checkMethod()
868 if ( reader1.getMethodFlags(index) != reader2.getMethodFlags(index) ) in checkMethod()
873 fprintf(stdout, " Method %d: Mode1 = %s != Mode2 = %s\n", index, in checkMethod()
874 getMethodMode(reader1.getMethodFlags(index)), in checkMethod()
875 getMethodMode(reader2.getMethodFlags(index))); in checkMethod()
880 …tions.fullCheck() && (reader1.getMethodDocumentation(index) != reader2.getMethodDocumentation(inde… in checkMethod()
885 fprintf(stdout, " Method %d: Doku1 = %s\n Doku2 = %s\n", index, in checkMethod()
886 U2S(reader1.getMethodDocumentation(index)), in checkMethod()
887 U2S(reader2.getMethodDocumentation(index))); in checkMethod()