Home
last modified time | relevance | path

Searched refs:final (Results 1 – 25 of 243) sorted by relevance

12345678910

/external/webkit/V8Binding/v8/src/
Djson-delay.js125 var final;
127 final = "[" + partial.join(",") + "]";
130 final = "[\n" + indent + partial.join(separator) + "\n" +
133 final = "[]";
136 return final;
173 var final;
175 final = "{" + partial.join(",") + "}";
178 final = "{\n" + indent + partial.join(separator) + "\n" +
181 final = "{}";
184 return final;
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dreverse.h58 Weight final = ifst.Final(is); in Reverse() local
59 if (final != Weight::Zero()) { in Reverse()
60 RevArc oarc(0, 0, final.Reverse(), os); in Reverse()
Dclosure.h50 Weight final = fst->Final(s); in Closure() local
51 if (final != Weight::Zero()) in Closure()
52 fst->AddArc(s, Arc(0, 0, final, start)); in Closure()
Dconcat.h70 Weight final = fst1->Final(s1); in Concat() local
71 if (final != Weight::Zero()) { in Concat()
74 fst1->AddArc(s1, Arc(0, 0, final, start2 + numstates1)); in Concat()
Dshortest-path.h286 StateId final = ofst->AddState(); in ShortestPath() local
287 ofst->SetFinal(final, Weight::One()); in ShortestPath()
288 while (pairs.size() <= final) in ShortestPath()
290 pairs[final] = Pair(rfst.Start(), Weight::One()); in ShortestPath()
291 heap.push_back(final); in ShortestPath()
Dtest-properties.h194 Weight final = fst.Final(s); in ComputeProperties() local
196 if (final != Weight::Zero()) { // final state in ComputeProperties()
197 if (final != Weight::One()) { in ComputeProperties()
/external/e2fsprogs/doc/
DMakefile.in51 clean-all:: clean-tex clean-backup clean-final clean-tarfiles
53 .PHONY: clean-final
54 clean-final::
/external/openssl/crypto/evp/
Devp_enc.c394 OPENSSL_assert(b <= sizeof ctx->final); in EVP_DecryptUpdate()
398 memcpy(out,ctx->final,b); in EVP_DecryptUpdate()
415 memcpy(ctx->final,&out[*outl],b); in EVP_DecryptUpdate()
457 OPENSSL_assert(b <= sizeof ctx->final); in EVP_DecryptFinal_ex()
458 n=ctx->final[b-1]; in EVP_DecryptFinal_ex()
466 if (ctx->final[--b] != n) in EVP_DecryptFinal_ex()
474 out[i]=ctx->final[i]; in EVP_DecryptFinal_ex()
Dm_null.c71 static int final(EVP_MD_CTX *ctx,unsigned char *md) in final() function
82 final,
Dm_mdc2.c76 static int final(EVP_MD_CTX *ctx,unsigned char *md) in final() function
87 final,
Dm_ecdsa.c125 static int final(EVP_MD_CTX *ctx,unsigned char *md) in final() function
136 final,
Dm_ripemd.c78 static int final(EVP_MD_CTX *ctx,unsigned char *md) in final() function
89 final,
Dm_md2.c78 static int final(EVP_MD_CTX *ctx,unsigned char *md) in final() function
89 final,
Dm_dss.c76 static int final(EVP_MD_CTX *ctx,unsigned char *md) in final() function
87 final,
Dm_sha.c77 static int final(EVP_MD_CTX *ctx,unsigned char *md) in final() function
88 final,
Dm_md4.c78 static int final(EVP_MD_CTX *ctx,unsigned char *md) in final() function
89 final,
Dm_dss1.c77 static int final(EVP_MD_CTX *ctx,unsigned char *md) in final() function
88 final,
Dm_md5.c78 static int final(EVP_MD_CTX *ctx,unsigned char *md) in final() function
89 final,
Dm_sha1.c77 static int final(EVP_MD_CTX *ctx,unsigned char *md) in final() function
88 final,
/external/bison/tests/
Dsets.at263 # In some weird cases Bison could compute an incorrect final state
283 # Get the final state in the parser.
284 AT_CHECK([[sed -n 's/.*define YYFINAL *\([0-9][0-9]*\)/final state \1/p' input.c]],
288 # Get the final state in the report, from the "accept" action..
291 s//final state \1/
/external/webkit/WebKitTools/DumpRenderTree/win/
DMD5.cpp56 static finalPtr final() in final() function
74 final()(context); in MD5_Final()
/external/zlib/examples/
Dgun.c211 unsigned final; /* last character written for previous code */ in lunpipe() local
246 final = prev = (unsigned)last; /* low 8 bits of code */ in lunpipe()
256 outbuf[0] = (unsigned char)final; /* write first decompressed byte */ in lunpipe()
320 match[stack++] = (unsigned char)final; in lunpipe()
330 final = code; in lunpipe()
336 suffix[end] = (unsigned char)final; in lunpipe()
/external/icu4c/data/rbnf/
Dit.txt21 // * The "no-final" stanzas are used to deal with the fact that the number
29 // except that the final vowel is omitted from words ending in
53 "2000: <%%no-final<mila; <%%no-final<mil>%%with-a>;\n"
54 "100,000>>: <%%no-final<mila[ >>];\n"
60 "%%no-final:\n"
/external/srec/tools/grxmlcompile/
Dfst-io.h127 Weight final = fst_.Final(s); in PrintState() local
128 if (final != Weight::Zero() || !output) { in PrintState()
130 if (final != Weight::One()) { in PrintState()
131 *ostrm_ << "\t" << final; in PrintState()
/external/proguard/examples/
Dapplets.pro47 static final long serialVersionUID;
48 static final java.io.ObjectStreamField[] serialPersistentFields;

12345678910