Home
last modified time | relevance | path

Searched defs:value (Results 1 – 25 of 446) sorted by relevance

12345678910>>...18

/trunk/main/connectivity/java/dbtools/src/org/apache/openoffice/comp/sdbc/dbtools/util/
H A DORowSetValue.java44 private Object value; field in ORowSetValue
314 char value = 0; in fill() local
323 String value = ""; in fill() local
332 float value = 0.0f; in fill() local
359 short value = 0; in fill() local
368 short value = 0; in fill() local
378 int value = 0; in fill() local
387 int value = 0; in fill() local
397 long value = 0; in fill() local
406 long value = 0; in fill() local
[all …]
H A DDBTypeConversion.java37 public static double safeParseDouble(String value) { in safeParseDouble()
45 public static float safeParseFloat(String value) { in safeParseFloat()
53 public static int safeParseInt(String value) { in safeParseInt()
61 public static long safeParseLong(String value) { in safeParseLong()
69 public static float unsignedLongToFloat(long value) { in unsignedLongToFloat()
77 public static double unsignedLongToDouble(long value) { in unsignedLongToDouble()
85 public static int toUnsignedInt(byte value) { in toUnsignedInt()
89 public static int toUnsignedInt(short value) { in toUnsignedInt()
93 public static String toUnsignedString(int value) { in toUnsignedString()
97 public static String toUnsignedString(long value) { in toUnsignedString()
[all …]
/trunk/main/cppu/inc/com/sun/star/uno/
H A DAny.hxx50 inline Any::Any( T const & value ) in Any()
58 inline Any::Any( bool value ) in Any()
180 inline Any SAL_CALL makeAny( const C & value ) SAL_THROW( () ) in makeAny()
188 inline Any SAL_CALL makeAny( bool const & value ) SAL_THROW( () ) in makeAny()
196 inline void SAL_CALL operator <<= ( Any & rAny, const C & value ) SAL_THROW( () ) in operator <<=()
206 inline void SAL_CALL operator <<= ( Any & rAny, bool const & value ) in operator <<=()
217 inline sal_Bool SAL_CALL operator >>= ( const Any & rAny, C & value ) SAL_THROW( () ) in operator >>=()
247 inline sal_Bool SAL_CALL operator >>= ( Any const & rAny, bool & value ) in operator >>=()
261 inline sal_Bool SAL_CALL operator == ( Any const & rAny, bool const & value ) in operator ==()
509 inline sal_Bool SAL_CALL operator >>= ( const Any & rAny, Any & value ) SAL_THROW( () ) in operator >>=()
[all …]
/trunk/main/jurt/java/jurt/src/main/java/com/sun/star/lib/uno/protocols/urp/
H A DMarshal.java50 public void write8Bit(int value) { in write8Bit()
58 public void write16Bit(int value) { in write16Bit()
201 private void writeByteValue(Byte value) { in writeByteValue()
205 private void writeShortValue(Short value) { in writeShortValue()
209 private void writeLongValue(Integer value) { in writeLongValue()
213 private void writeHyperValue(Long value) { in writeHyperValue()
221 private void writeFloatValue(Float value) { in writeFloatValue()
229 private void writeDoubleValue(Double value) { in writeDoubleValue()
260 private void writeTypeValue(Type value) { in writeTypeValue()
270 private void writeAnyValue(Object value) { in writeAnyValue()
[all …]
H A DUnmarshal.java334 Object value = readSequenceValue(type); in readAnyValue() local
360 Object value = readStructValue(type); in readAnyValue() local
370 Object value = readInterfaceValue(type); in readAnyValue() local
389 Object value = Array.newInstance( in readSequenceValue() local
415 Object value; in readStructValue() local
428 Exception value; in readExceptionValue() local
467 private void readFields(TypeDescription type, Object value) { in readFields()
/trunk/main/vos/inc/vos/
H A Dstream.hxx197 inline sal_Bool OStream::write(sal_Int32 value) in write()
202 inline sal_Bool OStream::write(sal_Int16 value) in write()
207 inline sal_Bool OStream::write(sal_Char value) in write()
212 inline sal_Bool OStream::write(sal_uInt8 value) in write()
222 inline const OStream& operator>> (OStream& rStream, sal_Int32& value) in operator >>()
229 inline const OStream& operator>> (OStream& rStream, sal_Int16& value) in operator >>()
243 inline const OStream& operator>> (OStream& rStream, sal_Char& value) in operator >>()
250 inline OStream& operator<< (OStream& rStream, sal_Int32 value) in operator <<()
257 inline OStream& operator<< (OStream& rStream, sal_Int16 value) in operator <<()
264 inline OStream& operator<< (OStream& rStream, sal_uInt8 value) in operator <<()
[all …]
/trunk/main/javainstaller2/src/JavaSetup/org/openoffice/setup/SetupData/
H A DProductDescription.java44 public Pair(Pattern key, String value) { in Pair()
172 String value = section.getValue(); in parse() local
182 String value = section.getValue(); in parse() local
191 String value = section.getValue(); in parse() local
200 String value = section.getValue(); in parse() local
209 String value = section.getValue(); in parse() local
217 String value = section.getValue(); in parse() local
227 String value = section.getValue(); in parse() local
238 String value = section.getValue(); in parse() local
247 String value = section.getValue(); in parse() local
[all …]
/trunk/main/xmerge/java/xmerge/src/main/java/org/openoffice/xmerge/util/
H A DEndianConverter.java48 public static byte[] writeShort (short value) { in writeShort()
66 public static byte[] writeInt (int value) { in writeInt()
88 public static byte[] writeDouble(double value) { in writeDouble()
117 public static short readShort (byte[] value) { in readShort()
139 public static int readInt(byte[] value) { in readInt()
161 public static double readDouble(byte[] value) { in readDouble()
H A DTwipsConverter.java42 public static float twips2cm(int value) { in twips2cm()
60 public static int cm2twips(float value) { in cm2twips()
74 public static float twips2inches(int value) { in twips2inches()
89 public static int inches2twips(float value) { in inches2twips()
/trunk/main/odk/examples/DevelopersGuide/Forms/
H A DNumericValidator.java42 double value = ((Double)Value).doubleValue(); in explainInvalid() local
61 double value = ((Double)Value).doubleValue(); in isValid() local
76 private boolean isProperRange( double value) in isProperRange()
81 private boolean isProperDigitCount( double value) in isProperDigitCount()
H A DTextValidator.java42 String value = (String)Value; in explainInvalid() local
59 String value = (String)Value; in isValid() local
72 private boolean isProperChunks( String value ) in isProperChunks()
77 private boolean containsZs( String value ) in containsZs()
/trunk/main/forms/qa/integration/forms/
H A DTextValidator.java43 String value = (String)Value; in explainInvalid() local
60 String value = (String)Value; in isValid() local
73 private boolean isProperChunks( String value ) in isProperChunks()
78 private boolean containsZs( String value ) in containsZs()
H A DNumericValidator.java43 double value = ((Double)Value).doubleValue(); in explainInvalid() local
62 double value = ((Double)Value).doubleValue(); in isValid() local
77 private boolean isProperRange( double value) in isProperRange()
82 private boolean isProperDigitCount( double value) in isProperDigitCount()
/trunk/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/
H A DJavaSQLStatementBase.java230 private synchronized void setCursorName(String value) throws WrappedTargetException { in setCursorName()
248 private synchronized void setEscapeProcessing(boolean value) throws WrappedTargetException { in setEscapeProcessing()
268 private synchronized void setFetchDirection(int value) throws WrappedTargetException { in setFetchDirection()
287 private synchronized void setFetchSize(int value) throws WrappedTargetException { in setFetchSize()
306 private synchronized void setMaxFieldSize(int value) throws WrappedTargetException { in setMaxFieldSize()
324 private synchronized void setMaxRows(int value) throws WrappedTargetException { in setMaxRows()
342 private synchronized void setQueryTimeOut(int value) throws WrappedTargetException { in setQueryTimeOut()
360 private synchronized void setResultSetConcurrency(int value) throws WrappedTargetException { in setResultSetConcurrency()
382 private synchronized void setResultSetType(int value) throws WrappedTargetException { in setResultSetType()
/trunk/main/binaryurp/source/
H A Dmarshal.cxx59 void write64(std::vector< unsigned char > * buffer, sal_uInt64 value) { in write64()
70 void writeCompressed(std::vector< unsigned char > * buffer, sal_uInt32 value) { in writeCompressed()
80 std::vector< unsigned char > * buffer, rtl::OUString const & value) in writeString()
109 void Marshal::write8(std::vector< unsigned char > * buffer, sal_uInt8 value) { in write8()
114 void Marshal::write16(std::vector< unsigned char > * buffer, sal_uInt16 value) { in write16()
119 void Marshal::write32(std::vector< unsigned char > * buffer, sal_uInt32 value) { in write32()
128 css::uno::TypeDescription const & type, BinaryAny const & value) in writeValue()
139 css::uno::TypeDescription const & value) in writeType()
198 css::uno::TypeDescription const & type, void const * value) in writeValue()
/trunk/main/configmgr/source/
H A Dwritemodfile.cxx173 void writeValueContent(oslFileHandle handle, sal_Bool value) { in writeValueContent()
181 void writeValueContent(oslFileHandle handle, sal_Int16 value) { in writeValueContent()
185 void writeValueContent(oslFileHandle handle, sal_Int32 value) { in writeValueContent()
189 void writeValueContent(oslFileHandle handle, sal_Int64 value) { in writeValueContent()
193 void writeValueContent(oslFileHandle handle, double value) { in writeValueContent()
197 void writeValueContent(oslFileHandle handle, rtl::OUString const & value) { in writeValueContent()
235 void writeValueContent( in writeValueContent()
248 oslFileHandle handle, css::uno::Any const & value) in writeSingleValue()
258 oslFileHandle handle, css::uno::Any const & value) in writeListValue()
273 oslFileHandle handle, css::uno::Any const & value) in writeItemListValue()
[all …]
H A Dvalueparser.cxx57 bool parseHexDigit(char c, int * value) { in parseHexDigit()
74 bool parseValue(xmlreader::Span const & text, sal_Bool * value) { in parseValue()
91 bool parseValue(xmlreader::Span const & text, sal_Int16 * value) { in parseValue()
110 bool parseValue(xmlreader::Span const & text, sal_Int32 * value) { in parseValue()
125 bool parseValue(xmlreader::Span const & text, sal_Int64 * value) { in parseValue()
140 bool parseValue(xmlreader::Span const & text, double * value) { in parseValue()
147 bool parseValue(xmlreader::Span const & text, rtl::OUString * value) { in parseValue()
153 bool parseValue( in parseValue()
371 css::uno::Any value; in endElement() local
/trunk/main/sax/source/tools/
H A Dfshelper.cxx151 FastSerializerHelper* FastSerializerHelper::write(const char* value) in write()
156 FastSerializerHelper* FastSerializerHelper::write(const rtl::OUString& value) in write()
162 FastSerializerHelper* FastSerializerHelper::write(sal_Int32 value) in write()
167 FastSerializerHelper* FastSerializerHelper::write(sal_Int64 value) in write()
172 FastSerializerHelper* FastSerializerHelper::write(float value) in write()
177 FastSerializerHelper* FastSerializerHelper::write(double value) in write()
182 FastSerializerHelper* FastSerializerHelper::writeEscaped(const char* value) in writeEscaped()
187 FastSerializerHelper* FastSerializerHelper::writeEscaped(const ::rtl::OUString& value) in writeEscaped()
/trunk/main/scripting/java/org/openoffice/netbeans/modules/office/options/
H A DOfficeSettings.java102 public void setWarnBeforeDocDeploy(boolean value) { in setWarnBeforeDocDeploy()
110 public void setWarnBeforeParcelDelete(boolean value) { in setWarnBeforeParcelDelete()
118 public void setWarnAfterDirDeploy(boolean value) { in setWarnAfterDirDeploy()
126 public void setWarnBeforeMount(boolean value) { in setWarnBeforeMount()
/trunk/main/toolkit/source/controls/grid/
H A Dgridcolumn.cxx107 …void SAL_CALL GridColumn::setIdentifier(const ::com::sun::star::uno::Any & value) throw (::com::su… in setIdentifier()
121 …void SAL_CALL GridColumn::setColumnWidth(::sal_Int32 value) throw (::com::sun::star::uno::RuntimeE… in setColumnWidth()
134 …void SAL_CALL GridColumn::setMaxWidth(::sal_Int32 value) throw (::com::sun::star::uno::RuntimeExce… in setMaxWidth()
147 …void SAL_CALL GridColumn::setMinWidth(::sal_Int32 value) throw (::com::sun::star::uno::RuntimeExce… in setMinWidth()
160 …void SAL_CALL GridColumn::setTitle(const ::rtl::OUString & value) throw (::com::sun::star::uno::Ru… in setTitle()
173 void SAL_CALL GridColumn::setHelpText( const ::rtl::OUString & value ) throw (RuntimeException) in setHelpText()
186 …void SAL_CALL GridColumn::setResizeable(sal_Bool value) throw (::com::sun::star::uno::RuntimeExcep… in setResizeable()
/trunk/main/wizards/com/sun/star/wizards/ui/event/
H A DDataAwareFields.java53 public static DataAware.Value getFieldValueFor(Object owner, String fieldname, Object value) in getFieldValueFor()
156 public void set(Object value, Object target) in set()
216 public void set(Object value, Object target) in set()
276 public void set(Object value, Object target) in set()
347 public void set(Object value, Object target) in set()
410 public void set(Object value, Object target) in set()
423 private static double toDouble(Object value) in toDouble()
447 private static boolean toBoolean(Object value) in toBoolean()
H A DUnoDataAware.java51 protected UnoDataAware(Object dataObject, Value value, Object unoObject_, String unoPropName_) in UnoDataAware()
64 protected void enableControls(Object value) in enableControls()
77 protected void setToUI(Object value) in setToUI()
83 private String stringof(Object value) in stringof()
111 protected Boolean getBoolean(Object value) in getBoolean()
149 …ing prop, Object unoText, final Listener listener, String unoProperty, boolean field, Object value) in attachTextControl()
/trunk/main/basebmp/inc/basebmp/
H A Daccessor.hxx59 void set(V const& value, Iterator const& i) const in set()
65 void set(V const& value, Iterator const& i, Difference const& diff) const in set()
100 void set(V const& value, Iterator const& i) const in set()
106 void set(V const& value, Iterator const& i, Difference const& diff) const in set()
/trunk/main/vcl/unx/gtk/a11y/
H A Datkvalue.cxx69 value_wrapper_get_current_value( AtkValue *value, in value_wrapper_get_current_value()
83 value_wrapper_get_maximum_value( AtkValue *value, in value_wrapper_get_maximum_value()
97 value_wrapper_get_minimum_value( AtkValue *value, in value_wrapper_get_minimum_value()
111 value_wrapper_set_current_value( AtkValue *value, in value_wrapper_set_current_value()
/trunk/main/testtools/source/servicetests/
H A DTestService.java70 public void setProp1(int value) { in setProp1()
120 public void setProp6(int value) { in setProp6()
152 public void setProp7(int value) /*throws OptionalPropertyException*/ { in setProp7()
172 public void setProp8Long(int value) /*throws OptionalPropertyException*/ in setProp8Long()

Completed in 102 milliseconds

12345678910>>...18