Lines Matching refs:index

117 static inline void emit_ldarg( Emit::ILGenerator * code, ::System::Int32 index )  in emit_ldarg()  argument
119 switch (index) in emit_ldarg()
134 if (index < 0x100) in emit_ldarg()
135 code->Emit( Emit::OpCodes::Ldarg_S, (::System::Byte) index ); in emit_ldarg()
136 else if (index < 0x8000) in emit_ldarg()
137 code->Emit( Emit::OpCodes::Ldarg_S, (::System::Int16) index ); in emit_ldarg()
139 code->Emit( Emit::OpCodes::Ldarg, index ); in emit_ldarg()
149 int index = (*sPolyName)->IndexOf('<'); in polymorphicStructNameToStructName() local
150 OSL_ASSERT(index != -1); in polymorphicStructNameToStructName()
151 *sPolyName = (*sPolyName)->Substring(0, index); in polymorphicStructNameToStructName()
163 int index= 1; in mapUnoTypeName() local
166 if (typeName->get_Chars(index++) == ']')//if (usUnoName[index++] == ']') in mapUnoTypeName()
168 if (typeName->get_Chars(index++) != '[')//usUnoName[index++] != '[') in mapUnoTypeName()
171 sUnoName = sUnoName->Substring(index - 1);//usUnoName = usUnoName.copy(index - 1); in mapUnoTypeName()
232 int index = unoName->IndexOf('<'); in mapUnoPolymorphicName() local
233 if (index == -1) in mapUnoPolymorphicName()
237 new System::Text::StringBuilder(unoName->Substring(0, index +1 )); in mapUnoPolymorphicName()
244 index++; in mapUnoPolymorphicName()
245 int cur = index; in mapUnoPolymorphicName()
256 System::String * sParam = unoName->Substring(index, cur - index); in mapUnoPolymorphicName()
260 index = cur; in mapUnoPolymorphicName()
762 int index = 0; in get_type() local
763 for (it i = vecBaseTypes.begin(); i != vecBaseTypes.end(); i++, index++) in get_type()
764 base_interfaces[ index ] = get_type( *i ); in get_type()