Home
last modified time | relevance | path

Searched refs:actual (Results 1 – 25 of 162) sorted by relevance

1234567

/trunk/main/qadevOOo/java/OOoRunner/src/main/java/complexlib/
H A DAssurance.java71 protected void assureEquals( boolean expected, boolean actual ) { in assureEquals() argument
72 assureEquals( "Equality test failed", expected, new Boolean( actual ), false ); in assureEquals()
81 protected void assureEquals( String message, boolean expected, boolean actual ) { in assureEquals() argument
82 assureEquals( message, expected, actual, false ); in assureEquals()
90 protected void assureEquals( byte expected, byte actual ) { in assureEquals() argument
91 assureEquals( "Equality test failed", new Byte( expected ), new Byte( actual ), false ); in assureEquals()
100 protected void assureEquals( String message, byte expected, byte actual ) { in assureEquals() argument
101 assureEquals( message, new Byte( expected ), new Byte( actual ), false ); in assureEquals()
109 protected void assureEquals( double expected, double actual ) { in assureEquals() argument
110 assureEquals( "Equality test failed", new Double( expected ), new Double( actual ), false ); in assureEquals()
[all …]
/trunk/test/testcommon/source/org/openoffice/test/common/
H A DGraphicsUtil.java358 public static boolean imageEquals(BufferedImage expected, BufferedImage actual) { in imageEquals() argument
359 if (expected == null || actual == null) in imageEquals()
362 if (expected.getHeight() != actual.getHeight() || expected.getWidth() != actual.getWidth()) in imageEquals()
367 if (expected.getRGB(x, y) != actual.getRGB(x, y)) in imageEquals()
383 BufferedImage expected = loadImage(expectedImage), actual = loadImage(actualImage); in imageEquals() local
384 return imageEquals(expected, actual); in imageEquals()
/trunk/main/javaunohelper/test/com/sun/star/lib/uno/helper/
H A DUnoUrlTest.java45 private void assertEquals(String expected, String actual) { in assertEquals() argument
46 if (!expected.equals(actual)) { in assertEquals()
47 fail("Expected: '"+ expected + "' but was: '"+actual+"'"); in assertEquals()
51 private void assertEquals(int expected, int actual) { in assertEquals() argument
52 if (expected != actual) { in assertEquals()
53 fail("Expected: "+ expected + " but was: "+actual); in assertEquals()
/trunk/test/testuno/source/fvt/uno/sw/page/
H A DCheckShadowFormat.java144 private void compare(String preDescription, ShadowFormat actual){ in compare() argument
145 …dowFormatProperty + "-->Location",this.shadowFormat.Location.getValue(), actual.Location.getValue(… in compare()
148 …wFormatProperty + "-->Width",(double)this.shadowFormat.ShadowWidth, (double)actual.ShadowWidth, 2); in compare()
149 …+ shadowFormatProperty + "-->IsTransparent",this.shadowFormat.IsTransparent, actual.IsTransparent); in compare()
150 …ls(preDescription + ":" + shadowFormatProperty + "-->Color",this.shadowFormat.Color, actual.Color); in compare()
H A DCheckPageLayout.java120 private void compare(String preDescription, PageStyleLayout actual){ in compare() argument
121 …scription + ":" + this.pageStyleLayoutProperty,this.pageStyleLayout.getValue(), actual.getValue()); in compare()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_stm/
H A DPump.java128 int actual = 0 ; in readBytes() local
132 actual = len ; in readBytes()
136 actual = str.length() ; in readBytes()
139 return actual; in readBytes()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_streams.uno/
H A DPump.java125 int actual = 0 ; in readBytes() local
129 actual = len ; in readBytes()
133 actual = str.length() ; in readBytes()
136 return actual; in readBytes()
/trunk/main/bridges/test/com/sun/star/lib/uno/bridges/java_remote/
H A DPolyStructTest.java189 private void assertEquals(Object expected, Object actual) { in assertEquals() argument
190 if (!(expected == null ? actual == null : expected.equals(actual))) in assertEquals()
193 "failed; expected " + expected + ", got " + actual). in assertEquals()
/trunk/main/stoc/test/uriproc/
H A Dtest_uriproc.cxx58 #define TEST_ASSERT_EQUAL(token1, token2, token3, expected, actual) \ argument
60 (actual) == (expected)) << \
62 token1, token2, token3, #expected, #actual, expected, actual). \
89 T4 const & actual) in createTestAssertEqualMessage() argument
104 append(buf, actual); in createTestAssertEqualMessage()
/trunk/main/udkapi/com/sun/star/beans/
H A DOptional.idl40 Marks this structure instance as having an actual value.
45 The actual value of this structure instance.
47 <p>If no actual value is present, a producer of such a structure instance
/trunk/main/udkapi/com/sun/star/registry/
H A DXRegistryKey.idl145 if the actual value is not of type long list.
172 if the actual value is not of type ascii.
200 if the actual value is not of type ascii list.
228 if the actual value is not of type string.
255 if the actual value is not of type string list.
281 if the actual value is not of type binary.
/trunk/main/offapi/com/sun/star/drawing/
H A DXCustomShapeHandle.idl46 /** is getting the actual handle position
49 a the actual handle position
/trunk/main/offapi/com/sun/star/chart2/data/
H A DXLabeledDataSequence.idl48 /** returns an <type>XDataSequence</type> containing the actual
53 /** sets a new <type>XDataSequence</type> containing the actual
/trunk/main/offapi/com/sun/star/i18n/
H A DParseResult.idl58 /** <type>KParseTokens</type> flags of first character of actual
67 actual token matched. */
/trunk/main/offapi/com/sun/star/accessibility/
H A DAccessibleContext.idl35 actual accessibility information of another UNO service. It exposes two
41 methods that provide access to the actual object's content. This can be
H A DXAccessible.idl45 class that is made accessible and the actual accessibility code into two
72 A reference to the object that contains the actual accessibility
/trunk/main/sw/qa/complex/writer/
H A DTextPortionEnumerationTest.java447 void doTest(TreeNode expected, TreeNode actual) in doTest() argument
450 assertEquals("__ROOT__", actual.getType()); in doTest()
452 m_StackActual.push(new Pair(actual, actual.createEnumeration())); in doTest()
507 TreeNode actual = m_BufferActual.get(lenActual - 1); in testTerminatingNode() local
510 boolean aRoot = actual.getType().equals("__ROOT__"); in testTerminatingNode()
514 else printUnexpected(actual); in testTerminatingNode()
520 testContentNode((ContentNode) expected, (ContentNode) actual); in testTerminatingNode()
526 private void testContentNode(ContentNode expected, ContentNode actual) in testContentNode() argument
529 String contentActual = actual.getContent(); in testContentNode()
530 if (!expected.equals(actual)) { in testContentNode()
[all …]
/trunk/main/offapi/com/sun/star/sdb/
H A DDocumentDefinition.idl41 <p>Note that the <code>DocumentDefinition</code> does not denote the actual document
43 but only a shortcut to access and load those actual documents.</p>
/trunk/extras/l10n/source/ca/
H A Dlocalize.sdf107 …K 0 ca L'objecte indicat no permet la configuració de llengua actual. 2020…
520 …ovar de desar-lo, o ignoreu el vostre propi bloqueig i deseu el document actual.\n\n …
572 …ODE_RES_MASK) 0 ca Acció no permesa: $(ARG1) és el directori actual. 202…
731 …ra vegada abans de poder utilitzar aquell producte. Aquesta instal·lació actual continuarà. …
1005 …Text OOO_CONTROL_7 0 ca {&MSSansBold8}Canvia la carpeta actual de destí …
1090 …Text OOO_CONTROL_115 0 ca {&MSSansBold8}Canvia la carpeta actual de destí …
1274 …ring DLG_SVT_EXPLORERFILE STR_ACTUALVERSION 50 ca Versió actual 2020…
1453 …grames es poden utilitzar per mostrar dades detallades sobre el registre actual de l'informe. Per …
3445actual del document.\n\nAixò podria ser resultat d'una manipulació del document o de danys estruct…
3446 …ó del document.\n\nRecomanem que no confieu en el contingut del document actual.\nL'execució de ma…
[all …]
/trunk/main/offapi/com/sun/star/rendering/
H A DXTextLayout.idl85 Depending on the underlying font technology, actual device output
211 @return the actual size of the text after the justification in
248 @return the actual size of the text after the justification,
/trunk/extras/l10n/source/pt/
H A Dlocalize.sdf520 … guardar novamente ou ignore o bloqueio do ficheiro e guarde o documento actual.\n\n …
523 … recente do %PRODUCTNAME. Pode conter funções não suportadas pela versão actual.\n\nClique em 'Act…
572 …& ERRCODE_RES_MASK) 0 pt Acção impossível: $(ARG1) é a pasta actual. 20200…
587 …L (ERRCODE_UUI_IO_NOTSUPPORTED & ERRCODE_RES_MASK) 0 pt O actual sistema operativo …
731 …a executar a instalação antes de utilizar esse produto. A sua instalação actual irá prosseguir. …
1005 …CONTROL_7 0 pt {&MSSansBold8}Alterar a pasta de destino actual 202004…
1090 …CONTROL_115 0 pt {&MSSansBold8}Alterar a pasta de destino actual 202004…
1274 …ring DLG_SVT_EXPLORERFILE STR_ACTUALVERSION 50 pt Versão actual 2020…
1453 … gráficos podem ser usados para mostrar dados detalhados sobre o registo actual do relatório. Pode…
1809 …0 pt 'Ajuda' mostra a Ajuda com informações adicionais sobre a página actual. 20…
[all …]
/trunk/main/offapi/com/sun/star/text/
H A DTextTable.idl89 <p>Note: The anchor of the actual implementation for text tables
222 … <p>As this is only a describing property the value of the actual table may vary depending on the
H A DBaseFrameProperties.idl339 /** returns the actual size of the object.
341 <p>Since to obtain the correct actual size of the object not only
/trunk/main/offapi/com/sun/star/inspection/
H A DLineDescriptor.idl97 … <p>This URL will be used to obtain an actual <type scope="com::sun::star::graphic">XGraphic</type>
142 … <p>This URL will be used to obtain an actual <type scope="com::sun::star::graphic">XGraphic</type>
/trunk/extras/l10n/source/ca-XV/
H A Dlocalize.sdf107 … 0 ca-XV L'objecte indicat no permet la configuració de llengua actual. 2020…
520 … de guardar-lo, o ignoreu el vostre propi bloqueig i guardeu el document actual.\n\n …
572 …RES_MASK) 0 ca-XV Acció no permesa: $(ARG1) és el directori actual. 202…
1005 … OOO_CONTROL_7 0 ca-XV {&MSSansBold8}Canvia la carpeta actual de destí …
1090 … OOO_CONTROL_115 0 ca-XV {&MSSansBold8}Canvia la carpeta actual de destí …
1274 … DLG_SVT_EXPLORERFILE STR_ACTUALVERSION 50 ca-XV Versió actual 2020…
1453 …grames es poden utilitzar per mostrar dades detallades sobre el registre actual de l'informe. Per …
3445actual del document.\n\nAixò podria ser resultat d'una manipulació del document o de danys estruct…
3446 …ó del document.\n\nRecomanem que no confieu en el contingut del document actual.\nL'execució de ma…
3448 … 0 ca-XV La funció no és possible: el camí conté el directori actual. 20…
[all …]

1234567