/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
__future__.py | 14 PY_RELEASE_LEVEL, # "alpha", "beta", "candidate" or "final"; string 107 (2, 3, 0, "final", 0),
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
mbcs.py | 24 def encode(self, input, final=False):
|
utf_16.py | 23 def encode(self, input, final=False): 58 def _buffer_decode(self, input, errors, final): 61 codecs.utf_16_ex_decode(input, errors, 0, final) 69 return self.decoder(input, self.errors, final)
|
utf_16_be.py | 19 def encode(self, input, final=False):
|
utf_16_le.py | 19 def encode(self, input, final=False):
|
utf_32_be.py | 14 def encode(self, input, final=False):
|
utf_32_le.py | 14 def encode(self, input, final=False):
|
utf_7.py | 15 def encode(self, input, final=False):
|
utf_8.py | 19 def encode(self, input, final=False):
|
utf_8_sig.py | 30 def encode(self, input, final=False): 52 def _buffer_decode(self, input, errors, final): 64 (output, consumed) = codecs.utf_8_decode(input[3:], errors, final) 66 return codecs.utf_8_decode(input, errors, final)
|
charmap.py | 29 def encode(self, input, final=False): 37 def decode(self, input, final=False):
|
palmos.py | 19 def encode(self, input, final=False): 23 def decode(self, input, final=False):
|
quopri_codec.py | 51 def encode(self, input, final=False): 55 def decode(self, input, final=False):
|
/external/chromium_org/net/websockets/ |
websocket_deflate_stream_test.cc | 79 frame->header.final = (flag & kFinal); 90 frame->header.final = (flag & kFinal); 373 EXPECT_TRUE(frames[0]->header.final); 404 EXPECT_TRUE(frames[0]->header.final); 453 EXPECT_TRUE(frames[0]->header.final); 483 EXPECT_TRUE(frames[0]->header.final); 524 EXPECT_TRUE(frames[0]->header.final); 574 EXPECT_TRUE(frames[0]->header.final); 599 EXPECT_FALSE(frames[0]->header.final); 604 EXPECT_TRUE(frames[1]->header.final); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/ |
perfect.h | 25 /* the generated code for the final hash, assumes initial hash is done */ 42 ub4 len; /* number of lines available for final hash */ 43 ub4 used; /* number of lines used by final hash */ 103 /* things indexed by final hash value */ 125 gencode *final, ub4 *scramble, ub4 *smax, key *keys, ub4 nkeys, 130 gencode *final, hashform *form);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
charmap.py | 29 def encode(self, input, final=False): 37 def decode(self, input, final=False):
|
palmos.py | 19 def encode(self, input, final=False): 23 def decode(self, input, final=False):
|
quopri_codec.py | 51 def encode(self, input, final=False): 55 def decode(self, input, final=False):
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
WebSocketFrame.cpp | 65 bool final = firstByte & finalBit; local 117 frame.final = final; 151 frameData.at(0) = (final ? finalBit : 0) | (compress ? compressBit : 0) | opCode; 178 , final(false) 190 , final(flags & Final)
|
/external/chromium_org/v8/test/webkit/ |
dfg-compare-final-object-to-final-object-or-other-when-both-proven-final-object.js | 25 "Tests that the CompareEq optimization for the case where one side is predicted final object and the other side is predicted either final object or other (i.e. null or undefined) doesn't assert when both sides are also proven final object."
|
dfg-compare-final-object-to-final-object-or-other-when-proven-final-object.js | 25 "Tests that the CompareEq optimization for the case where one side is predicted final object and the other side is predicted either final object or other (i.e. null or undefined) doesn't assert when the other side is also proven final object."
|
/external/e2fsprogs/doc/ |
Makefile.in | 64 clean-all:: clean-tex clean-backup clean-final clean-tarfiles clean-html 66 .PHONY: clean-final 67 clean-final::
|
/external/zopfli/src/zopfli/ |
deflate.c | 515 final: whether to set the "final" bit on this block, must be the last block 528 static void AddLZ77Block(const ZopfliOptions* options, int btype, int final, 544 AddBit(final, bp, out, outsize); 586 static void DeflateDynamicBlock(const ZopfliOptions* options, int final, 628 AddLZ77Block(s.options, btype, final, 639 static void DeflateFixedBlock(const ZopfliOptions* options, int final, 660 AddLZ77Block(s.options, 1, final, store.litlens, store.dists, 0, store.size, 670 static void DeflateNonCompressedBlock(const ZopfliOptions* options, int final, 682 AddBit(final, bp, out, outsize) [all...] |
/frameworks/support/v7/recyclerview/ |
Android.mk | 18 # # We do this here because the final static library must be compiled with an older 20 # # contains will not be linked into the final static library. 31 # Here is the final static library that apps can link against.
|
/ndk/sources/host-tools/sed-4.2.1/sed/ |
fmt.c | 127 unsigned final:1; /* end of sentence */ member in struct:Word 268 (word_limit - 1)->period = (word_limit - 1)->final = true; 333 word_limit->final = (c == EOF 337 word_limit->space = word_limit->final ? 2 : 1; 492 if ((this - 1)->final) 499 else if (this > words + 1 && (this - 2)->final) 505 else if (this->final)
|