Home
last modified time | relevance | path

Searched refs:a (Results 226 – 250 of 8170) sorted by relevance

12345678910>>...327

/trunk/main/offapi/com/sun/star/text/
H A DTextSection.idl9 * with the License. You may obtain a copy of the License at
65 /** A <type>TextSection</type> is a range of complete paragraphs within a text.
67 <p>The content of the section may be the content of a link into another
68 document, a link from the same document, or the result of a DDE
87 /** This property contains a conditional expression.
113 /** specifies the source of a file link in the document that is
116 <p>The source may be a text section or a bookmark.
125 /** specifies the type of the command string for a DDE operation.
137 <p>The element can be i.e. a name of a cell in a sheet or a bookmark.</p>
213 /** determines the numbering type of the endnote numbering as a value of
[all …]
/trunk/main/accessibility/java/java_uno_accessbridge/src/main/java/org/openoffice/accessibility/
H A DWindowsAccessBridgeAdapter.java125 Accessible a = null; in getAccessibleWrapper() local
134 if (a != null) { in getAccessibleWrapper()
135 a = new ListProxy(a.getAccessibleContext()); in getAccessibleWrapper()
164 return a; in getAccessibleWrapper()
180 if (a != null) { in registerTopWindow()
181 Object[] args = { a, hwnd }; in registerTopWindow()
183 frameMap.put(hwnd, a); in registerTopWindow()
211 if (a != null) { in revokeTopWindow()
212 Object[] args = { a, hwnd }; in revokeTopWindow()
232 if (a instanceof PopupWindow) { in revokeTopWindow()
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/graphical/
H A DPostscriptCreator.java61 a.startTime(PerformanceContainer.AllTime); in checkOneFile()
64 a.startTime(PerformanceContainer.OfficeStart); in checkOneFile()
66 a.stopTime(PerformanceContainer.OfficeStart); in checkOneFile()
73 a.startTime(PerformanceContainer.Load); in checkOneFile()
75 a.stopTime(PerformanceContainer.Load); in checkOneFile()
77 a.startTime(PerformanceContainer.Print); in checkOneFile()
79 a.stopTime(PerformanceContainer.Print); in checkOneFile()
83 a.startTime(PerformanceContainer.OfficeStop); in checkOneFile()
85 a.stopTime(PerformanceContainer.OfficeStop); in checkOneFile()
87 a.stopTime(PerformanceContainer.AllTime); in checkOneFile()
[all …]
/trunk/main/cppuhelper/test/
H A Dtestproptyphlp.cxx35 Any a; in testPropertyTypeHelper() local
37 a <<= ( sal_Int8 ) 25; in testPropertyTypeHelper()
40 convertPropertyValue( i , a ); in testPropertyTypeHelper()
44 convertPropertyValue( i16 , a ); in testPropertyTypeHelper()
48 convertPropertyValue( i8 , a ); in testPropertyTypeHelper()
52 convertPropertyValue( i32 , a ); in testPropertyTypeHelper()
56 convertPropertyValue( d , a ); in testPropertyTypeHelper()
60 convertPropertyValue( f , a ); in testPropertyTypeHelper()
69 a <<= prop; in testPropertyTypeHelper()
77 a <<= prop.Name; in testPropertyTypeHelper()
[all …]
/trunk/extras/l10n/source/pt-BR/
H A Dlocalize.sdf31289 …cifica a entrada da caixa de listagem a ser marcada como a entrada padrão.\</ahelp\>Especifica a e…
34284 …ceite a licença para continuar.Você deve percorrer as páginas da licença até o fim do texto antes …
37084 …lp par_id3152869 83 0 pt-BR Seta para a esquerda ou para a direita: anda uma posição para a esqu…
37085 …d3151000 84 0 pt-BR Ctrl+Seta para a esquerda ou Ctrl+Seta para a direita: salta para a divisão …
42865 …rmato numérico com três seções, a primeira seção aplica-se a valores positivos, a segunda seção a
46442 … 0 help par_id6201666 0 pt-BR Leia a licença. Se você aceitar a licença, clique em Aceitar para…
47145 …1276589 0 pt-BR Você verá a janela de entrada do Math e a janela Elementos. Se não puder ver a
47195 …ext\smath\guide\align.xhp 0 help par_id3153246 7 0 pt-BR a+a+a+{} newline {}{}{}{}{}a+a+a+a 2…
53564a ação para a célula na página da guia \<emph\>Alerta de erro\</emph\> e fechar a caixa de diálogo…
57783 …0 0 pt-BR \<emph\>Posição\</emph\> (opcional) é a posição no texto a partir da qual a pesquisa c…
[all …]
/trunk/main/svl/source/misc/
H A Dinethist.cxx155 void heapsort (hash_entry a[], sal_uInt16 n);
260 hash_entry h = a[k]; in downheap()
264 if (((i + 1) < n) && (a[i] < a[i + 1])) i++; in downheap()
265 if (!(h < a[i])) break; in downheap()
266 a[k] = a[i]; in downheap()
269 a[k] = h; in downheap()
280 downheap (a, n, k - 1); in heapsort()
284 h = a[0 ]; in heapsort()
285 a[0 ] = a[n - 1]; in heapsort()
286 a[n - 1] = h; in heapsort()
[all …]
/trunk/main/offapi/com/sun/star/sdbc/
H A DXSQLData.idl9 * with the License. You may obtain a copy of the License at
44 This interface must be implemented by a service that is
47 are called by the driver and are never called by a programmer
65 if a database access error occurs.
79 by calling a method of the input stream to read each
89 for a Distinct Type, read its single data element;
90 for a Structured Type, read a value for each attribute of the SQL type.
104 if a database access error occurs.
124 for a Distinct Type, write its single data element;
125 for a Structured Type, write a value for each attribute of the SQL type.
[all …]
/trunk/main/comphelper/inc/comphelper/
H A DInlineContainer.hxx47 explicit MakeSequence(const T &a) in MakeSequence() argument
50 this->operator[](0) = a; in MakeSequence()
52 MakeSequence& operator()(const T &a) in operator ()() argument
72 explicit MakeVector(const T &a) in MakeVector() argument
73 : ::std::vector< T >(1, a) in MakeVector()
76 MakeVector &operator()(const T &a) in operator ()() argument
78 this->push_back(a); in operator ()()
95 explicit MakeSet(const T &a) in MakeSet() argument
98 this->insert(this->end(), a); in MakeSet()
100 MakeSet &operator()(const T &a) in operator ()() argument
[all …]
/trunk/main/offapi/com/sun/star/ui/
H A DXAcceleratorConfiguration.idl9 * with the License. You may obtain a copy of the License at
106 <li>by a generic service, which can execute commands if a
126 /** modify or create a key - command - binding.
206 /** optimized function to map a list of commands to a corresponding
210 It provides a fast mapping, which is e.g. needed by a menu or toolbar implementation.
211 E.g. a sub menu is described by a list of commands - and the implementation of the menu
219 is bound to a command - a selection is done inside this method.
230 a list of commands
239 It can't be checked, if a command is valid -
276 /** specifies a persistence interface which supports to
[all …]
H A DModuleUICommandDescription.idl9 * with the License. You may obtain a copy of the License at
37 /** a service which provides information about the user interface commands of
38 a single module.
43 that are part of a single OpenOffice.org module, like Writer or Calc.
54 An implementation must provide a <type scope="com::sun::star::uno">Sequence</type> which
56 entries a defined:
58 … <li><b>Label</b><br>a string which specifies the short name of the user interface command with
60 can directly be used to set the text of a menu item.</li>
63 <li><b>Popup</b><br>a boolean which specifies if the user interface command is a unique
64 … identifer for a popup menu. A popup menu has a label, but is not bound to a command.</li>
[all …]
/trunk/main/scaddins/source/analysis/
H A Danalysis.src362 Text [ en-US ] = "Returns a number rounded to a specified multiple";
612 Text [ en-US ] = "Converts a binary number to a decimal number";
630 Text [ en-US ] = "Converts a binary number to a hexadecimal number";
732 Text [ en-US ] = "Converts a decimal number to a binary number";
760 Text [ en-US ] = "Converts a decimal number to a hexadecimal number";
816 Text [ en-US ] = "Converts a hexadecimal number to a binary number";
844 Text [ en-US ] = "Converts a hexadecimal number to a decimal number";
964 Text [ en-US ] = "Tests whether a number is greater than a threshold value";
2517 Text [ en-US ] = "Converts a price expressed as a decimal into a price expressed as a fraction";
2545 Text [ en-US ] = "Converts a price expressed as a fraction into a price expressed as a decimal";
[all …]
/trunk/main/xmlsecurity/test_docs/CAs/Root_11/demoCA/newcerts/
H A D1004.pem15 00:c9:ff:37:16:4d:7a:ad:59:bd:f2:c4:dc:4f:79:
16 6a:f6:21:c7:ef:cd:af:f1:39:34:24:92:f4:46:d3:
19 7a:61:fa:fa:fe:eb:c8:30:c4:73:5f:77:f2:fc:42:
20 b7:10:29:ac:9e:8a:c2:df:25:9b:44:17:05:a3:39:
21 d9:1b:58:62:fb:2c:86:07:f7:f0:28:7b:5a:38:1b:
23 ae:39:2a:5e:02:d0:b5:38:07
36 bb:f6:61:ae:30:94:3a:4a:d6:d5:cb:b5:50:bb:ca:0e:ab:9f:
38 06:f8:6c:41:c2:5a:95:53:47:7e:a7:73:c9:45:4f:6b:30:fc:
39 fd:17:9a:7b:a9:d8:27:57:a9:fd:8d:e7:7e:4b:3e:98:11:42:
40 00:39:1a:55:4b:3d:a5:de:75:3c:43:5a:33:10:d3:cf:4e:04:
[all …]
H A D1016.pem15 00:cd:22:93:9a:93:18:34:2f:50:e0:cc:23:f4:60:
16 bc:96:60:d5:a5:f9:da:45:9a:5b:a3:0a:fb:71:25:
21 fa:19:01:67:93:09:48:0a:67:ec:4d:12:47:37:6f:
22 c2:53:0e:c9:7a:30:ec:1d:9d:a5:e2:64:d8:92:4d:
36 16:aa:a6:b7:0e:e3:d2:ba:7e:9b:59:f6:cc:ce:5d:4d:2a:f2:
39 3a:b4:9c:c0:6f:95:2c:4f:d8:b3:3b:cf:69:ab:3c:41:3a:43:
40 1b:0a:8b:b0:b4:aa:8b:bf:6f:96:e2:65:4a:00:3a:49:bc:9a:
42 5c:6b:49:14:8a:23:b5:b6:4f:b6:41:d0:a7:16:7c:67:4c:b3:
43 0a:88
/trunk/main/xmlsecurity/test_docs/CAs/Sub_CA_1_Root_7/demoCA/newcerts/
H A D1001.pem16 60:60:4e:46:26:27:9a:70:4d:34:89:cf:cb:4f:4f:
17 0b:22:6e:e4:21:e6:ab:c9:0a:4a:c4:cd:6f:3c:db:
18 e8:a3:52:55:2d:26:1d:13:9a:8b:cf:38:25:4e:4f:
19 4a:e3:39:01:fa:5b:10:a5:3e:e1:93:65:19:ca:8b:
20 5c:9f:e8:19:ed:0a:ef:47:e9:11:73:28:ce:b0:95:
21 10:3a:ce:b5:46:89:79:a3:90:ea:d5:ca:ac:c9:af:
23 61:83:82:c5:95:5a:62:ff:67
37 4a:57:08:6a:66:af:b4:05:4f:b3:4c:39:23:2b:5d:c9:88:7b:
38 6f:b5:28:a3:5a:72:e6:0b:e2:9e:64:65:ce:8f:b5:31:0f:5f:
39 c7:b7:56:96:4f:d3:34:65:1a:ea:84:60:2b:fe:27:1f:75:fd:
[all …]
/trunk/main/offapi/com/sun/star/awt/
H A DFontUnderline.idl9 * with the License. You may obtain a copy of the License at
47 /** specifies underlining with a single line.
53 /** specifies underlining with a double line.
59 /** specifies underlining with a dotted line.
71 /** specifies underlining with a dashed line.
83 /** specifies underlining with a dash and dot sequence.
95 /** specifies underlining with a small wave.
101 /** specifies underlining with a wave.
107 /** specifies underlining with a double wave.
113 /** specifies underlining with a bold line.
[all …]
/trunk/main/framework/source/uiconfiguration/
H A Dwindowstateconfiguration.cxx335 if ( a == Any() ) in getByName()
338 return a; in getByName()
372 if ( a == Any() ) in hasByName()
483 Any a; in insertByName() local
533 if ( a >>= xNameAccess ) in replaceByName()
691 if ( a >>= bValue ) in impl_insertCacheAndReturnSequence()
761 a <<= aPos; in impl_insertCacheAndReturnSequence()
802 if ( a >>= aValue ) in impl_insertCacheAndReturnSequence()
814 if ( a >>= nValue ) in impl_insertCacheAndReturnSequence()
1423 Any a; in getByName() local
[all …]
/trunk/main/configmgr/source/
H A DREADME9 # with the License. You may obtain a copy of the License at
80 - A set member can be marked as "mandatory," meaning that a member of that name
81 must always be present in a set.
83 - The above definition implies that calling replaceByName on a mandatory set
93 locale, though acting much like a set, does not support mandatory members.
104 getMandatory is called on a member of a true set to decide whether to forbid
109 the "mandatory" flag was added by a concurrent modification of a lower layer).
111 modification of a lower layer) mandatory nodes (but still recorded in
113 removed again---whether or not that is a good idea).
148 "modify/fuse": a modify or a fuse on an existing member
[all …]
/trunk/extras/l10n/source/br/
H A Dlocalize.sdf3500 …n of a resource like a file in a file system, typically inside a network environment. A URL consis…
4914 …0 help par_id3145069 2 0 br Reads a record from a relative file, or a sequence of bytes from a b…
5045 …3020204.xhp 0 help par_id3154909 2 0 br Writes a record to a relative file or a sequence of byte…
12279 …15 0 br \<emph\>value\</emph\> is a number, a reference to a cell containing a number, or a form…
16682a database or a spreadsheet between applications. Each line in a Text CSV file represents a record…
24717a numbered list when you press Enter at the end of a line that starts with a number followed by a
26180a field from the field list of a table or query to a form, drag a cell into the form. In a text do…
40652 …e\text\smath\guide\align.xhp 0 help par_id3153246 7 0 br a+a+a+{} newline {}{}{}{}{}a+a+a+a 2…
43645 …763 18 0 br To create a numbered list, type a number followed by a period (.), followed by a spa…
46739 …re several ways to create a table in a text document. You can insert a table from a toolbar, throu…
[all …]
/trunk/main/svx/inc/svx/
H A Dsvdsob.hxx63 void Set(sal_uInt8 a) in Set() argument
65 aData[a/8] |= 1<<a%8; in Set()
68 void Clear(sal_uInt8 a) in Clear() argument
70 aData[a/8] &= ~(1<<a%8); in Clear()
73 void Set(sal_uInt8 a, sal_Bool b) in Set() argument
76 Set(a); in Set()
78 Clear(a); in Set()
81 sal_Bool IsSet(sal_uInt8 a) const in IsSet()
83 return (aData[a/8] & 1<<a%8) != 0; in IsSet()
/trunk/main/desktop/test/deployment/dependencies/
H A Dreadme.txt9 # with the License. You may obtain a copy of the License at
25 broken-dependencies.oxt contains a malformed description.xml and should thus
28 double-dependencies.oxt contains a description.xml with two dependencies
35 OOo 2.1 or later); version21ns.oxt is the same, but with a different way of
38 contains a dependency on OOo 2.2 (and should thus only install in OOo 2.2 or
39 later). version23.oxt contains a dependency on OOo 2.3 (and should thus only
40 install in OOo 2.3 or later). version10000.oxt contains a dependency on the
53 minimal-version attribute is specified). bad-minmaxversion.oxt contains a
54 minimal version dependency on OOo 3.2 and a maximal version dependency on
57 minattr22.oxt contains a (hypothetical, most probably never satisfied)
[all …]
/trunk/main/offapi/com/sun/star/script/
H A DXLibraryContainerPassword.idl9 * with the License. You may obtain a copy of the License at
54 by a password.
56 If a library with the this name doesn't exist a
68 If a library with the this name doesn't exist a
71 If the library exists but isn't password protected a
83 If a library with the this name doesn't exist a
86 If the library exists but isn't password protected a
89 If the library password is already verified a
118 If the library exists and is password protected and a
119 wrong OldPassword is passed to the method a
[all …]
/trunk/main/offapi/com/sun/star/chart2/
H A DXChartTypeTemplate.idl9 * with the License. You may obtain a copy of the License at
53 /** Creates a new diagram based upon the given data .
56 This data source will be interpreted in a chart-type
62 range. The properties should be defined in a separate
84 creates a new diagram based on these series.
105 <p>Ideally a <member>matchesTemplate</member> call for the
110 This data source will be interpreted in a chart-type
118 range. The properties should be defined in a separate
153 a diagram that was created using
191 a single data series to which a style will be applied
[all …]
/trunk/extras/l10n/source/ast/
H A Dlocalize.sdf11758 …pagedlg.src 0 radiobutton RID_SCPAGE_TABLE BTN_TOPDOWN 142 ast D'a~rriba a abaxo, a mandrecha …
26735 …020204.xhp 0 help par_id3154909 2 0 ast Writes a record to a relative file or a sequence of byte…
29183 … help par_id3145069 2 0 ast Reads a record from a relative file, or a sequence of bytes from a b…
32086a field from the field list of a table or query to a form, drag a cell into the form. In a text do…
40581a numbered list when you press Enter at the end of a line that starts with a number followed by a
47193 …\text\smath\guide\align.xhp 0 help par_id3153246 7 0 ast a+a+a+{} newline {}{}{}{}{}a+a+a+a 2…
53917a text file format that you can use to exchange data from a database or a spreadsheet between appl…
57760 … \<emph\>Value\</emph\> is a number, a reference to a cell containing a number, or a form…
62904 …re several ways to create a table in a text document. You can insert a table from a toolbar, throu…
63584 …t.xhp 0 help par_idN1060E 0 ast You can select a table in a text document with a keyboard or wi…
[all …]
/trunk/main/instsetoo_native/inc_ooolangpack/windows/msi_templates/
H A D_Validat.idt36 AppSearch Property N Identifier The property associated with a Signature
77 CompLocator Type Y 0 1 A boolean value that determines if the registry value is a filename or a
105 ControlEvent Argument N Formatted A value to be used as a modifier when triggering a particula…
132 … AnyPath The path on the user system. This is a either a subpath below the value of the Parent…
135 …ile DestFolder Y Identifier Name of a property whose value is assumed to resolve to the full …
159 …Optional key of a parent record in the same table. If the parent is not selected, then the record …
161 Feature Title Y Text Short text identifying a visible feature item.
191 …Y 0 2 An integer value that determines if the .INI value read is a filename or a directory loc…
365a unique file signature and is also the foreign key in the Signature table. If the type is 0, the …
366 …Y 0 18 An integer value that determines if the registry value is a filename or a directory loc…
[all …]
/trunk/main/instsetoo_native/inc_openoffice/windows/msi_templates/
H A D_Validat.idt36 AppSearch Property N Identifier The property associated with a Signature
77 CompLocator Type Y 0 1 A boolean value that determines if the registry value is a filename or a
105 ControlEvent Argument N Formatted A value to be used as a modifier when triggering a particula…
132 … AnyPath The path on the user system. This is a either a subpath below the value of the Parent…
135 …ile DestFolder Y Identifier Name of a property whose value is assumed to resolve to the full …
159 …Optional key of a parent record in the same table. If the parent is not selected, then the record …
161 Feature Title Y Text Short text identifying a visible feature item.
191 …Y 0 2 An integer value that determines if the .INI value read is a filename or a directory loc…
365a unique file signature and is also the foreign key in the Signature table. If the type is 0, the …
366 …Y 0 18 An integer value that determines if the registry value is a filename or a directory loc…
[all …]

Completed in 3886 milliseconds

12345678910>>...327