| /AOO41X/main/registry/tools/ |
| H A D | regcompare.cxx | 415 fprintf(stdout, "%s", constValue.m_value.aBool ? "TRUE" : "FALSE"); in printConstValue() 418 fprintf(stdout, "%d", constValue.m_value.aByte); in printConstValue() 421 fprintf(stdout, "%d", constValue.m_value.aShort); in printConstValue() 424 fprintf(stdout, "%d", constValue.m_value.aUShort); in printConstValue() 429 sal::static_int_cast< long >(constValue.m_value.aLong)); in printConstValue() 435 constValue.m_value.aULong)); in printConstValue() 442 fprintf(stdout, "%f", constValue.m_value.aFloat); in printConstValue() 445 fprintf(stdout, "%f", constValue.m_value.aDouble); in printConstValue() 451 constValue.m_value.aString, RTL_TEXTENCODING_UTF8). in printConstValue() 479 if (constValue1.m_value.aBool != constValue2.m_value.aBool) in checkConstValue() [all …]
|
| /AOO41X/main/registry/source/ |
| H A D | reflwrit.cxx | 216 } m_value; member 277 size += (rtl_ustr_getLength(m_value.aConst.aString) + 1) * sizeof(sal_uInt16); in getBlopSize() 280 size += strlen(m_value.aUtf8) + 1; in getBlopSize() 303 buff += writeBYTE(buff, (sal_uInt8) m_value.aConst.aBool); in toBlop() 306 buff += writeBYTE(buff, m_value.aConst.aByte); in toBlop() 309 buff += writeINT16(buff, m_value.aConst.aShort); in toBlop() 312 buff += writeINT16(buff, m_value.aConst.aUShort); in toBlop() 315 buff += writeINT32(buff, m_value.aConst.aLong); in toBlop() 318 buff += writeUINT32(buff, m_value.aConst.aULong); in toBlop() 321 buff += writeUINT64(buff, m_value.aConst.aHyper); in toBlop() [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()
|
| /AOO41X/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()
|
| /AOO41X/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() 106 aConst.m_value.aHyper = -100000000; in test_coreReflection() 112 aConst.m_value.aUHyper = 100000000; in test_coreReflection() 118 aConst.m_value.aFloat = -2e-10f; in test_coreReflection() 124 …aConst.m_value.aDouble = -2e-100; writer.setFieldData(9, OUString::createFromAscii("aConstDouble")… in test_coreReflection() [all …]
|
| /AOO41X/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() 148 return Any( &rVal.m_value.aShort, ::getCppuType( (const sal_Int16 *)0 ) ); in getRTValue() 150 return Any( &rVal.m_value.aUShort, ::getCppuType( (const sal_uInt16 *)0 ) ); in getRTValue() 152 return Any( &rVal.m_value.aLong, ::getCppuType( (const sal_Int32 *)0 ) ); in getRTValue() [all …]
|
| /AOO41X/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()
|
| /AOO41X/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()
|
| /AOO41X/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()
|
| /AOO41X/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()
|
| /AOO41X/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() 685 ::rtl::OString tmp( OString::valueOf((sal_Int64)constValue.m_value.aUHyper) ); 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() [all …]
|
| /AOO41X/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()
|
| /AOO41X/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
|
| /AOO41X/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()
|
| /AOO41X/main/codemaker/source/cunomaker/ |
| H A D | cunotype.cxx | 1407 if (constValue.m_value.aBool) in dumpConstantValue() 1415 snprintf(tmp, sizeof(tmp), "0x%x", (sal_Int8)constValue.m_value.aByte); 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() 1439 ::rtl::OString tmp( OString::valueOf((sal_Int64)constValue.m_value.aUHyper) ); 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() [all …]
|
| /AOO41X/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()
|
| /AOO41X/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()
|
| /AOO41X/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() 1150 static_cast< sal_Int64 >(constValue.m_value.aULong)).getStr() in dumpConstantValue() 1156 if (constValue.m_value.aHyper == SAL_MIN_INT64) { in dumpConstantValue() 1159 ::rtl::OString tmp(OString::valueOf(constValue.m_value.aHyper)); in dumpConstantValue() 1166 sal_uInt64 n = constValue.m_value.aUHyper; in dumpConstantValue() [all …]
|
| /AOO41X/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() 2452 valueIndex = classFile->addIntegerInfo(fieldValue.m_value.aUShort); 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() [all …]
|