HomeSort by relevance Sort by last modified time
    Searched refs:decode (Results 301 - 325 of 1360) sorted by null

<<11121314151617181920>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_applesingle.py 54 applesingle.decode(test_support.TESTFN, TESTFN2)
63 applesingle.decode(test_support.TESTFN, TESTFN2, resonly=True)
test_imgfile.py 106 uu.decode(findfile('testrgb.uue'), 'test.rgb')
107 uu.decode(findfile('greyrgb.uue'), 'greytest.rgb')
test_unicode_file.py 17 if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
31 if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
62 base = base.decode(TESTFN_ENCODING)
67 file_list = [f.decode(TESTFN_ENCODING) for f in file_list]
128 cwd_result = os.getcwd().decode(TESTFN_ENCODING)
129 name_result = make_name.decode(TESTFN_ENCODING)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_unicode_file.py 17 if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
31 if TESTFN_ENCODED.decode(TESTFN_ENCODING) != TESTFN_UNICODE:
62 base = base.decode(TESTFN_ENCODING)
67 file_list = [f.decode(TESTFN_ENCODING) for f in file_list]
128 cwd_result = os.getcwd().decode(TESTFN_ENCODING)
129 name_result = make_name.decode(TESTFN_ENCODING)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /external/chromium_org/v8/src/
compiler.h 49 bool is_lazy() const { return IsLazy::decode(flags_); }
50 bool is_eval() const { return IsEval::decode(flags_); }
51 bool is_global() const { return IsGlobal::decode(flags_); }
52 StrictMode strict_mode() const { return StrictModeField::decode(flags_); }
102 return IsNative::decode(flags_);
114 return IsDeferredCalling::decode(flags_);
122 return IsNonDeferredCalling::decode(flags_);
130 return SavesCallerDoubles::decode(flags_);
138 return RequiresFrame::decode(flags_);
146 return MustNotHaveEagerFrame::decode(flags_)
    [all...]
