Searched refs:extensions (Results 1 - 25 of 30) sorted by relevance

12

/haiku/headers/tools/cppunit/cppunit/extensions/
H A DAutoRegisterSuite.h5 #include <cppunit/extensions/TestSuiteFactory.h>
6 #include <cppunit/extensions/TestFactoryRegistry.h>
H A DTestSuiteFactory.h4 #include <cppunit/extensions/TestFactory.h>
H A DTestSetUp.h4 #include <cppunit/extensions/TestDecorator.h>
H A DRepeatedTest.h5 #include <cppunit/extensions/TestDecorator.h>
H A DHelperMacros.h10 #include <cppunit/extensions/AutoRegisterSuite.h>
11 #include <cppunit/extensions/TestSuiteBuilder.h>
58 * #include <cppunit/extensions/HelperMacros.h>
155 * #include <cppunit/extensions/HelperMacros.h>
195 * #include <cppunit/extensions/HelperMacros.h>
H A DTestFactoryRegistry.h11 #include <cppunit/extensions/TestFactory.h>
H A DTestSuiteBuilder.h10 # include <cppunit/extensions/TypeInfoHelper.h>
/haiku/src/tools/cppunit/cppunit/
H A DTestSetUp.cpp1 #include <cppunit/extensions/TestSetUp.h>
H A DRepeatedTest.cpp1 #include <cppunit/extensions/RepeatedTest.h>
H A DTypeInfoHelper.cpp6 #include <cppunit/extensions/TypeInfoHelper.h>
H A DTestFactoryRegistry.cpp1 #include <cppunit/extensions/TestFactoryRegistry.h>
8 # include "cppunit/extensions/TypeInfoHelper.h"
/haiku/docs/develop/
H A Dconf.py11 # If extensions (or modules to document with autodoc) are in another directory,
39 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
41 extensions = [ variable
/haiku/src/tests/kits/storage/testapps/
H A Ddump_mime_types.cpp56 // extensions
57 BMessage extensions; local
58 if (mimeType.GetFileExtensions(&extensions) == B_OK) {
59 printf(" extensions: ");
62 extensions.FindString("extensions", k, &extension) == B_OK;
/haiku/src/libs/glut/
H A Dglut_ext.c22 static const GLubyte *extensions = NULL; local
31 if (!extensions) {
32 extensions = glGetString(GL_EXTENSIONS);
35 OpenGL extensions string. Don't be fooled by sub-strings,
37 start = extensions;
/haiku/src/tools/checkstyle/
H A Dcheckstyle.py40 extensions = [".cpp", ".h"]
52 if os.path.splitext(file)[1] in extensions:
/haiku/src/preferences/filetypes/
H A DExtensionWindow.cpp54 BMessage extensions; local
55 status_t status = type.GetFileExtensions(&extensions);
65 for (int32 i = 0; extensions.FindString("extensions", i,
90 newExtensions.AddString("extensions",
197 error_alert(B_TRANSLATE("Could not change file extensions"),
H A DFileTypesWindow.cpp766 BMessage extensions; local
767 if (fCurrentType.GetFileExtensions(&extensions) == B_OK) {
768 extensions.RemoveData("extensions", index);
769 fCurrentType.SetFileExtensions(&extensions);
1037 BMessage extensions;
1038 if (type->GetFileExtensions(&extensions) != B_OK)
1043 while (extensions.FindString("extensions", i++, &extension) == B_OK) {
/haiku/headers/private/storage/mime/
H A DAssociatedTypes.h39 status_t SetFileExtensions(const char *type, const BMessage *extensions);
52 std::map<std::string, std::set<std::string> > fFileExtensions; // mime type => set of associated file extensions
/haiku/src/kits/storage/mime/
H A DAssociatedTypes.cpp39 \brief Information about file extensions and their associated types
174 /*! \brief Sets the list of file extensions for the given type and
177 All listed extensions will including the given mime type in
180 All extensions previously but no longer associated with this
184 \param app The mime type whose associated file extensions you are setting
186 file extensions in its \c Mime::kExtensionsField field.
189 AssociatedTypes::SetFileExtensions(const char *type, const BMessage *extensions) argument
191 status_t err = type && extensions ? B_OK : B_BAD_VALUE;
197 // Make a copy of the previous extensions
201 // Read through the list of new extensions, creatin
243 BMessage extensions; local
[all...]
/haiku/headers/os/storage/
H A DMimeType.h103 status_t GetFileExtensions(BMessage* extensions) const;
112 status_t SetFileExtensions(const BMessage* extensions);
/haiku/headers/tools/cppunit/cppunit/
H A DTestCaller.h9 # include <cppunit/extensions/TypeInfoHelper.h>
/haiku/src/kits/storage/
H A DMimeType.cpp380 // Fetches the MIME type's associated filename extensions from the MIME
383 BMimeType::GetFileExtensions(BMessage* extensions) const
385 if (extensions == NULL)
391 *extensions);
542 // Sets the list of filename extensions associated with the MIME type
544 BMimeType::SetFileExtensions(const BMessage* extensions) argument
548 BMessage message(extensions ? B_REG_MIME_SET_PARAM : B_REG_MIME_DELETE_PARAM);
559 if (err == B_OK && extensions != NULL)
560 err = message.AddMessage("extensions", extensions);
[all...]
/haiku/src/servers/registrar/
H A DMIMEManager.cpp393 BMessage extensions; local
394 err = message->FindMessage("extensions", &extensions);
396 err = fDatabase.SetFileExtensions(type, &extensions);
/haiku/src/libs/compat/freebsd_network/compat/machine/x86_64/
H A Dcpufunc.h596 cpu_monitor(const void *addr, u_long extensions, u_int hints) argument
600 : : "a" (addr), "c" (extensions), "d" (hints));
604 cpu_mwait(u_long extensions, u_int hints) argument
607 __asm __volatile("mwait" : : "a" (hints), "c" (extensions));
/haiku/src/libs/compat/freebsd_network/compat/machine/x86/
H A Dcpufunc.h129 cpu_monitor(const void *addr, u_long extensions, u_int hints) argument
133 : : "a" (addr), "c" (extensions), "d" (hints));
137 cpu_mwait(u_long extensions, u_int hints) argument
140 __asm __volatile("mwait" : : "a" (hints), "c" (extensions));

Completed in 366 milliseconds

12