/aoo4110/main/registry/tools/ |
H A D | regcompare.cxx | 479 if (constValue1.m_value.aBool != constValue2.m_value.aBool) in checkConstValue() 492 if (constValue1.m_value.aByte != constValue2.m_value.aByte) in checkConstValue() 498 constValue1.m_value.aByte, constValue2.m_value.aByte); in checkConstValue() 504 if (constValue1.m_value.aShort != constValue2.m_value.aShort) in checkConstValue() 516 if (constValue1.m_value.aUShort != constValue2.m_value.aUShort) in checkConstValue() 528 if (constValue1.m_value.aLong != constValue2.m_value.aLong) in checkConstValue() 541 if (constValue1.m_value.aULong != constValue2.m_value.aULong) in checkConstValue() 554 if (constValue1.m_value.aHyper != constValue2.m_value.aHyper) in checkConstValue() 573 if (constValue1.m_value.aUHyper != constValue2.m_value.aUHyper) in checkConstValue() 598 if (constValue1.m_value.aFloat != constValue2.m_value.aFloat) in checkConstValue() [all …]
|
/aoo4110/main/registry/source/ |
H A D | reflwrit.cxx | 216 } m_value; member 280 size += strlen(m_value.aUtf8) + 1; in getBlopSize() 306 buff += writeBYTE(buff, m_value.aConst.aByte); in toBlop() 315 buff += writeINT32(buff, m_value.aConst.aLong); in toBlop() 321 buff += writeUINT64(buff, m_value.aConst.aHyper); in toBlop() 324 buff += writeUINT64(buff, m_value.aConst.aUHyper); in toBlop() 336 buff += writeUtf8(buff, m_value.aUtf8); in toBlop() 812 pInfo->m_value.aUtf8 = m_typeName.getStr(); in createBlop() 837 pInfo->m_value.aUik = m_pUik; in createBlop() 845 pInfo->m_value.aUtf8 = m_doku.getStr(); in createBlop() [all …]
|
H A D | regimpl.cxx | 242 printf("boolean %s", value.m_value.aBool ? "true" : "false"); in dumpType() 248 static_cast< unsigned int >(value.m_value.aByte)); in dumpType() 252 printf("short %d", static_cast< int >(value.m_value.aShort)); in dumpType() 258 static_cast< unsigned int >(value.m_value.aUShort)); in dumpType() 262 printf("long %ld", static_cast< long >(value.m_value.aLong)); in dumpType() 268 static_cast< unsigned long >(value.m_value.aULong)); in dumpType() 293 printString(value.m_value.aString); in dumpType()
|
/aoo4110/main/idlc/source/ |
H A D | astconstant.cxx | 70 aConst.m_value.aShort = exprVal->u.sval; in dumpBlob() 74 aConst.m_value.aUShort = exprVal->u.usval; in dumpBlob() 78 aConst.m_value.aLong = exprVal->u.lval; in dumpBlob() 82 aConst.m_value.aULong = exprVal->u.ulval; in dumpBlob() 86 aConst.m_value.aHyper = exprVal->u.hval; in dumpBlob() 90 aConst.m_value.aUHyper = exprVal->u.uhval; in dumpBlob() 94 aConst.m_value.aFloat = exprVal->u.fval; in dumpBlob() 98 aConst.m_value.aDouble = exprVal->u.dval; in dumpBlob() 102 aConst.m_value.aByte = exprVal->u.byval; in dumpBlob() 106 aConst.m_value.aBool = exprVal->u.bval; in dumpBlob()
|
H A D | astunion.cxx | 325 aConst.m_value.aHyper = pExprValue->u.hval; in dump() 326 if ( aConst.m_value.aHyper > disc ) in dump() 327 disc = aConst.m_value.aHyper; in dump() 345 aConst.m_value.aHyper = disc + 1; in dump()
|
/aoo4110/main/registry/test/ |
H A D | testregcpp.cxx | 70 aConst.m_value.aBool = sal_True; in test_coreReflection() 76 aConst.m_value.aByte = 127; in test_coreReflection() 82 aConst.m_value.aShort = -10; in test_coreReflection() 88 aConst.m_value.aUShort = 10; in test_coreReflection() 94 aConst.m_value.aLong = -100000; in test_coreReflection() 100 aConst.m_value.aULong = 100000; in test_coreReflection() 198 aConst.m_value.aULong = 10; in test_coreReflection() 207 aConst.m_value.aULong = 10; in test_coreReflection() 238 aConst.m_value.aUShort = 12; in test_coreReflection() 356 aConst.m_value.aByte = 127; in test_coreReflection() [all …]
|
/aoo4110/main/stoc/source/registry_tdprovider/ |
H A D | base.hxx | 124 return rVal.m_value.aByte; in getRTValueAsInt32() 126 return rVal.m_value.aShort; in getRTValueAsInt32() 128 return rVal.m_value.aUShort; in getRTValueAsInt32() 130 return rVal.m_value.aLong; in getRTValueAsInt32() 132 return rVal.m_value.aULong; in getRTValueAsInt32() 144 return Any( &rVal.m_value.aBool, ::getCppuBooleanType() ); in getRTValue() 146 return Any( &rVal.m_value.aByte, ::getCppuType( (const sal_Int8 *)0 ) ); in getRTValue() 152 return Any( &rVal.m_value.aLong, ::getCppuType( (const sal_Int32 *)0 ) ); in getRTValue() 160 return Any( &rVal.m_value.aFloat, ::getCppuType( (const float *)0 ) ); in getRTValue() 162 return Any( &rVal.m_value.aDouble, ::getCppuType( (const double *)0 ) ); in getRTValue() [all …]
|
/aoo4110/main/o3tl/inc/o3tl/ |
H A D | cow_wrapper.hxx | 177 m_value(), in impl_t() 183 m_value(v), in impl_t() 188 T m_value; member 248 impl_t* pimpl = new impl_t(m_pimpl->m_value); in make_unique() 253 return m_pimpl->m_value; in make_unique() 275 const_pointer operator->() const { return &m_pimpl->m_value; } in operator ->() 276 const value_type& operator*() const { return m_pimpl->m_value; } in operator *() 279 const_pointer get() const { return &m_pimpl->m_value; } in get()
|
/aoo4110/main/rdbmaker/source/rdbmaker/ |
H A D | typeblop.cxx | 70 aConstantAny >>= constValue.m_value.aBool; in writeConstantData() 77 aConstantAny >>= constValue.m_value.aByte; in writeConstantData() 84 aConstantAny >>= constValue.m_value.aShort; in writeConstantData() 91 aConstantAny >>= constValue.m_value.aUShort; in writeConstantData() 98 aConstantAny >>= constValue.m_value.aLong; in writeConstantData() 105 aConstantAny >>= constValue.m_value.aULong; in writeConstantData() 112 aConstantAny >>= constValue.m_value.aFloat; in writeConstantData() 119 aConstantAny >>= constValue.m_value.aDouble; in writeConstantData() 126 constValue.m_value.aString = ((OUString*)aConstantAny.getValue())->getStr(); in writeConstantData() 489 constValue.m_value.aLong = enumValues[i]; in getTypeBlop()
|
/aoo4110/main/unodevtools/source/unodevtools/ |
H A D | typeblob.cxx | 70 aConstantAny >>= constValue.m_value.aBool; in writeConstantData() 77 aConstantAny >>= constValue.m_value.aByte; in writeConstantData() 84 aConstantAny >>= constValue.m_value.aShort; in writeConstantData() 91 aConstantAny >>= constValue.m_value.aUShort; in writeConstantData() 98 aConstantAny >>= constValue.m_value.aLong; in writeConstantData() 105 aConstantAny >>= constValue.m_value.aULong; in writeConstantData() 112 aConstantAny >>= constValue.m_value.aFloat; in writeConstantData() 119 aConstantAny >>= constValue.m_value.aDouble; in writeConstantData() 126 constValue.m_value.aString = ((OUString*)aConstantAny.getValue())->getStr(); in writeConstantData() 597 constValue.m_value.aLong = enumValues[i]; in getTypeBlob()
|
/aoo4110/main/vcl/inc/vcl/ |
H A D | threadex.hxx | 174 operator T *() const { return &m_holder->m_value; } in operator T*() 175 operator T &() const { return m_holder->m_value; } in operator T&() 191 T m_value; member 194 data_holder( T * p ) : m_value(*p), m_ptr(p), m_refCount(1) {} in data_holder() 195 ~data_holder() { *m_ptr = m_value; } in ~data_holder()
|
/aoo4110/main/codemaker/source/idlmaker/ |
H A D | idltype.cxx | 653 if (constValue.m_value.aBool) in dumpConstantValue() 661 snprintf(tmp, sizeof(tmp), "0x%x", (sal_Int8)constValue.m_value.aByte); in dumpConstantValue() 666 o << constValue.m_value.aShort; in dumpConstantValue() 669 o << constValue.m_value.aUShort; in dumpConstantValue() 672 o << constValue.m_value.aLong; in dumpConstantValue() 675 o << constValue.m_value.aULong; in dumpConstantValue() 679 ::rtl::OString tmp( OString::valueOf(constValue.m_value.aHyper) ); in dumpConstantValue() 691 ::rtl::OString tmp( OString::valueOf(constValue.m_value.aFloat) ); in dumpConstantValue() 697 ::rtl::OString tmp( OString::valueOf(constValue.m_value.aDouble) ); in dumpConstantValue() 703 ::rtl::OUString aUStr(constValue.m_value.aString); in dumpConstantValue() [all …]
|
/aoo4110/main/store/source/ |
H A D | lockbyte.cxx | 863 T m_value; member 865 explicit ResourceHolder (T const & value = T()) : m_value (value) {} in ResourceHolder() 868 T & get() { return m_value; } in get() 869 T const & get() const { return m_value; } in get() 871 void set (T const & value) { m_value = value; } in set() 874 T tmp (m_value); in reset() 881 T tmp (m_value); in release()
|
/aoo4110/main/ridljar/com/sun/star/uno/ |
H A D | Enum.java | 37 private int m_value; field in Enum 45 m_value = value; in Enum() 54 return m_value; in getValue()
|
H A D | Union.java | 43 return m_value; in getValue() 46 protected Object m_value; field in Union
|
/aoo4110/main/javaunohelper/com/sun/star/comp/helper/ |
H A D | ComponentContextEntry.java | 43 public Object m_value; field in ComponentContextEntry 57 this.m_value = value; in ComponentContextEntry() 67 this.m_value = value; in ComponentContextEntry()
|
H A D | ComponentContext.java | 95 o = ((ComponentContextEntry)o).m_value; in ComponentContext() 175 entry.m_value = xInstance; in getValueByName() 196 return entry.m_value; in getValueByName() 246 o = ((ComponentContextEntry)o).m_value; in dispose()
|
/aoo4110/main/codemaker/source/cunomaker/ |
H A D | cunotype.cxx | 1407 if (constValue.m_value.aBool) in dumpConstantValue() 1420 o << "(sal_Int16)" << constValue.m_value.aShort; in dumpConstantValue() 1423 o << "(sal_uInt16)" << constValue.m_value.aUShort; in dumpConstantValue() 1426 o << "(sal_Int32)" << constValue.m_value.aLong; in dumpConstantValue() 1429 o << "(sal_uInt32)" << constValue.m_value.aULong; in dumpConstantValue() 1433 ::rtl::OString tmp( OString::valueOf(constValue.m_value.aHyper) ); in dumpConstantValue() 1445 ::rtl::OString tmp( OString::valueOf(constValue.m_value.aFloat) ); in dumpConstantValue() 1451 ::rtl::OString tmp( OString::valueOf(constValue.m_value.aDouble) ); in dumpConstantValue() 1457 ::rtl::OUString aUStr(constValue.m_value.aString); in dumpConstantValue() 3107 value = constValue.m_value.aLong; in dumpDeclaration() [all …]
|
/aoo4110/main/store/workben/ |
H A D | t_page.cxx | 897 T m_value; member 899 explicit ResourceHolder (T const & value = T()) : m_value (value) {} in ResourceHolder() 902 T & get() { return m_value; } in get() 903 T const & get() const { return m_value; } in get() 905 void set (T const & value) { m_value = value; } in set() 908 T tmp (m_value); in reset() 915 T tmp (m_value); in release()
|
/aoo4110/main/registry/inc/registry/ |
H A D | refltype.hxx | 52 RTConstValueUnion m_value; member in RTConstValue 58 m_value.aDouble = 0.0; in RTConstValue()
|
H A D | writer.hxx | 146 name.pData, typeName.pData, value.m_type, value.m_value)) in setFieldData()
|
H A D | reader.hxx | 353 m_handle, index, &v.m_type, &v.m_value)) in getFieldValue()
|
H A D | reflwrit.hxx | 284 ….pData, typeName.pData, doku.pData, fileName.pData, access, constValue.m_type, constValue.m_value); in setFieldData()
|
/aoo4110/main/codemaker/source/cppumaker/ |
H A D | cpputype.cxx | 1123 if (constValue.m_value.aBool) in dumpConstantValue() 1130 << sal::static_int_cast< sal_Int8 >(constValue.m_value.aByte); in dumpConstantValue() 1133 o << "(sal_Int16)" << constValue.m_value.aShort; in dumpConstantValue() 1136 o << "(sal_uInt16)" << constValue.m_value.aUShort; in dumpConstantValue() 1141 if (constValue.m_value.aLong == SAL_MIN_INT32) { in dumpConstantValue() 1144 o << "(sal_Int32)" << constValue.m_value.aLong; in dumpConstantValue() 1156 if (constValue.m_value.aHyper == SAL_MIN_INT64) { in dumpConstantValue() 1166 sal_uInt64 n = constValue.m_value.aUHyper; in dumpConstantValue() 1197 ::rtl::OUString aUStr(constValue.m_value.aString); in dumpConstantValue() 3524 value = constValue.m_value.aLong; in dumpDeclaration() [all …]
|
/aoo4110/main/codemaker/source/javamaker/ |
H A D | javatype.cxx | 896 cf->addIntegerInfo(fieldValue.m_value.aLong), rtl::OString()); in handleEnumType() 930 sal_Int32 value = reader.getFieldValue(i).m_value.aLong; in handleEnumType() 1004 code->loadIntegerConstant(reader.getFieldValue(i).m_value.aLong); in handleEnumType() 2424 valueIndex = classFile->addIntegerInfo(fieldValue.m_value.aBool); in addConstant() 2433 valueIndex = classFile->addIntegerInfo(fieldValue.m_value.aByte); in addConstant() 2442 valueIndex = classFile->addIntegerInfo(fieldValue.m_value.aShort); in addConstant() 2461 valueIndex = classFile->addIntegerInfo(fieldValue.m_value.aLong); in addConstant() 2471 static_cast< sal_Int32 >(fieldValue.m_value.aULong)); in addConstant() 2480 valueIndex = classFile->addLongInfo(fieldValue.m_value.aHyper); in addConstant() 2490 static_cast< sal_Int64 >(fieldValue.m_value.aUHyper)); in addConstant() [all …]
|