/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/ |
D | CencSampleEncryptionInformationGroupEntry.java | 39 private byte[] kid = new byte[16]; field in CencSampleEncryptionInformationGroupEntry 45 kid = new byte[16]; in parse() 46 byteBuffer.get(kid); in parse() 55 byteBuffer.put(kid); in get() 77 return kid; in getKid() 80 public void setKid(byte[] kid) { in setKid() argument 81 assert kid.length == 16; in setKid() 82 this.kid = kid; in setKid() 90 ", kid=" + Hex.encodeHex(kid) + in toString() 111 if (!Arrays.equals(kid, that.kid)) { in equals() [all …]
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/ |
D | AbstractSampleEncryptionBox.java | 26 byte[] kid = new byte[]{-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1}; field in AbstractSampleEncryptionBox 48 kid = new byte[16]; in _parseDetails() 49 content.get(kid); in _parseDetails() 110 return kid; in getKid() 113 public void setKid(byte[] kid) { in setKid() argument 114 this.kid = kid; in setKid() 149 byteBuffer.put(kid); in getContent() 176 contentSize += kid.length; in getContentSize() 322 if (!Arrays.equals(kid, that.kid)) { in equals() 333 result = 31 * result + (kid != null ? Arrays.hashCode(kid) : 0); in hashCode()
|
/external/ppp/pppd/plugins/ |
D | passprompt.c | 31 pid_t kid; in promptpass() local 45 if ((kid = fork()) == (pid_t) -1) { in promptpass() 51 if (!kid) { in promptpass() 88 while (waitpid(kid, &wstat, 0) < 0) { in promptpass()
|
/external/pdfium/core/fpdfdoc/ |
D | cpdf_structtree.cpp | 108 for (CPDF_StructKid& kid : *pParentElement->GetKids()) { in AddPageNode() 109 if (kid.m_Type == CPDF_StructKid::Element && kid.m_pDict == pDict) { in AddPageNode() 110 kid.m_pElement = pElement; in AddPageNode()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMDocumentImpl.java | 1031 int kid = nodeHandle + 1; in getFirstChild() local 1032 nodes.readSlot(kid, gotslot); in getFirstChild() 1035 kid = gotslot[2]; in getFirstChild() 1037 if (kid == NULL) return NULL; in getFirstChild() 1038 nodes.readSlot(kid, gotslot); in getFirstChild() 1043 int firstChild = kid | m_docHandle; in getFirstChild() 1205 int kid = NULL; in getPreviousSibling() local 1208 kid = nextkid; in getPreviousSibling() 1210 return kid | m_docHandle; in getPreviousSibling()
|
/external/grpc-grpc/src/core/lib/security/credentials/jwt/ |
D | jwt_verifier.cc | 123 const char* kid; member 155 h->kid = validate_string_field(cur, "kid"); in jose_header_from_json() 156 if (h->kid == nullptr) goto error; in jose_header_from_json() 573 const char* kid = nullptr; in find_verification_key() local 584 kid = key_prop->value; in find_verification_key() 590 if (alg != nullptr && kid != nullptr && kty != nullptr && in find_verification_key() 591 strcmp(kid, header_kid) == 0 && strcmp(alg, header_alg) == 0) { in find_verification_key() 645 find_verification_key(json, ctx->header->alg, ctx->header->kid); in on_keys_retrieved() 648 ctx->header->kid); in on_keys_retrieved() 784 if (ctx->header->kid == nullptr) { in retrieve_key_and_verify()
|
/external/grpc-grpc/test/core/security/ |
D | json_token_test.cc | 236 grpc_json* kid = nullptr; in check_jwt_header() local 244 kid = ptr; in check_jwt_header() 255 GPR_ASSERT(kid != nullptr); in check_jwt_header() 256 GPR_ASSERT(kid->type == GRPC_JSON_STRING); in check_jwt_header() 257 GPR_ASSERT(strcmp(kid->value, "e6b5137873db8d2ef81e06a47289e6434ec8a165") == in check_jwt_header()
|
/external/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl16.c | 296 void dochild(int kid) in dochild() argument 306 if (kid) { in dochild() 311 test + 1, kid, errno); in dochild() 319 test + 1, kid, errno); in dochild()
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | KeymanCheck.java | 124 for (String kid : Keyboard.getKeyboardIDs(kpid)) { in prettyprint() 125 keyboardLangs.put(ltp.set(kid).getLanguageScript(), kid); in prettyprint() local
|
/external/python/cpython2/Lib/lib2to3/ |
D | fixer_util.py | 360 for i, kid in enumerate(child.children[3:]): 361 if kid.type == token.COLON and kid.value == ":":
|
/external/python/cpython3/Lib/lib2to3/ |
D | fixer_util.py | 381 for i, kid in enumerate(child.children[3:]): 382 if kid.type == token.COLON and kid.value == ":":
|
/external/python/cpython2/Parser/ |
D | spark.py | 747 for kid in node: 748 self.preorder(kid) 759 for kid in node: 760 self.postorder(kid)
|
/external/wpa_supplicant_8/src/common/ |
D | dpp.c | 4425 const char *kid, const struct dpp_curve_params *curve) in dpp_build_jwk() argument 4450 if (kid) { in dpp_build_jwk() 4452 wpabuf_put_str(buf, kid); in dpp_build_jwk() 4592 auth->conf->kid, curve->jws_alg); in dpp_build_conf_obj_dpp() 4655 tailroom += 2 * curve->prime_len * 4 / 3 + os_strlen(auth->conf->kid); in dpp_build_conf_obj_dpp() 4675 if (dpp_build_jwk(buf, "csign", auth->conf->csign, auth->conf->kid, in dpp_build_conf_obj_dpp() 5013 struct wpabuf *kid = NULL; in dpp_parse_jws_prot_hdr() local 5073 kid = json_get_member_base64url(root, "kid"); in dpp_parse_jws_prot_hdr() 5074 if (!kid) { in dpp_parse_jws_prot_hdr() 5079 kid); in dpp_parse_jws_prot_hdr() [all …]
|
D | dpp.h | 252 char *kid; member
|
/external/v8/src/ |
D | contexts.h | 639 static bool IsBootstrappingOrValidParentContext(Object* object, Context* kid);
|
/external/icu/icu4c/source/data/locales/ |
D | lv.txt | 1242 "du al-kidā", 1258 "du al-kidā",
|
/external/ImageMagick/Magick++/demo/ |
D | model.miff | 65 …LMLLLKNRLNqqSNR~~]SRifebGDDDEEHHTc???73356) 3������v��������ibeaahil��hkkd�kidaiz��ô������������…
|
/external/python/google-api-python-client/samples/prediction/ |
D | language_id.txt | 63 …w, and on it (as she had hoped) a fan and two or three pairs of tiny white kid gloves: she took up… 198 … was surprised to see that she had put on one of the Rabbit's little white kid gloves while she wa… 339 …kid gloves in one hand and a large fan in the other: he came trotting along in a great hurry, mutt… 389 … guessed in a moment that it was looking for the fan and the pair of white kid gloves, and she ver…
|
/external/guava/guava-tests/test/com/google/common/io/testdata/ |
D | alice_in_wonderland.txt | 296 pair of white kid gloves in one hand and a large fan in the 302 sir--' The Rabbit started violently, dropped the white kid 359 white kid gloves while she was talking. `How CAN I have done 742 looking for the fan and the pair of white kid gloves, and she 776 or three pairs of tiny white kid gloves: she took up the fan and
|
/external/brotli/tests/testdata/ |
D | alice29.txt | 298 pair of white kid gloves in one hand and a large fan in the 304 sir--' The Rabbit started violently, dropped the white kid 361 white kid gloves while she was talking. `How CAN I have done 744 looking for the fan and the pair of white kid gloves, and she 778 or three pairs of tiny white kid gloves: she took up the fan and
|
D | plrabn12.txt | 3030 Dandled the kid; bears, tigers, ounces, pards, 7426 Unsucked of lamb or kid, that tend their play. 10068 Oft sacrificing bullock, lamb, or kid,
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/ |
D | sat-fonipa-t-sat-Olck.txt | 2526 ᱱᱟᱹᱠᱤᱡ nəkid͡ʒ
|
/external/hyphenation-patterns/hu/ |
D | hyph-hu.pat.txt | 28340 2kidéz 28343 2kidőb 28344 2kidők 28345 2kidőm 28347 2kidőt 30913 lé2kid 33892 mé2kid 35786 né2kid 44895 pö2kid 50324 sö2kid [all …]
|
/external/guice/extensions/struts2/lib/ |
D | jetty-6.1.0.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/mortbay/
org/ ... |
/external/hyphenation-patterns/nb/ |
D | hyph-nb.pat.txt | 27204 å6kid
|