Home
last modified time | relevance | path

Searched refs:module (Results 1 – 25 of 3741) sorted by relevance

12345678910>>...150

/AOO41X/main/helpcontent2/helpers/
H A Dcreatemakefile.pl101 ($module = $package) =~ s/^\/*text\/([^\/]+)\/*.*$/$1/;
115 push @{$module}, $p2.'$/'.$n.'.xhp';
120 push @{$module}, $p2.'$/'.$n.'.xhp';
164 $module = "sbasic";
167 -add $module.cfg \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\
168 -add $module.tree \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\
169 -add $module.jar \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip
173 \$(PRJ)\$/source\$/auxiliary\$/LANGUAGE\$/$module.cfg \\
174 \$(COMMONMISC)\$/LANGUAGE\$/$module.tree \\
175 \$(COMMONBIN)\$/xhp_${module}_LANGUAGE.zip
[all …]
/AOO41X/main/solenv/bin/modules/installer/
H A Dxpdinstaller.pm121 my ( $module, $indent, $linkpackage ) = @_;
123 my $modulegid = $module->{'gid'};
126 if ( $module->{'ParentID'} ) { $parentgid = $module->{'ParentID'}; }
128 …if ( $module->{'XPDParentID'} ) { $parentgid = $module->{'XPDParentID'}; } # changing parent of "P…
141 my ( $module, $indent ) = @_;
146 if ( $module->{'Styles'} ) { $styles = $module->{'Styles'}; }
155 if ( $module->{'ParentID'} ) { $parentgid = $module->{'ParentID'}; }
221 my ( $module ) = @_;
225 if ( $module->{'Sortkey'} ) { $value = $module->{'Sortkey'}; }
236 my ( $module ) = @_;
[all …]
/AOO41X/main/offapi/com/sun/star/
H A Dmodules.idl26 module com { module sun { module star {
29 module auth {};
32 module awt {};
38 implemented can be found in other modules. The services in this module
63 module accessibility {};
66 module chart {};
68 /** New implementation of Charting diagram interfaces. This module
72 module chart2 {};
75 module configuration {};
78 module datatransfer {};
[all …]
/AOO41X/main/idlc/test/parser/
H A Dpublished.tests46 published module m {};
138 module com { module sun { module star { module uno {
145 module com { module sun { module star { module uno {
152 module com { module sun { module star { module uno {
159 module com { module sun { module star { module uno {
167 module com { module sun { module star { module uno {
174 module com { module sun { module star { module uno {
181 module com { module sun { module star { module uno {
188 module com { module sun { module star { module uno {
234 module com { module sun { module star { module uno {
[all …]
H A Dconstant.tests38 module m {
59 module m {
71 module m {
81 module m {
125 module m { const byte C = -129; };
129 module m { const byte C = -0201; };
133 module m { const byte C = -0x81; };
137 module m { const byte C = 256; };
141 module m { const byte C = 0400; };
145 module m { const byte C = 0x100; };
[all …]
H A Dconstructor.tests117 module com { module sun { module star { module test {
127 module com { module sun { module star { module test {
138 module com { module sun { module star { module test {
148 module com { module sun { module star { module test {
158 module com { module sun { module star { module test {
167 module com { module sun { module star { module uno {
177 module com { module sun { module star { module uno {
187 module com { module sun { module star { module uno {
/AOO41X/main/solenv/bin/
H A Dbuild.pl536 foreach my $module (keys %{$global_deps_hash_backup{$_}}) {
537 … if (defined ${$global_deps_hash_backup{$_}}{$module} && (!defined $build_is_finished{$module})) {
538 $single_module_dep_hash{$module}++;
552 my $module = shift;
553 return $build_list_paths{$module} if (defined $build_list_paths{$module});
554 my @possible_dirs = ($module, $module. '.lnk', $module. '.link');
555 return $build_list_paths{$module} if (defined $build_list_paths{$module});
562 $build_list_paths{$module} = $possible_build_list_path;
566 print_error("There's no build list for $module");
569 $dead_parents{$module}++;
[all …]
/AOO41X/main/sal/systools/win32/uwinapi/
H A Dmacros.h107 #define IMPLEMENT_THUNK( module, resolve, rettype, calltype, func, params ) \ argument
109 EXTERN_C _declspec( dllexport ) FARPROC module##_##func##_Ptr = (FARPROC)func##_Thunk; \
113 asm(" jmp *(%0)"::"m"(module##_##func##_Ptr)); \
119 …ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func, (FARPROC)func##_##resolve, …
122 asm(" jmp *(%0)"::"m"(module##_##func##_Ptr)); \
131 #define IMPLEMENT_THUNK( module, resolve, rettype, calltype, func, params ) \ argument
132 EXTERN_C _declspec( dllexport ) FARPROC module##_##func##_Ptr; \
137 …ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func, (FARPROC)func##_##resolve, …
138 _asm jmp [module##_##func##_Ptr] \
142 _asm jmp [module##_##func##_Ptr] \
[all …]
H A DUwinapi.h115 #define IMPLEMENT_THUNK( module, resolve, rettype, calltype, func, params ) \ argument
116 EXTERN_C _declspec( dllexport ) FARPROC module##_##func##_Ptr; \
121 …ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func, (FARPROC)func##_##resolve, …
122 _asm jmp [module##_##func##_Ptr] \
126 _asm jmp [module##_##func##_Ptr] \
128 EXTERN_C _declspec( dllexport ) FARPROC module##_##func##_Ptr = (FARPROC)func##_Thunk; \
146 #define DEFINE_CUSTOM_THUNK( module, resolve, rettype, calltype, func, params ) \ argument
147 EXTERN_C _declspec( dllexport ) FARPROC module##_##func##_Ptr; \
150 ResolveThunk_##resolve( &module##_##func##_Ptr, #module ".dll", #func ); \
151 _asm jmp [module##_##func##_Ptr] \
[all …]
/AOO41X/main/solenv/bin/modules/
H A DSourceConfig.pm153 my $module = shift;
154 if (defined ${$self->{MODULE_REPOSITORY}}{$module}) {
155 return ${$self->{MODULE_REPOSITORY}}{$module};
157 Carp::cluck("No such module $module in active repositories!!\n");
164 my $module = shift;
165 if (defined ${$self->{MODULE_PATHS}}{$module}) {
166 return ${$self->{MODULE_PATHS}}{$module};
168 Carp::cluck("No path for module $module in active repositories!!\n") if ($debug);
175 my $module = shift;
176 if (defined ${$self->{MODULE_BUILD_LIST_PATHS}}{$module}) {
[all …]
/AOO41X/main/qadevOOo/tests/java/complex/unoapi/
H A DCheckModuleAPI.java111 public void checkModule(String module) in checkModule() argument
113 log.println(utils.getDateTime() + ": start testing module '" + module + "'"); in checkModule()
126 final String sUnoapi = getModulePath(module); in checkModule()
146 assure("module '" + module + "' failed", verifyOutput(test), mContinue); in checkModule()
147 log.println(utils.getDateTime() + " module '" + module + "': kill existing office..."); in checkModule()
346 private String[] getDefinedModuleCommand(String module) in getDefinedModuleCommand() argument
350 if (module.indexOf(",") != -1) in getDefinedModuleCommand()
352 final String[] names = module.split(","); in getDefinedModuleCommand()
377 if (doesQaUnoApiFolderExist(mSRC_ROOT, module)) in getDefinedModuleCommand()
381 "checkModule(" + module + ")" in getDefinedModuleCommand()
[all …]
/AOO41X/main/udkapi/com/sun/star/
H A Dudk-modules.idl26 module com { module sun { module star {
29 module beans{};
32 module bridge {};
35 module connection {};
38 module container {};
41 module corba {};
44 module io {};
47 module java {};
50 module lang {};
53 module loader {};
[all …]
/AOO41X/main/oovbaapi/genconstidl/
H A Dapi-to-idl.pl92 my $module = shift( @destination );
95 $module =~ tr/[A-Z]/[a-z]/;
97 $result{$module} = {} unless exists $result{$module};
98 $result{$module}{$type} = [] unless exists $result{$module}{$type};
100 push( @{$result{$module}{$type}},
121 foreach $module ( keys %result ) {
122 foreach $type ( keys %{$result{$module}} ) {
126 if( $module eq "vba" ) {
127 print IDL "module ooo { module $module {\n";
130 print IDL "module ooo { module vba { module $module {\n";
[all …]
/AOO41X/main/offapi/com/sun/star/deployment/
H A DXUpdateInformationProvider.idl28 module com { module sun { module star { module container {
32 module com { module sun { module star { module task {
36 module com { module sun { module star { module xml { module dom {
40 module com { module sun { module star { module deployment {
/AOO41X/main/offapi/com/sun/star/sdb/
H A DDefinitionContainer.idl26 module com { module sun { module star { module container {
33 module com { module sun { module star { module util {
36 module com { module sun { module star { module lang {
40 module com { module sun { module star { module sdb {
H A DDocumentContainer.idl34 module com { module sun { module star { module lang {
38 module com { module sun { module star { module frame {
42 module com { module sun { module star { module container {
47 module com { module sun { module star { module sdb {
/AOO41X/main/offapi/com/sun/star/ui/
H A DModuleUIConfigurationManager.idl46 module com { module sun { module star { module ui {
49 configuration data of a module.
52 A module user interface configuratio manager supports two layers of configuration settings
54 1. Layer: A module default user interface configuration which describe all user interface
57 2. Layer: A module user interface configuration which only contains customized user interface
67 /** provides a function to initialize a module user interface configuration manager instance.
70 A module user interface configuration manager instance needs the following arguments as
74 contains the default module user interface configuration settings.</li>
76 contains the user-defined module user interface configuration settings.</li>
77 <li><b>ModuleIdentifier</b>string that provides the module identifier.</li>
[all …]
H A DXUIElementFactoryRegistration.idl49 module com { module sun { module star { module ui {
60 <li><b>Module</b>a string that identifies a single module of OpenOffice.</li>
94 … <li><b>Module</b>an optional string property that specifies to which module this factory is
113 … an optional module identifier. This value can remain empty, if a generic factory is requested.
114 …The module identifier can be retrieved from the <type scope="com::sun::star::frame">ModuleManager<…
135 …an optional module identifier that can be used to register a factory only for a single module. Thi…
136 …can remain empty if no special factory for a single module is needed. The module identifier can be…
161 …an optional module name that can be used to deregister a factory only for a single module. This va…
162 …can remain empty if not a module based factory should be deregisted. The module identifier can be …
/AOO41X/main/offapi/com/sun/star/xml/dom/events/
H A DXUIEvent.idl28 module com { module sun { module star { module xml { module dom { module views {
32 module com { module sun { module star { module xml { module dom { module events {
/AOO41X/main/l10ntools/scripts/
H A Dfast_merge.pl51 module => '$',
81 if( $_->module eq $reference->module && $_->dir eq $reference->dir )
149 return $a->module.$a->dir cmp $b->module.$b->dir;
169 $obj->module( $2 );
176 $obj->module( "" );
199 $obj->module( $2 );
206 $obj->module( "" );
210 return $obj , if( $obj->module eq $module_name )
239 my $localizeFile = $merge_dir."\\".$current[ 0 ]->module."\\".$current[ 0 ]->file;
284 $amodule=$elem->module;
[all …]
/AOO41X/main/offapi/com/sun/star/frame/
H A DXModuleManager.idl41 module com { module sun { module star { module frame {
52 @short identifies the given module.
55 to get more information about this module.
58 … is requested on the given module. Because all module service registrations must be unique
70 Such controller represent the module (in case no model exists).
74 A controller can be bound to a model. Then the model represent the module.
79 A model represent a module everytimes and can be used for
94 if the given module could not be identified.
95 Note: If the module represent a XFrame instance with does not contain
98 @return An identifier for the given module.
/AOO41X/main/qadevOOo/runner/helper/
H A DAPIDescGetter.java542 String module = null; in getFromClassPath() local
547 module = aEntry.substring(0, aEntry.indexOf('.')); in getFromClassPath()
552 module = aEntry.substring(0, aEntry.lastIndexOf('.')); in getFromClassPath()
565 java.net.URL url = this.getClass().getResource("/objdsc/" + module); in getFromClassPath()
570 "couldn't find module '" + module + "'"); in getFromClassPath()
586 String sStartModule = "/" + module + "/"; in getFromClassPath()
619 module + in getFromClassPath()
662 String module = null; in getFromDirectory() local
667 module = entry.substring(0, entry.indexOf('.')); in getFromDirectory()
672 module = entry.substring(0, entry.lastIndexOf('.')); in getFromDirectory()
[all …]
/AOO41X/main/offapi/com/sun/star/form/
H A Dmodules.idl26 module com { module sun { module star { module form {
31 module binding { };
35 module component { };
39 module control { };
45 module inspection { };
50 module runtime { };
54 module submission { };
59 module validation { };
/AOO41X/main/offapi/com/sun/star/sdbcx/
H A DContainer.idl26 module com { module sun { module star { module container {
32 module com { module sun { module star { module util {
36 module com { module sun { module star { module sdbcx {
/AOO41X/main/i18npool/source/isolang/
H A Dlangid.pl102 my( $regex, $path, $module, $name, @addregex) = @_;
110 if ("$path/$module/$name" eq "$SOLENVINC/i18npool/lang.h") {
111 $file = "./$module/inc/i18npool/lang.h"; }
113 $file = "./$module/$name"; }
117 $file = "$path/$module/$name";
121 $file = "$path/$module.lnk/$name";
124 $file = "$path/$module.link/$name";
374 my $module = "svx";
376 if (!(-e "$SRC_ROOT/$module/$name")) {
377 $module = "svtools";
[all …]

12345678910>>...150