/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
unicode_internal.py | 21 def encode(self, input, final=False): 25 def decode(self, input, final=False):
|
zlib_codec.py | 59 def encode(self, input, final=False): 60 if final: 75 def decode(self, input, final=False): 76 if final:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
raw_unicode_escape.py | 21 def encode(self, input, final=False): 25 def decode(self, input, final=False):
|
string_escape.py | 16 def encode(self, input, final=False): 20 def decode(self, input, final=False):
|
undefined.py | 25 def encode(self, input, final=False): 29 def decode(self, input, final=False):
|
unicode_escape.py | 21 def encode(self, input, final=False): 25 def decode(self, input, final=False):
|
unicode_internal.py | 21 def encode(self, input, final=False): 25 def decode(self, input, final=False):
|
zlib_codec.py | 59 def encode(self, input, final=False): 60 if final: 75 def decode(self, input, final=False): 76 if final:
|
/prebuilts/tools/common/proguard/proguard4.7/examples/dictionaries/ |
keywords.txt | 29 final
|
/system/core/include/mincrypt/ |
hash-internal.h | 41 const uint8_t* (* const final)(struct HASH_CTX*); member in struct:HASH_VTAB 55 #define HASH_final(ctx) (ctx)->f->final(ctx)
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
PageAnimator.h | 15 class PageAnimator final : public RefCountedWillBeGarbageCollected<PageAnimator> { class in namespace:blink
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
FilePrintStream.h | 35 class WTF_EXPORT FilePrintStream final : public PrintStream { class in namespace:WTF
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextCodecLatin1.h | 33 class TextCodecLatin1 final : public TextCodec { class in namespace:WTF
|
TextCodecUTF16.h | 33 class TextCodecUTF16 final : public TextCodec { class in namespace:WTF
|
TextCodecUserDefined.h | 33 class TextCodecUserDefined final : public TextCodec { class in namespace:WTF
|
/external/chromium_org/third_party/boringssl/src/crypto/digest/ |
internal.h | 85 /* final completes the hash and writes |md_size| bytes of digest to |out|. */ 86 int (*final)(EVP_MD_CTX *ctx, uint8_t *out); member in struct:env_md_st
|
/external/llvm/include/llvm/Support/ |
MD5.h | 58 void final(MD5Result &result);
|
/external/proguard/examples/annotations/ |
examples.pro | 54 static final long serialVersionUID; 55 static final java.io.ObjectStreamField[] serialPersistentFields;
|
/external/proguard/examples/ |
applets.pro | 56 static final long serialVersionUID; 57 static final java.io.ObjectStreamField[] serialPersistentFields;
|
applications.pro | 62 static final long serialVersionUID; 63 static final java.io.ObjectStreamField[] serialPersistentFields;
|
/prebuilts/tools/common/proguard/proguard4.7/examples/annotations/ |
examples.pro | 54 static final long serialVersionUID; 55 static final java.io.ObjectStreamField[] serialPersistentFields;
|
/prebuilts/tools/common/proguard/proguard4.7/examples/ |
applets.pro | 56 static final long serialVersionUID; 57 static final java.io.ObjectStreamField[] serialPersistentFields;
|
applications.pro | 62 static final long serialVersionUID; 63 static final java.io.ObjectStreamField[] serialPersistentFields;
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
WebSocketPerMessageDeflateTest.cpp | 48 WebSocketFrame f1(opcode, "Hello", 5, WebSocketFrame::Final); 49 WebSocketFrame f2(opcode, "Hello", 5, WebSocketFrame::Final); 55 EXPECT_TRUE(f1.final); 62 EXPECT_TRUE(f2.final); 70 WebSocketFrame f1(opcode, "Hello", 5, WebSocketFrame::Final); 71 WebSocketFrame f2(opcode, "Hello", 5, WebSocketFrame::Final); 77 EXPECT_TRUE(f1.final); 84 EXPECT_TRUE(f2.final); 104 WebSocketFrame frame(text, &payload[0], payload.size(), WebSocketFrame::Final); 106 ASSERT_TRUE(frame.final); [all...] |
/external/chromium_org/net/websockets/ |
websocket_deflate_stream.cc | 129 if (frame->header.final) 142 if (frame->header.final && !deflater_.Finish()) { 150 frame->header.final) { 155 if (frame->header.final) 159 bool final = frame->header.final; local 161 if (final) { 214 compressed->header.final = header.final; 248 DCHECK_EQ(i == frames->size() - 1, frame->header.final); [all...] |