/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
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/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/public/web/ |
WebSpeechRecognitionResult.h | 46 BLINK_EXPORT void assign(const WebVector<WebString>& transcripts, const WebVector<float>& confidences, bool final);
|
/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 | 50 WebSocketFrame f1(opcode, "Hello", 5, WebSocketFrame::Final); 51 WebSocketFrame f2(opcode, "Hello", 5, WebSocketFrame::Final); 57 EXPECT_TRUE(f1.final); 64 EXPECT_TRUE(f2.final); 72 WebSocketFrame f1(opcode, "Hello", 5, WebSocketFrame::Final); 73 WebSocketFrame f2(opcode, "Hello", 5, WebSocketFrame::Final); 79 EXPECT_TRUE(f1.final); 86 EXPECT_TRUE(f2.final); 106 WebSocketFrame frame(text, &payload[0], payload.size(), WebSocketFrame::Final); 108 ASSERT_TRUE(frame.final); [all...] |
/external/chromium_org/net/websockets/ |
websocket_deflate_stream.cc | 129 if (frame->header.final) 141 if (frame->header.final && !deflater_.Finish()) { 149 frame->header.final) { 154 if (frame->header.final) 158 bool final = frame->header.final; local 160 if (final) { 213 compressed->header.final = header.final; 247 DCHECK_EQ(i == frames->size() - 1, frame->header.final); [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/ |
perfect.c | 16 keys, then it computes a^scramble[tab[b]] to get the final perfect hash. 32 The final hash is (a XOR scramble[tab[b]]). *scramble* is a 200 gencode *final) /* output, code for the final hash */ 215 final->used = 4; 216 sprintf(final->line[0], 218 sprintf(final->line[1], 220 sprintf(final->line[2], 222 sprintf(final->line[3], 237 final->used = 2 [all...] |
/external/chromium_org/third_party/re2/re2/testing/ |
charclass_test.cc | 21 } final[10]; member in struct:re2::CCTest 98 for (int k = 0; t->final[k].lo >= 0; k++) 99 printf(" %d-%d", t->final[k].lo, t->final[k].hi); 110 for (int j = 0; t->final[j].lo >= 0; j++) 111 if (t->final[j].lo <= x && x <= t->final[j].hi) 140 for (int j = 0; t->final[j].lo >= 0; j++, ++it) { 142 it->lo != t->final[j].lo || 143 it->hi != t->final[j].hi) [all...] |