Home
last modified time | relevance | path

Searched refs:getFormatName (Results 1 – 25 of 332) sorted by relevance

12345678910>>...14

/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/studio/client/rmarkdown/model/
H A DRmdRenderResult.java98 public final String getFormatName() in getFormatName() method in RmdRenderResult
100 return getFormat().getFormatName(); in getFormatName()
133 return (isShinyDocument() || isHtml()) && getFormatName().endsWith( in isHtmlPresentation()
139 return (isShinyDocument() || isHtml()) && getFormatName().endsWith( in isHtmlDashboard()
162 getFormatName() == other.getFormatName(); in equals()
/dports/audio/carla/Carla-2.4.1/source/modules/juce_graphics/images/
H A Djuce_ImageFileFormat.h57 virtual String getFormatName() = 0;
158 String getFormatName() override;
190 String getFormatName() override;
216 String getFormatName() override;
/dports/devel/juce/JUCE-f37e9a1/modules/juce_graphics/images/
H A Djuce_ImageFileFormat.h57 virtual String getFormatName() = 0;
158 String getFormatName() override;
190 String getFormatName() override;
216 String getFormatName() override;
/dports/graphics/rigsofrods-caelum/ogre-caelum-0.6.3/main/src/
H A DDepthComposer.cpp326 PixelUtil::getFormatName (desiredFormat)); in DepthRenderer()
331 PixelUtil::getFormatName (equivFormat) + in DepthRenderer()
333 PixelUtil::getFormatName (desiredFormat)); in DepthRenderer()
337 PixelUtil::getFormatName(desiredFormat) + " or equivalent not supported", in DepthRenderer()
344 PixelUtil::getFormatName (requestFormat)); in DepthRenderer()
348 PixelUtil::getFormatName (requestFormat)); in DepthRenderer()
368 … " actual format " + PixelUtil::getFormatName (getDepthRenderTexture()->getFormat ()) + in DepthRenderer()
369 … " desired format " + PixelUtil::getFormatName (getDepthRenderTexture()->getDesiredFormat ())); in DepthRenderer()
/dports/databases/sqlitestudio/sqlitestudio-3.3.3/SQLiteStudio3/coreSQLiteStudio/services/
H A Dexportmanager.cpp30 formats << plugin->getFormatName(); in getAvailableFormats()
72 …Error(tr("Export plugin %1 doesn't support exporing query results.").arg(plugin->getFormatName())); in exportQueryResults()
98 … notifyError(tr("Export plugin %1 doesn't support exporing tables.").arg(plugin->getFormatName())); in exportTable()
122 …tifyError(tr("Export plugin %1 doesn't support exporing databases.").arg(plugin->getFormatName())); in exportDatabase()
147 if (plugin->getFormatName() == formatName) in getPluginForFormat()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_audio_processors/format_types/
H A Djuce_AudioUnitPluginFormat.h45 static String getFormatName() { return "AudioUnit"; } in getFormatName() function
46 String getName() const override { return getFormatName(); } in getName()
H A Djuce_LADSPAPluginFormat.h44 static String getFormatName() { return "LADSPA"; } in getFormatName() function
45 String getName() const override { return getFormatName(); } in getName()
H A Djuce_VST3PluginFormat.h53 static String getFormatName() { return "VST3"; } in getFormatName() function
54 String getName() const override { return getFormatName(); } in getName()
H A Djuce_VSTPluginFormat.h100 static String getFormatName() { return "VST"; } in getFormatName() function
101 String getName() const override { return getFormatName(); } in getName()
/dports/audio/carla/Carla-2.4.1/source/modules/juce_audio_processors/format_types/
H A Djuce_LADSPAPluginFormat.h44 static String getFormatName() { return "LADSPA"; } in getFormatName() function
45 String getName() const override { return getFormatName(); } in getName()
H A Djuce_AudioUnitPluginFormat.h45 static String getFormatName() { return "AudioUnit"; } in getFormatName() function
46 String getName() const override { return getFormatName(); } in getName()
H A Djuce_VST3PluginFormat.h53 static String getFormatName() { return "VST3"; } in getFormatName() function
54 String getName() const override { return getFormatName(); } in getName()
H A Djuce_VSTPluginFormat.h100 static String getFormatName() { return "VST"; } in getFormatName() function
101 String getName() const override { return getFormatName(); } in getName()
/dports/science/cdk/cdk-cdk-2.3/storage/io/src/test/java/org/openscience/cdk/io/
H A DWriterFactoryTest.java58 Assert.assertEquals(format.getFormatName(), writer.getFormat().getFormatName()); in testCreateWriter_IChemFormat()
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/extsrc/com/lightcrafts/mediax/jai/tilecodec/
H A DTileEncoderImpl.java101 if (param.getFormatName().equalsIgnoreCase(formatName) == false) { in TileEncoderImpl()
142 public String getFormatName() { in getFormatName() method in TileEncoderImpl
H A DTileDecoderImpl.java105 if (param.getFormatName().equalsIgnoreCase(formatName) == false) { in TileDecoderImpl()
179 public String getFormatName() { in getFormatName() method in TileDecoderImpl
/dports/devel/juce/JUCE-f37e9a1/modules/juce_audio_formats/format/
H A Djuce_AudioFormatManager.cpp42 if (af->getFormatName() == newFormat->getFormatName()) in registerFormat()
/dports/audio/libopenshot-audio/libopenshot-audio-0.2.2/JuceLibraryCode/modules/juce_audio_formats/format/
H A Djuce_AudioFormatManager.cpp43 if (af->getFormatName() == newFormat->getFormatName()) in registerFormat()
/dports/science/cdk/cdk-cdk-2.3/storage/ioformats/src/test/java/org/openscience/cdk/io/formats/
H A DResourceFormatTest.java59 Assert.assertNotNull(resourceFormat.getFormatName()); in testGetFormatName()
60 Assert.assertNotSame(0, resourceFormat.getFormatName().length()); in testGetFormatName()
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/extsrc/com/lightcrafts/media/jai/codec/
H A DImageCodec.java107 codecs.put(codec.getFormatName().toLowerCase(), codec); in registerCodec()
270 nameVec.add(codec.getFormatName()); in getDecoderNames()
276 nameVec.add(codec.getFormatName()); in getDecoderNames()
311 nameVec.add(codec.getFormatName()); in getEncoderNames()
324 public abstract String getFormatName(); in getFormatName() method in ImageCodec
/dports/biology/ugene/ugene-40.1/src/ugeneui/src/project_support/
H A DDocumentFormatSelectorController.cpp86 …text = tr("<b>%1</b> format. Score: %2 <i>(%3)</i>").arg(r.format->getFormatName()).arg(r.score())… in selectResult()
87 objName = r.format->getFormatName(); in selectResult()
141 const QString formatName = formatRegistry->getFormatById(id)->getFormatName(); in selectResult()
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Gui/src/util/
H A DDocumentFormatComboboxController.cpp43 combo->addItem(QIcon(), f->getFormatName(), f->getFormatId()); in sl_onDocumentFormatRegistered()
90 combo->addItem(QIcon(), fr->getFormatById(id)->getFormatName(), id); in fill()
/dports/science/cdk/cdk-cdk-2.3/base/interfaces/src/main/java/org/openscience/cdk/io/formats/
H A DIResourceFormat.java41 public String getFormatName(); in getFormatName() method
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Core/src/util/
H A DFormatters.cpp31 return documentFormat == nullptr ? documentFormatId : documentFormat->getFormatName(); in format()
/dports/cad/ldview/ldview-4.4/TCFoundation/
H A DTCImageOptions.h11 const char *getFormatName(void) const { return m_formatName.c_str(); } in getFormatName() function

12345678910>>...14