HomeSort by relevance Sort by last modified time
    Searched refs:decoded (Results 201 - 225 of 286) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/skqp/tests/
ImageTest.cpp 164 sk_sp<SkImage> decoded(SkImage::MakeFromEncoded(origEncoded));
165 if (!decoded) {
169 REPORTER_ASSERT(reporter, decoded);
170 assert_equal(reporter, image, nullptr, decoded.get());
174 decoded = SkImage::MakeFromEncoded(origEncoded, &ir);
175 REPORTER_ASSERT(reporter, decoded);
176 assert_equal(reporter, image, &ir, decoded.get());
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
tokenizer.c 790 PyObject *enc, *sysstdin, *decoded, *utf8; local
806 decoded = PyUnicode_Decode(*inp, strlen(*inp), encoding, NULL);
807 if (decoded == NULL)
810 utf8 = PyUnicode_AsEncodedString(decoded, "utf-8", NULL);
811 Py_DECREF(decoded);
    [all...]
  /external/python/cpython2/Parser/
tokenizer.c 794 PyObject *enc, *sysstdin, *decoded, *utf8; local
810 decoded = PyUnicode_Decode(*inp, strlen(*inp), encoding, NULL);
811 if (decoded == NULL)
814 utf8 = PyUnicode_AsEncodedString(decoded, "utf-8", NULL);
815 Py_DECREF(decoded);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
DecoderTest.java     [all...]
  /external/golang-protobuf/proto/
decode.go 328 // decoded result in pb. If the struct underlying pb does not match
346 // writes the decoded result to pb. If the struct underlying pb does not match
391 // Buffer and places the decoded result in pb. If the struct
  /external/syzkaller/vendor/github.com/golang/protobuf/proto/
decode.go 329 // decoded result in pb. If the struct underlying pb does not match
347 // writes the decoded result to pb. If the struct underlying pb does not match
392 // Buffer and places the decoded result in pb. If the struct
  /build/soong/cc/
gen_stub_libs.py 74 decoded = str(decode_api_level(value, api_map))
75 tags[idx] = '='.join([name, decoded])
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
HardwareBitmapTests.java 287 Bitmap decoded = BitmapFactory.decodeStream( local
294 canvas.drawBitmap(decoded, 0, 0, null);
  /external/brotli/go/cbrotli/
reader.go 78 // Close despite the state; i.e. there might be some unread decoded data.
writer.go 126 // output can be decoded to match all input before Flush, but the stream is
  /external/protobuf/js/binary/
proto_test.js 427 var decoded = proto.jspb.test.TestAllTypes.deserializeBinary(encoded);
428 checkAllFields(msg, decoded);
625 var decoded = proto.jspb.test.TestExtendable.deserializeBinary(encoded);
626 checkExtensions(decoded);
  /external/python/cpython3/Lib/test/
test_binascii.py 222 decoded = binascii.rledecode_hqx(encoded)
223 self.assertEqual(decoded, data)
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
SafeConstructor.java 270 byte[] decoded = Base64Coder.decode(constructScalar((ScalarNode) node).toString()
272 return decoded;
  /external/syzkaller/vendor/golang.org/x/net/http2/hpack/
huffman.go 53 // sbits is the number of bits of the symbol prefix being decoded.
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/delay_tool/
plot_neteq_delay.m 51 % remove duplicate received frames that were never decoded (RED codec)
  /external/python/cpython2/Lib/
xmlrpclib.py     [all...]
  /external/python/cpython3/Lib/xmlrpc/
client.py     [all...]
  /external/curl/lib/
urlapi.c 1098 char *decoded; local
1100 CURLcode res = Curl_urldecode(NULL, *part, 0, &decoded, &dlen, TRUE);
1106 *part = decoded;
    [all...]
  /external/deqp-deps/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
json.h     [all...]
  /external/protobuf/conformance/third_party/jsoncpp/
json.h     [all...]
  /external/shaderc/spirv-headers/tools/buildHeaders/jsoncpp/dist/json/
json.h     [all...]
  /external/swiftshader/third_party/SPIRV-Headers/tools/buildHeaders/jsoncpp/dist/json/
json.h     [all...]
  /external/zopfli/src/zopflipng/lodepng/
lodepng.cpp 915 if(ct < codetree->numcodes) return ct; /*the symbol is decoded, return it*/
916 else treepos = ct - codetree->numcodes; /*symbol not yet decoded, instead move tree position*/
    [all...]
  /external/syzkaller/pkg/csource/
csource.go 158 decoded, err := ctx.target.DeserializeExec(exec[:progSize])
162 calls, vars := ctx.generateCalls(decoded, trace)
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 740 String decoded = smapString.getString(); local
741 observer.parsed(bytes, offset, length, "sourceDebugExtension: " + decoded);

Completed in 1154 milliseconds

1 2 3 4 5 6 7 891011>>