safepoint-table.h 39 return DeoptimizationIndexField::decode(info_);
59 return ArgumentsField::decode(info_);
64 return SaveDoublesField::decode(info_);
scopeinfo.h 84 VariableMode mode() { return ModeField::decode(value_); }
87 return InitField::decode(value_);
90 int index() { return IndexField::decode(value_); }
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
BitStringTest.java 62 // decode from byte array
68 BitString decoded = (BitString) asn1.decode(in);
77 // decode from input stream
83 BitString decoded = (BitString) asn1.decode(in);
119 ASN1BitString.getInstance().decode(in);
164 .decode(in)));
206 .decode(in)));
ChoiceTest.java 107 assertEquals("Test case: " + i, testcases[i][0], choice.decode(in));
156 List values = (List) sequenceOf.decode(encoded);
188 assertEquals("False: ", Boolean.FALSE, explicit.decode(encoded));
192 assertEquals("True: ", Boolean.TRUE, explicit.decode(encoded));
244 Boolean b = (Boolean) choice2.decode(new byte[] { 0x01, 0x01, 0x00 });
ImplicitTest.java 169 ((ASN1Type) taggedType[i][2]).decode(in));
212 // decode primitive
214 .decode(primitiveEncoding)));
219 // decode constructed
221 type2.decode(constructedEncoding);
IntegerTest.java 91 // decode from byte array
96 (byte[]) asn1.decode(in))); // returned
99 // decode from input stream
105 (byte[]) asn1.decode(in))); //returned
134 ASN1Integer.getInstance().decode(in);
OidTest.java 127 int[] decoded = (int[]) asn1.decode(new DerInputStream(
130 assertTrue("Failed to decode oid: " + oid[i][0], // error message
162 ASN1Oid.getInstance().decode(in);
176 assertEquals("Failed to decode oid: " + oid[i][0], // error message
178 asn1.decode(new DerInputStream((byte[]) oid[i][2])));
  /external/chromium_org/third_party/skia/include/core/
SkImageDecoder.h 44 /** Return the format of image this decoder can decode. If this decoder can decode multiple
89 /** Returns true if the decoder should try to decode the
95 /** Set to true if the the decoder should try to decode the
174 * to some flavor of decode, it is still at the discretion of the codec
196 * decode is preferred.
227 cancel. This will result in decode() returning false. However, there is
230 and decode() will return true (assuming no other problems were
233 This state is automatically reset at the beginning of decode().
241 /** Passed to the decode method. If kDecodeBounds_Mode is passed, the
270 bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode) { function in class:SkImageDecoder
358 bool decode(SkStream* stream, SkBitmap* bitmap, SkBitmap::Config pref, Mode mode) { function in class:SkImageDecoder
    [all...]
  /external/skia/include/core/
SkImageDecoder.h 44 /** Return the format of image this decoder can decode. If this decoder can decode multiple
89 /** Returns true if the decoder should try to decode the
95 /** Set to true if the the decoder should try to decode the
174 * to some flavor of decode, it is still at the discretion of the codec
196 * decode is preferred.
227 cancel. This will result in decode() returning false. However, there is
230 and decode() will return true (assuming no other problems were
233 This state is automatically reset at the beginning of decode().
241 /** Passed to the decode method. If kDecodeBounds_Mode is passed, the
270 bool decode(SkStream* stream, SkBitmap* bitmap, Mode mode) { function in class:SkImageDecoder
358 bool decode(SkStream* stream, SkBitmap* bitmap, SkBitmap::Config pref, Mode mode) { function in class:SkImageDecoder
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_AbstractTest.java 123 static void decode (byte[] input, char[] expectedOutput) throws CharacterCodingException { method in class:OldCharset_AbstractTest
126 CharBuffer outputCB = decoder.decode(inputBB);
132 decode(testBytes, testChars); method
161 CharBuffer outputCB = decoder.decode(intermediateBB);
163 assertEqualCBs("decode(encode(A)) must be identical with A = " + code,
170 fail("failed to decode(encode(" + code + "))");
194 CharBuffer outputCB = decoder.decode(intermediateBB);
196 assertEqualCBs("decode(encode(A)) must be identical with A!",
  /external/chromium_org/sdch/open-vcdiff/vsprojects/
vcdiff_test.bat 50 rem vcdiff with three arguments but without "encode" or "decode"
65 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
68 || ( echo Decode with three arguments failed ^
87 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
90 || ( echo Decode using stdin/stdout failed ^
107 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
110 || ( echo Decode with mixed arguments failed ^
126 %VCDIFF% decode -dictionary %DICTIONARY_FILE% ^
129 || ( echo Decode with mixed arguments failed ^
142 %VCDIFF% decode -dictionary %TARGET_FILE%
    [all...]
  /cts/tests/tests/webkit/src/android/webkit/cts/
URLUtilTest.java 126 byte[] result = URLUtil.decode(url);
131 result = URLUtil.decode(url);
139 result = URLUtil.decode(url);
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
plotReceiveTrace.m 75 [p, count] = sscanf(message, 'Render frame %lu at %lu. Render delay %lu, required delay %lu, max decode time %lu, min total delay %lu');
137 % Plot the time the decode starts
146 % Plot the decode complete time
182 legend('Packet arrives', 'Frame complete', 'Decode', 'Decode complete', 'Time to render', 'Only jitter', 'Must decode');
198 % legend('Complete time - Estimated arrival time', 'Desired jitter buffer level', 'Actual decode time', 'Max decode time', 0);
212 legend('Render delay', 'Jitter delay', 'Decode delay', 'Extra delay', 'Min total delay');
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
ios_plist_writer_unittest.py 30 def _ParseWithPython(self, decode, text):
33 If |decode| is true then |text| is decoded as Base64 before being
35 if decode:
39 def _ParseWithCocoa(self, decode, text):
42 If |decode| is true then |text| is decoded as Base64 before being
44 if decode:
79 # Decode the EncodedChromePolicy and verify it.
  /external/chromium_org/tools/grit/grit/
util_unittest.py 99 Test(test, 'utf-8', test_std_newline.decode('utf-8'))
101 Test(test, 'utf-8-sig', test_std_newline.decode('utf-8')[1:])
103 Test(test, 'cp1252', test_std_newline.decode('cp1252'))
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Base64.java 177 * Decode the given byte[].
185 public static final byte[] decode(byte[] src) throws IllegalArgumentException method in class:Base64
242 * Decode the given string.
247 public static final String decode(String src) method in class:Base64
249 return new String(decode(src.getBytes()));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
WriterTesterTest.java 168 public char[] decode(char[] delegateChars) throws Exception { method in class:WriterTesterTest.BufferedWriterCharSinkTester
181 public char[] decode(char[] delegateChars) throws Exception { method in class:WriterTesterTest.FilterWriterCharSinkTester
194 public char[] decode(char[] delegateChars) throws Exception { method in class:WriterTesterTest.PrintWriterCharSinkTester
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uu.py 30 decode(in_file [, out_file, mode])
37 __all__ = ["Error", "encode", "decode"]
90 def decode(in_file, out_file=None, mode=None, quiet=0): function
91 """Decode uuencoded file"""
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
178 if options.decode:
185 decode(input, output)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uu.py 30 decode(in_file [, out_file, mode])
37 __all__ = ["Error", "encode", "decode"]
90 def decode(in_file, out_file=None, mode=None, quiet=0): function
91 """Decode uuencoded file"""
163 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
178 if options.decode:
185 decode(input, output)

Completed in 1016 milliseconds

<<11121314151617181920>>