Searched refs:m_methods (Results 1 – 7 of 7) sorted by relevance
| /trunk/main/registry/source/ |
| H A D | reflwrit.cxx | 686 MethodEntry* m_methods; member in TypeWriter 749 m_methods = new MethodEntry[methodCount]; in TypeWriter() 767 delete[] m_methods; in ~TypeWriter() 948 (m_methods[i].m_paramCount * blopParamEntrySize) + // exceptions in createBlop() 950 (m_methods[i].m_excCount * sizeof(sal_uInt16)) ); // exceptions in createBlop() 972 sal::static_int_cast< sal_uInt16 >(m_methods[i].m_mode)); in createBlop() 974 if (m_methods[i].m_name.getLength()) in createBlop() 977 pInfo->m_value.aUtf8 = m_methods[i].m_name.getStr(); in createBlop() 983 if (m_methods[i].m_returnTypeName.getLength()) in createBlop() 986 pInfo->m_value.aUtf8 = m_methods[i].m_returnTypeName.getStr(); in createBlop() [all …]
|
| /trunk/main/codemaker/source/javamaker/ |
| H A D | classfile.cxx | 633 appendU2(m_methods, static_cast< sal_uInt16 >(accessFlags)); in addMethod() 634 appendU2(m_methods, addUtf8Info(name)); in addMethod() 635 appendU2(m_methods, addUtf8Info(descriptor)); in addMethod() 645 m_methods, in addMethod() 663 m_methods, in addMethod() 666 m_methods, in addMethod() 669 appendU2(m_methods, code->m_maxStack); in addMethod() 670 appendU2(m_methods, code->m_maxLocals); in addMethod() 671 appendU4(m_methods, static_cast< sal_uInt32 >(codeSize)); in addMethod() 672 appendStream(m_methods, code->m_code); in addMethod() [all …]
|
| H A D | classfile.hxx | 262 std::vector< unsigned char > m_methods; member in codemaker::javamaker::ClassFile
|
| /trunk/main/extensions/qa/integration/extensions/ |
| H A D | MethodHandler.java | 42 private XIdlMethod[] m_methods; field in MethodHandler 162 if ( m_methods != null ) in getSupportedProperties() 164 properties = new Property[ m_methods.length ]; in getSupportedProperties() 165 for ( int i=0; i<m_methods.length; ++i ) in getSupportedProperties() 167 … properties[i] = new Property( m_methods[i].getName(), 0, new Type( String.class ), (short)0 ); in getSupportedProperties() 168 m_methodsHash.put( m_methods[i].getName(), m_methods[i] ); in getSupportedProperties() 180 m_methods = null; in inspect() 187 m_methods = m_introspectionAccess.getMethods( MethodConcept.ALL ); in inspect()
|
| /trunk/main/bridges/source/jni_uno/ |
| H A D | jni_info.cxx | 71 delete [] m_methods; in destroy() 103 m_methods = 0; // no methods in JNI_interface_type_info() 113 m_methods = new jmethodID[ td->nMapFunctionIndexToMemberIndex ]; in JNI_interface_type_info() 150 m_methods[ nMethodIndex ] = jni->GetMethodID( in JNI_interface_type_info() 154 OSL_ASSERT( 0 != m_methods[ nMethodIndex ] ); in JNI_interface_type_info() 188 m_methods[ nMethodIndex ] = jni->GetMethodID( in JNI_interface_type_info() 192 OSL_ASSERT( 0 != m_methods[ nMethodIndex ] ); in JNI_interface_type_info() 209 m_methods[ nMethodIndex ] = jni->GetMethodID( in JNI_interface_type_info() 213 OSL_ASSERT( 0 != m_methods[ nMethodIndex ] ); in JNI_interface_type_info() 221 delete [] m_methods; in JNI_interface_type_info()
|
| H A D | jni_info.h | 89 jmethodID * m_methods; member
|
| H A D | jni_uno2java.cxx | 229 jmethodID method_id = info->m_methods[ function_pos ]; in call_java()
|