/trunk/main/oox/inc/oox/helper/ |
H A D | binaryinputstream.hxx | 85 void readValue( Type& ornValue ); 91 inline Type readValue() { Type nValue; readValue( nValue ); return nValue; } in readValue() function in oox::BinaryInputStream 97 inline sal_Int8 readInt8() { return readValue< sal_Int8 >(); } in readInt8() 98 inline sal_uInt8 readuInt8() { return readValue< sal_uInt8 >(); } in readuInt8() 99 inline sal_Int16 readInt16() { return readValue< sal_Int16 >(); } in readInt16() 100 inline sal_uInt16 readuInt16() { return readValue< sal_uInt16 >(); } in readuInt16() 101 inline sal_Int32 readInt32() { return readValue< sal_Int32 >(); } in readInt32() 103 inline sal_Int64 readInt64() { return readValue< sal_Int64 >(); } in readInt64() 105 inline float readFloat() { return readValue< float >(); } in readFloat() 106 inline double readDouble() { return readValue< double >(); } in readDouble() [all …]
|
/trunk/main/binaryurp/source/ |
H A D | reader.cxx | 266 unmarshal.readValue(t).getValue(t))); in readMessage() 295 unmarshal.readValue( in readMessage() 311 unmarshal.readValue( in readMessage() 418 ret = unmarshal.readValue( in readReplyMessage() 478 ret = unmarshal.readValue( in readReplyMessage() 492 ret = unmarshal.readValue( in readReplyMessage() 497 unmarshal.readValue( in readReplyMessage()
|
H A D | unmarshal.cxx | 289 BinaryAny Unmarshal::readValue(css::uno::TypeDescription const & type) { in readValue() function in binaryurp::Unmarshal 356 return readValue(t); in readValue() 511 as.push_back(readValue(ctd)); in readSequence() 555 readValue(css::uno::TypeDescription(ctd->ppTypeRefs[i]))); in readMemberValues()
|
H A D | unmarshal.hxx | 72 BinaryAny readValue(com::sun::star::uno::TypeDescription const & type);
|
/trunk/main/registry/workben/ |
H A D | regtest.cxx | 107 sal_Char* readValue; in main() local 113 readValue = (sal_Char*)rtl_allocateMemory(valueSize); in main() 114 if (reg_getValue(hKey2, OUString().pData, readValue)) in main() 122 << "\n\tvalue = " << readValue << "\n\n"; in main() 124 rtl_freeMemory(readValue); in main()
|
/trunk/main/registry/test/ |
H A D | testregcpp.cxx | 505 sal_Char* readValue; in test_registry_CppApi() local 508 readValue = (sal_Char*)rtl_allocateMemory(valueSize); in test_registry_CppApi() 509 REG_ENSURE(!key2.getValue(OUString(), readValue), "test_registry_CppApi error 10"); in test_registry_CppApi() 513 REG_ENSURE(strcmp(readValue, Value) == 0, "test_registry_CppApi error 13"); in test_registry_CppApi() 514 rtl_freeMemory(readValue); in test_registry_CppApi()
|
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/ |
H A D | urp.java | 417 unmarshal.readValue( in readRequest() 421 args[i] = unmarshal.readValue((TypeDescription) inSig[i]); in readRequest() 458 ? null : unmarshal.readValue(resultType); in readReply() 464 unmarshal.readValue( in readReply()
|
H A D | Unmarshal.java | 135 public Object readValue(TypeDescription type) { in readValue() method in Unmarshal 393 Array.set(value, i, readValue(ctype)); in readSequenceValue() 473 readValue( in readFields()
|
/trunk/main/xmerge/java/pocketword/src/main/java/org/openoffice/xmerge/converter/xml/sxw/pocketword/ |
H A D | PocketWordDocument.java | 115 int readValue = docData.read(preamble); in read() local 117 if(readValue == -1) { in read()
|
/trunk/main/oox/source/xls/ |
H A D | biffhelper.cxx | 273 …sal_Int32 nCharCount = b32BitLen ? rStrm.readValue< sal_Int32 >() : rStrm.readValue< sal_Int16 >(); in readString()
|
H A D | biffinputstream.cxx | 519 readValue( nFlags ); in jumpToNextStringContinue()
|
/trunk/main/oox/source/helper/ |
H A D | binaryinputstream.cxx | 58 for( sal_uInt8 nChar = readuInt8(); !mbEof && (nChar > 0); readValue( nChar ) ) in readNulCharArray() 71 for( sal_uInt16 nChar = readuInt16(); !mbEof && (nChar > 0); readValue( nChar ) ) in readNulUnicodeArray()
|
/trunk/main/oox/inc/oox/xls/ |
H A D | biffinputstream.hxx | 268 inline BiffInputStream& operator>>( Type& ornValue ) { readValue( ornValue ); return *this; } in operator >>()
|
/trunk/main/oox/inc/oox/ole/ |
H A D | axbinaryreader.hxx | 76 inline Type readAligned() { align( sizeof( Type ) ); return readValue< Type >(); } in readAligned()
|
/trunk/main/oox/source/ole/ |
H A D | axbinaryreader.cxx | 264 sal_uInt16 nBlockSize = maInStrm.readValue< sal_uInt16 >(); in AxBinaryPropertyReader()
|
/trunk/main/jurt/java/jurt/src/test/java/com/sun/star/lib/uno/protocols/urp/ |
H A D | Marshaling_Test.java | 226 Object op2 = unmarshal.readValue(dataTypes[i]); in test()
|