HomeSort by relevance Sort by last modified time
    Searched refs:Encode (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/openfst/src/script/
encode.cc 19 #include <fst/encode.h>
20 #include <fst/script/encode.h>
25 void Encode(MutableFstClass *ofst, uint32 flags, bool reuse_encoder,
29 Apply<Operation<EncodeArgs> >("Encode", ofst->ArcType(), &args);
32 REGISTER_FST_OPERATION(Encode, StdArc, EncodeArgs);
33 REGISTER_FST_OPERATION(Encode, LogArc, EncodeArgs);
34 REGISTER_FST_OPERATION(Encode, Log64Arc, EncodeArgs);
  /external/chromium/net/tools/flip_server/
spdy_util.cc 15 // Encode the URL.
25 filename = UrlToFilenameEncoder::Encode(
28 filename = UrlToFilenameEncoder::Encode(uri, method + "_/", false);
  /external/openfst/src/include/fst/script/
encode.h 24 #include <fst/encode.h>
33 void Encode(EncodeArgs *args) {
40 ? EncodeMapper<Arc>::Read(coder_fname, ENCODE)
41 : new EncodeMapper<Arc>(flags, ENCODE);
43 Encode(ofst, encoder);
50 void Encode(MutableFstClass *fst, uint32 flags, bool reuse_encoder,
  /external/skia/legacy/src/utils/
SkBase64.h 27 Base64 encodes src into dst. encode is a pointer to at least 65 chars.
28 encode[64] will be used as the pad character. Encodings other than the
31 static size_t Encode(const void* src, size_t length, void* dest, const char* encode = NULL);
SkBase64.cpp 112 size_t SkBase64::Encode(const void* srcPtr, size_t length, void* dstPtr, const char* encodeMap) {
113 const char* encode;
115 encode = default_encode;
117 encode = encodeMap;
132 *dst++ = encode[a];
133 *dst++ = encode[b];
134 *dst++ = encode[c];
135 *dst++ = encode[d];
147 *dst++ = encode[a >> 2];
148 *dst++ = encode[(k1 | a << 4) & 0x3F]
    [all...]
  /external/skia/src/utils/
SkBase64.h 27 Base64 encodes src into dst. encode is a pointer to at least 65 chars.
28 encode[64] will be used as the pad character. Encodings other than the
31 static size_t Encode(const void* src, size_t length, void* dest, const char* encode = NULL);
SkBase64.cpp 112 size_t SkBase64::Encode(const void* srcPtr, size_t length, void* dstPtr, const char* encodeMap) {
113 const char* encode;
115 encode = default_encode;
117 encode = encodeMap;
132 *dst++ = encode[a];
133 *dst++ = encode[b];
134 *dst++ = encode[c];
135 *dst++ = encode[d];
147 *dst++ = encode[a >> 2];
148 *dst++ = encode[(k1 | a << 4) & 0x3F]
    [all...]
  /external/chromium/chrome/browser/custom_handlers/
protocol_handler.h 29 Value* Encode();
protocol_handler_registry.cc 60 scoped_ptr<Value> value(Encode());
109 Value* ProtocolHandlerRegistry::Encode() {
114 protocolHandlers->Append(i->second->Encode());
protocol_handler_registry.h 75 Value* Encode();
protocol_handler.cc 44 Value* ProtocolHandler::Encode() {
  /external/chromium/sdch/open-vcdiff/src/
varint_bigendian.h 104 static int Encode(SignedIntegerType v, char* ptr);
vcdiffengine.h 32 // code table writer object which is passed as an argument to Encode().
62 // can call Encode() at once for the same VCDiffEngine object.
71 void Encode(const char* target_data,
116 // This can be reused to encode many different target strings using the
vcdiffengine_test.cc 343 engine_.Encode("", 0, target_matching, &diff_output_string_, &coder);
353 engine_.Encode(text,
361 void Encode(bool interleaved, bool target_matching) {
439 Encode(/* interleaved = */ false, /* target matching = */ false);
470 Encode(/* interleaved = */ true, /* target matching = */ false);
505 Encode(/* interleaved = */ false, /* target matching = */ true);
536 Encode(/* interleaved = */ true, /* target matching = */ false);
642 engine_.Encode(text,
650 void Encode(bool interleaved, bool target_matching) {
900 Encode(/* interleaved = */ true, /* target matching = */ false)
    [all...]
varint_bigendian.cc 84 int VarintBE<SignedIntegerType>::Encode(SignedIntegerType v, char* ptr) {
  /external/chromium/third_party/libjingle/source/talk/xmpp/
saslmechanism.cc 57 return Base64::Encode(plain);
  /external/open-vcdiff/src/
varint_bigendian.h 104 static int Encode(SignedIntegerType v, char* ptr);
vcdiffengine.h 32 // code table writer object which is passed as an argument to Encode().
62 // can call Encode() at once for the same VCDiffEngine object.
71 void Encode(const char* target_data,
116 // This can be reused to encode many different target strings using the
vcdiffengine_test.cc 322 engine_.Encode("", 0, target_matching, &diff_output_string_, &coder);
331 engine_.Encode(text,
338 void Encode(bool interleaved, bool target_matching) {
416 Encode(/* interleaved = */ false, /* target matching = */ false);
447 Encode(/* interleaved = */ true, /* target matching = */ false);
482 Encode(/* interleaved = */ false, /* target matching = */ true);
513 Encode(/* interleaved = */ true, /* target matching = */ true);
619 engine_.Encode(text,
626 void Encode(bool interleaved, bool target_matching) {
876 Encode(/* interleaved = */ true, /* target matching = */ false)
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_codec.h 39 // returned object. This is invoked to encode the contents of the bookmark bar
40 // model and is currently a convenience to invoking Encode that takes the
42 Value* Encode(BookmarkModel* model);
48 Value* Encode(const BookmarkNode* bookmark_bar_node,
64 // Returns the checksum that's stored in the file. After a call to Encode,
  /external/v8/test/cctest/
test-serialize.cc 91 static uint32_t Encode(const ExternalReferenceEncoder& encoder, T id) {
92 return encoder.Encode(AddressOf(id));
108 Encode(encoder, Builtins::kArrayCode));
110 Encode(encoder, Runtime::kAbort));
112 Encode(encoder, IC_Utility(IC::kLoadCallbackProperty)));
116 encoder.Encode(keyed_load_function_prototype.address()));
120 encoder.Encode(stack_limit_address.address()));
124 encoder.Encode(real_stack_limit_address.address()));
127 encoder.Encode(ExternalReference::debug_break(isolate).address()));
130 encoder.Encode(
    [all...]
  /external/chromium/chrome/browser/ui/window_snapshot/
window_snapshot_win.cc 62 // encode it into a useful format for posting to the bug report
64 gfx::PNGCodec::Encode(bit_ptr, gfx::PNGCodec::FORMAT_BGRA,
  /external/openfst/src/bin/
fstencode.cc 20 // Encode transducer labels and/or weights.
23 #include <fst/script/encode.h>
27 DEFINE_bool(encode_labels, false, "Encode output labels");
28 DEFINE_bool(encode_weights, false, "Encode weights");
59 s::Encode(fst, flags, FLAGS_encode_reuse, codex_name);
  /external/chromium/sdch/open-vcdiff/src/google/
vcencoder.h 182 // This convention differs from the non-streaming Encode/Decode
258 // can be used before calling Encode(), to specify that interleaved format
264 // calling Encode(), to specify whether or not target matching should be
273 bool Encode(const char* target_data,
  /external/chromium/third_party/libjingle/source/talk/base/
base64.h 60 static inline std::string Encode(const std::string& data) {

Completed in 426 milliseconds

1 2 3 4