/external/tensorflow/tensorflow/python/util/ |
D | object_identity.py | 39 def unwrapped(self): member in _ObjectIdentityWrapper 79 def unwrapped(self): member in _WeakObjectIdentityWrapper 103 unwrapped = property() variable in Reference 145 yield key.unwrapped 164 unwrapped = key.unwrapped 165 if unwrapped is None: 168 yield unwrapped 214 yield key.unwrapped 230 unwrapped = key.unwrapped 231 if unwrapped is None: [all …]
|
D | object_identity_test.py | 43 self.assertEqual(o, wrap1.unwrapped) 44 self.assertEqual(o, wrap2.unwrapped)
|
/external/webrtc/webrtc/modules/ |
D | module_common_types_unittest.cc | 151 int64_t unwrapped = unwrapper.Unwrap(static_cast<uint16_t>(seq & 0xFFFF)); in TEST() local 152 EXPECT_EQ(seq, unwrapped); in TEST() 158 int64_t unwrapped = unwrapper.Unwrap(static_cast<uint16_t>(seq & 0xFFFF)); in TEST() local 159 EXPECT_EQ(seq, unwrapped); in TEST() 171 int64_t unwrapped = unwrapper.Unwrap(static_cast<uint16_t>(seq & 0xFFFF)); in TEST() local 172 EXPECT_EQ(seq, unwrapped); in TEST() 179 int64_t unwrapped = unwrapper.Unwrap(static_cast<uint16_t>(seq & 0xFFFF)); in TEST() local 180 EXPECT_EQ(seq, unwrapped); in TEST()
|
/external/wpa_supplicant_8/src/common/ |
D | dpp_auth.c | 678 u8 *unwrapped = NULL; in dpp_auth_req_rx() local 803 unwrapped = os_malloc(unwrapped_len); in dpp_auth_req_rx() 804 if (!unwrapped) in dpp_auth_req_rx() 808 2, addr, len, unwrapped) < 0) { in dpp_auth_req_rx() 813 unwrapped, unwrapped_len); in dpp_auth_req_rx() 815 if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) { in dpp_auth_req_rx() 820 i_nonce = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_I_NONCE, in dpp_auth_req_rx() 829 i_capab = dpp_get_attr(unwrapped, unwrapped_len, in dpp_auth_req_rx() 839 bin_clear_free(unwrapped, unwrapped_len); in dpp_auth_req_rx() 840 unwrapped = NULL; in dpp_auth_req_rx() [all …]
|
D | dpp_reconfig.c | 587 u8 *unwrapped = NULL; in dpp_reconfig_auth_resp_rx() local 688 unwrapped = os_malloc(unwrapped_len); in dpp_reconfig_auth_resp_rx() 689 if (!unwrapped) in dpp_reconfig_auth_resp_rx() 693 2, addr, len, unwrapped) < 0) { in dpp_reconfig_auth_resp_rx() 698 unwrapped, unwrapped_len); in dpp_reconfig_auth_resp_rx() 700 if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) { in dpp_reconfig_auth_resp_rx() 705 i_nonce = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_I_NONCE, in dpp_reconfig_auth_resp_rx() 714 r_nonce = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_R_NONCE, in dpp_reconfig_auth_resp_rx() 723 conn_status = dpp_get_attr(unwrapped, unwrapped_len, in dpp_reconfig_auth_resp_rx() 747 bin_clear_free(unwrapped, unwrapped_len); in dpp_reconfig_auth_resp_rx() [all …]
|
D | dpp_pkex.c | 999 u8 *unwrapped = NULL; in dpp_pkex_rx_commit_reveal_req() local 1029 unwrapped = os_malloc(unwrapped_len); in dpp_pkex_rx_commit_reveal_req() 1030 if (!unwrapped) in dpp_pkex_rx_commit_reveal_req() 1043 2, addr, len, unwrapped) < 0) { in dpp_pkex_rx_commit_reveal_req() 1051 unwrapped, unwrapped_len); in dpp_pkex_rx_commit_reveal_req() 1053 if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) { in dpp_pkex_rx_commit_reveal_req() 1058 b_key = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_BOOTSTRAP_KEY, in dpp_pkex_rx_commit_reveal_req() 1097 peer_u = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_I_AUTH_TAG, in dpp_pkex_rx_commit_reveal_req() 1138 os_free(unwrapped); in dpp_pkex_rx_commit_reveal_req() 1160 u8 *unwrapped = NULL; in dpp_pkex_rx_commit_reveal_resp() local [all …]
|
D | dpp.c | 1769 u8 *unwrapped = NULL; in dpp_conf_req_rx() local 1799 unwrapped = os_malloc(unwrapped_len); in dpp_conf_req_rx() 1800 if (!unwrapped) in dpp_conf_req_rx() 1804 0, NULL, NULL, unwrapped) < 0) { in dpp_conf_req_rx() 1809 unwrapped, unwrapped_len); in dpp_conf_req_rx() 1811 if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) { in dpp_conf_req_rx() 1816 e_nonce = dpp_get_attr(unwrapped, unwrapped_len, in dpp_conf_req_rx() 1827 config_attr = dpp_get_attr(unwrapped, unwrapped_len, in dpp_conf_req_rx() 1937 os_free(unwrapped); in dpp_conf_req_rx() 2596 u8 *unwrapped = NULL; in dpp_conf_resp_rx() local [all …]
|
/external/guava/guava/src/com/google/common/primitives/ |
D | Primitives.java | 135 Class<T> unwrapped = (Class<T>) WRAPPER_TO_PRIMITIVE_TYPE.get(type); in unwrap() local 136 return (unwrapped == null) ? type : unwrapped; in unwrap()
|
/external/guava/android/guava/src/com/google/common/primitives/ |
D | Primitives.java | 135 Class<T> unwrapped = (Class<T>) WRAPPER_TO_PRIMITIVE_TYPE.get(type); in unwrap() local 136 return (unwrapped == null) ? type : unwrapped; in unwrap()
|
/external/python/cryptography/docs/hazmat/primitives/ |
D | keywrap.rst | 48 :return bytes: The unwrapped key as bytes. 51 raised if the key is not successfully unwrapped. 87 :return bytes: The unwrapped key as bytes. 90 raised if the key is not successfully unwrapped.
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/body/ |
D | VariableDeclarator.java | 137 Pair<Type, List<ArrayBracketPair>> unwrapped = ArrayType.unwrapArrayTypes(type); in setType() local 142 nodeWithElementType.setElementType(unwrapped.a); in setType() 144 getId().setArrayBracketPairsAfterId(unwrapped.b); in setType()
|
D | Parameter.java | 130 Pair<Type, List<ArrayBracketPair>> unwrapped = ArrayType.unwrapArrayTypes(type); in setType() local 131 setElementType(unwrapped.a); in setType() 132 setArrayBracketPairsAfterElementType(unwrapped.b); in setType()
|
/external/libbrillo/brillo/ |
D | data_encoding.cc | 118 std::string unwrapped = Base64EncodeHelper(data, size); in Base64EncodeWrapLines() local 121 for (size_t i = 0; i < unwrapped.size(); i += 64) { in Base64EncodeWrapLines() 122 wrapped.append(unwrapped, i, 64); in Base64EncodeWrapLines()
|
/external/dokka/core/src/main/kotlin/Analysis/ |
D | JavaResolveExtension.kt | 23 import org.jetbrains.kotlin.asJava.unwrapped in <lambda>() 78 val callable = unwrapped in getJavaOrKotlinMemberDescriptor()
|
/external/dagger2/java/dagger/internal/codegen/langmodel/ |
D | DaggerTypes.java | 87 TypeMirror unwrapped = unwrapTypeOrDefault(type, null); in unwrapType() local 88 checkArgument(unwrapped != null, "%s is a raw type", type); in unwrapType() 89 return unwrapped; in unwrapType()
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/expected_output/ |
D | com_github_javaparser_ast_body_VariableDeclarator.txt | 22 …Line 142) nodeWithElementType.setElementType(unwrapped.a) ==> com.github.javaparser.ast.nodeTypes.… 24 …Line 144) getId().setArrayBracketPairsAfterId(unwrapped.b) ==> com.github.javaparser.ast.body.Vari…
|
D | com_github_javaparser_ast_body_Parameter.txt | 20 …Line 131) setElementType(unwrapped.a) ==> com.github.javaparser.ast.body.Parameter.setElementType(… 21 …Line 132) setArrayBracketPairsAfterElementType(unwrapped.b) ==> com.github.javaparser.ast.body.Par…
|
/external/v8/src/compiler/ |
D | common-operator-reducer.cc | 23 Node* unwrapped = SkipValueIdentities(cond); in DecideCondition() local 24 switch (unwrapped->opcode()) { in DecideCondition() 26 Int32Matcher m(unwrapped); in DecideCondition() 30 HeapObjectMatcher m(unwrapped); in DecideCondition()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/ |
D | JobSupport.kt | 261 val unwrapped = unwrap(exception) in <lambda>() constant 262 if (unwrapped !== rootCause && unwrapped !== unwrappedCause && in <lambda>() 263 unwrapped !is CancellationException && seenExceptions.add(unwrapped)) { in <lambda>() 264 rootCause.addSuppressedThrowable(unwrapped) in <lambda>()
|
/external/webrtc/tools/matlab/ |
D | maxUnwrap.m | 14 % sequence: The unwrapped vector.
|
/external/webrtc/webrtc/modules/include/ |
D | module_common_types.h | 798 int64_t unwrapped = UnwrapWithoutUpdate(sequence_number); in Unwrap() local 799 UpdateLast(unwrapped); in Unwrap() 800 return unwrapped; in Unwrap()
|
/external/webrtc/talk/session/media/ |
D | typewrapping.h.pump | 59 // unwrapped forms of A, B, and C (after typedef-equivalence), then you will get 154 // passing the unwrapped value in a function call, which is not a legal thing to 272 // Macro to get the unwrapped form of a type.
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 6113 FunctionTypeUnwrapper unwrapped(S, type); in handleFunctionTypeAttr() local 6120 if (!unwrapped.isFunctionType()) in handleFunctionTypeAttr() 6124 FunctionType::ExtInfo EI = unwrapped.get()->getExtInfo().withNoReturn(true); in handleFunctionTypeAttr() 6125 type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI)); in handleFunctionTypeAttr() 6137 if (!unwrapped.isFunctionType()) in handleFunctionTypeAttr() 6141 = unwrapped.get()->getExtInfo().withProducesResult(true); in handleFunctionTypeAttr() 6142 type = unwrapped.wrap(S, S.Context.adjustFunctionType(unwrapped.get(), EI)); in handleFunctionTypeAttr() 6152 if (!unwrapped.isFunctionType()) in handleFunctionTypeAttr() 6156 const FunctionType *fn = unwrapped.get(); in handleFunctionTypeAttr() 6167 unwrapped.get()->getExtInfo().withRegParm(value); in handleFunctionTypeAttr() [all …]
|
/external/python/cffi/doc/misc/ |
D | design.rst | 9 automatically wrapped and unwrapped to regular applevel integers. The
|
/external/dagger2/java/dagger/internal/codegen/ |
D | BindingGraphFactory.java | 810 Optional<Key> unwrapped = keyFactory.unwrapOptional(key); in getOptionalBindingDeclarations() local 811 if (!unwrapped.isPresent()) { in getOptionalBindingDeclarations() 816 declarations.addAll(resolver.optionalBindingDeclarations.get(unwrapped.get())); in getOptionalBindingDeclarations()
|