Home
last modified time | relevance | path

Searched refs:getCodec (Results 1 – 25 of 466) sorted by relevance

12345678910>>...19

/dports/www/mediawiki137/mediawiki-1.37.1/tests/phpunit/unit/includes/json/
H A DJsonCodecTest.php22 private function getCodec(): JsonCodec { function in MediaWiki\\Tests\\Json\\JsonCodecTest
66 $this->getCodec()->unserialize( '{}', self::class );
72 $this->getCodec()->unserialize(
80 $this->assertNotNull( $this->getCodec()->unserialize(
84 $this->assertNotNull( $this->getCodec()->unserialize(
93 $superClassUnserialized = $this->getCodec()->unserialize( $json );
101 $superClassUnserialized = $this->getCodec()->unserialize( $json );
109 $superClassUnserialized = $this->getCodec()->unserialize( $json );
169 $this->assertSame( $result, $this->getCodec()
189 $this->getCodec()->serialize( $value );
[all …]
/dports/www/mediawiki136/mediawiki-1.36.3/tests/phpunit/unit/includes/json/
H A DJsonCodecTest.php22 private function getCodec(): JsonCodec { function in MediaWiki\\Tests\\Json\\JsonCodecTest
66 $this->getCodec()->unserialize( '{}', self::class );
72 $this->getCodec()->unserialize(
80 $this->assertNotNull( $this->getCodec()->unserialize(
84 $this->assertNotNull( $this->getCodec()->unserialize(
93 $superClassUnserialized = $this->getCodec()->unserialize( $json );
101 $superClassUnserialized = $this->getCodec()->unserialize( $json );
109 $superClassUnserialized = $this->getCodec()->unserialize( $json );
169 $this->assertSame( $result, $this->getCodec()
189 $this->getCodec()->serialize( $value );
[all …]
/dports/www/proxygen/proxygen-2021.12.27.00/proxygen/lib/http/session/test/
H A DHTTPDefaultSessionCodecFactoryTest.cpp27 auto codec = factory.getCodec( in TEST()
33 codec = factory.getCodec( in TEST()
42 codec = secondFactory.getCodec( in TEST()
48 codec = secondFactory.getCodec( in TEST()
56 codec = secondFactory.getCodec( in TEST()
68 auto codec = factory.getCodec( in TEST()
76 codec = factory.getCodec( in TEST()
90 factory.getCodec("http/1.1", TransportDirection::DOWNSTREAM, false); in TEST()
115 codec = factory.getCodec( in TEST()
128 codec = factory.getCodec( in TEST()
[all …]
/dports/devel/hadoop/hadoop-1.2.1/src/test/org/apache/hadoop/io/compress/
H A DTestCodecFactory.java125 CompressionCodec codec = factory.getCodec(new Path("/tmp/foo.bar")); in testFinding()
127 codec = factory.getCodec(new Path("/tmp/foo.gz")); in testFinding()
129 codec = factory.getCodec(new Path("/tmp/foo.bz2")); in testFinding()
132 codec = factory.getCodec(new Path("/tmp/foo.bar")); in testFinding()
134 codec = factory.getCodec(new Path("/tmp/foo.gz")); in testFinding()
136 codec = factory.getCodec(new Path("/tmp/foo.bz2")); in testFinding()
140 codec = factory.getCodec(new Path("/tmp/.foo.bar.gz")); in testFinding()
142 codec = factory.getCodec(new Path("/tmp/foo.bz2")); in testFinding()
144 codec = factory.getCodec(new Path("/tmp/foo.bar")); in testFinding()
146 codec = factory.getCodec(new Path("/tmp/foo/baz.foo.bar")); in testFinding()
[all …]
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/io/compress/
H A DTestCodecFactory.java150 codec = factory.getCodec(new Path("/tmp/foo.gz")); in testFinding()
165 codec = factory.getCodec(new Path("/tmp/foo.bz2")); in testFinding()
191 codec = factory.getCodec(new Path("/tmp/foo.bar")); in testFinding()
196 codec = factory.getCodec(new Path("/tmp/foo.gz")); in testFinding()
201 codec = factory.getCodec(new Path("/tmp/foo.bz2")); in testFinding()
206 codec = factory.getCodec(new Path("/tmp/foo.snappy")); in testFinding()
211 codec = factory.getCodec(new Path("/tmp/foo.lz4")); in testFinding()
223 codec = factory.getCodec(new Path("/tmp/foo.bz2")); in testFinding()
228 codec = factory.getCodec(new Path("/tmp/foo.bar")); in testFinding()
246 codec = factory.getCodec(new Path("/tmp/foo.foo")); in testFinding()
[all …]
/dports/www/proxygen/proxygen-2021.12.27.00/proxygen/lib/http/codec/test/
H A DDefaultHTTPCodecFactoryTest.cpp23 auto codec = factory.getCodec("spdy/3.1", TransportDirection::UPSTREAM, true); in TEST()
27 codec = factory.getCodec( in TEST()
32 codec = factory.getCodec("http/1.1", TransportDirection::UPSTREAM, true); in TEST()
36 codec = factory.getCodec("", TransportDirection::UPSTREAM, true); in TEST()
40 codec = factory.getCodec("not/supported", TransportDirection::UPSTREAM, true); in TEST()
53 auto codec = factory.getCodec( in TEST_P()
71 codec = factory.getCodec("http/1.1", TransportDirection::DOWNSTREAM, true); in TEST_P()
/dports/www/proxygen/proxygen-2021.12.27.00/proxygen/lib/http/codec/
H A DHQMultiCodec.h78 getCodec(streamId).setResumeHook(std::move(hook));
162 getCodec(stream).generateHeader(
172 getCodec(stream).generatePushPromise(
181 return getCodec(stream).generateBody( in generateBody()
188 return getCodec(stream).generateTrailers(writeBuf, stream, trailers); in generateTrailers()
192 return getCodec(stream).generateEOM(writeBuf, stream); in generateEOM()
219 return getCodec(currentStream_); in getCurrentCodec()
223 return getCodec(currentStream_); in getCurrentCodec()
226 HQStreamCodec& getCodec(StreamID stream) { in getCodec() function
232 const HQStreamCodec& getCodec(StreamID stream) const { in getCodec() function
H A DHTTPCodecFactory.h29 virtual std::unique_ptr<HTTPCodec> getCodec(const std::string& protocolHint,
33 static std::unique_ptr<HTTPCodec> getCodec(CodecProtocol protocol,
/dports/databases/hbase/hbase-1.2.1/hbase-common/src/main/java/org/apache/hadoop/hbase/io/compress/
H A DCompression.java112 CompressionCodec getCodec(Configuration conf) { in getCodec() method
139 DefaultCodec getCodec(Configuration conf) { in getCodec() method
160 DefaultCodec getCodec(Configuration conf) { in getCodec() method
191 CompressionCodec getCodec(Configuration conf) { in getCodec() method
218 CompressionCodec getCodec(Configuration conf) { in getCodec() method
253 abstract CompressionCodec getCodec(Configuration conf); in getCodec() method in Compression.Algorithm
258 CompressionCodec codec = getCodec(conf); in createDecompressionStream()
295 CompressionCodec codec = getCodec(conf); in createPlainCompressionStream()
301 CompressionCodec codec = getCodec(conf); in getCompressor()
325 CompressionCodec codec = getCodec(conf); in getDecompressor()
/dports/net/ooni-probe-cli/probe-cli-3.10.1/internal/engine/internal/sessionresolver/
H A Dcodec_test.go26 if r := reso.getCodec(); r != c {
37 data, err := reso.getCodec().Encode(in)
42 if err := reso.getCodec().Decode(data, &out); err != nil {
/dports/graphics/ogre3d/ogre-1.11.6/OgreMain/src/
H A DOgreCodec.cpp50 Codec* Codec::getCodec(const String& extension) in getCodec() function in Ogre::Codec
73 Codec* Codec::getCodec(char *magicNumberPtr, size_t maxbytes) in getCodec() function in Ogre::Codec
88 return getCodec(ext); in getCodec()
/dports/graphics/ogre3d19/sinbad-ogre-dd30349ea667/OgreMain/src/
H A DOgreCodec.cpp53 Codec* Codec::getCodec(const String& extension) in getCodec() function in Ogre::Codec
76 Codec* Codec::getCodec(char *magicNumberPtr, size_t maxbytes) in getCodec() function in Ogre::Codec
91 return getCodec(ext); in getCodec()
/dports/java/jgraphx/jgraphx-4.2.2/src/com/mxgraph/io/
H A DmxCodec.java280 mxObjectCodec enc = mxCodecRegistry.getCodec(name); in encode()
331 mxObjectCodec codec = mxCodecRegistry.getCodec(node.getNodeName()); in decode()
406 .getCodec(node.getNodeName()); in decodeCell()
417 decoder = mxCodecRegistry.getCodec(child.getNodeName()); in decodeCell()
422 decoder = mxCodecRegistry.getCodec(name); in decodeCell()
428 decoder = mxCodecRegistry.getCodec(name); in decodeCell()
/dports/devel/hadoop/hadoop-1.2.1/src/core/org/apache/hadoop/io/file/tfile/
H A DCompression.java102 CompressionCodec getCodec() throws IOException { in LZO() method
163 synchronized CompressionCodec getCodec() { in GZ() method
213 CompressionCodec getCodec() { in NONE() method
259 abstract CompressionCodec getCodec() throws IOException; in getCodec() method in Compression.Algorithm
272 CompressionCodec codec = getCodec(); in getCompressor()
302 CompressionCodec codec = getCodec(); in getDecompressor()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/io/file/tfile/
H A DCompression.java102 CompressionCodec getCodec() throws IOException { in LZO() method
163 CompressionCodec getCodec() { in GZ() method
213 CompressionCodec getCodec() { in NONE() method
259 abstract CompressionCodec getCodec() throws IOException; in getCodec() method in Compression.Algorithm
272 CompressionCodec codec = getCodec(); in getCompressor()
306 CompressionCodec codec = getCodec(); in getDecompressor()
/dports/net/sems/sems-f89581a/core/
H A DAmAudioFile.cpp38 codec = getCodec(); in AmAudioFileFormat()
52 codec = getCodec(); in AmAudioFileFormat()
62 amci_codec_t* AmAudioFileFormat::getCodec() in getCodec() function in AmAudioFileFormat
68 return AmAudioFormat::getCodec(); in getCodec()
78 codec = getCodec(); in setSubtypeId()
335 (*iofmt->on_close)(fp,&fmt_desc,open_mode, fmt->getHCodecNoInit(), fmt->getCodec()); in on_close()
H A DAmAudio.cpp61 codec = getCodec(); in ArgBlob()
133 getCodec();
136 amci_codec_t* AmAudioFormat::getCodec() in AmArg()
149 getCodec(); in AmArg()
370 amci_codec_t* codec = fmt->getCodec();
392 amci_codec_t* codec = fmt->getCodec();
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonzlib/
H A Davicodecrestrictions.cpp10 HIC getCodec(const std::wstring &codecName, int &bpp) { in getCodec() function
91 HIC hic = getCodec(codecName, bpp); in getRestrictions()
159 HIC hic = getCodec(codecName, bpp); in canWriteMovie()
175 HIC hic = getCodec(codecName, bpp); in canBeConfigured()
191 HIC hic = getCodec(codecName, bpp); in openConfiguration()
/dports/finance/skrooge/skrooge-2.26.1/plugins/import/skrooge_import_csv/
H A Dskgimportplugincsv.cpp158 if (!m_importer->getCodec().isEmpty()) { in setCSVMapping()
159 stream.setCodec(m_importer->getCodec().toLatin1().constData()); in setCSVMapping()
212 if (!m_importer->getCodec().isEmpty()) { in setCSVHeaderIndex()
213 stream.setCodec(m_importer->getCodec().toLatin1().constData()); in setCSVHeaderIndex()
313 if (!m_importer->getCodec().isEmpty()) { in importFile()
314 stream.setCodec(m_importer->getCodec().toLatin1().constData()); in importFile()
808 if (!m_importer->getCodec().isEmpty()) { in exportFile()
809 out.setCodec(m_importer->getCodec().toLatin1().constData()); in exportFile()
859 if (!m_importer->getCodec().isEmpty()) { in importCSVUnit()
860 stream.setCodec(m_importer->getCodec().toLatin1().constData()); in importCSVUnit()
[all …]
/dports/multimedia/avidemux-qt5/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/qtScript/src/
H A DAudioProperties.h20 QScriptValue getCodec(void);
38 Q_PROPERTY(QScriptValue /*% String %*/ format READ getCodec);
/dports/multimedia/avidemux-cli/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/qtScript/src/
H A DAudioProperties.h20 QScriptValue getCodec(void);
38 Q_PROPERTY(QScriptValue /*% String %*/ format READ getCodec);
/dports/multimedia/avidemux/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/qtScript/src/
H A DAudioProperties.h20 QScriptValue getCodec(void);
38 Q_PROPERTY(QScriptValue /*% String %*/ format READ getCodec);
/dports/multimedia/avidemux-plugins/avidemux_2.7.6/avidemux_plugins/ADM_scriptEngines/qtScript/src/
H A DAudioProperties.h20 QScriptValue getCodec(void);
38 Q_PROPERTY(QScriptValue /*% String %*/ format READ getCodec);
/dports/devel/atlas-devel/Atlas-C++-0.6.4/tools/
H A Datlas_convert.cpp23 Atlas::Codec * getCodec(std::string type, std::iostream &stream, Atlas::Message::DecoderBase& decod… in getCodec() function
68 Atlas::Codec *inCodec = getCodec(codec_in, in, decoder); in convert()
76 Atlas::Codec * outCodec = getCodec(codec_out, out, decoder); in convert()
/dports/finance/skrooge/skrooge-2.26.1/plugins/import/skrooge_import_json/
H A Dskgimportpluginjson.cpp54 if (!m_importer->getCodec().isEmpty()) { in exportFile()
55 stream.setCodec(m_importer->getCodec().toLatin1().constData()); in exportFile()

12345678910>>...19