/external/tensorflow/tensorflow/python/training/tracking/ |
D | object_identity.py | 36 def unwrapped(self): member in _ObjectIdentityWrapper 57 def unwrapped(self): member in _WeakObjectIdentityWrapper 89 yield key.unwrapped 105 unwrapped = key.unwrapped 106 if unwrapped is None: 109 yield unwrapped 136 yield key.unwrapped 152 unwrapped = key.unwrapped 153 if unwrapped is None: 156 yield 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/guava/guava/src/com/google/common/primitives/ |
D | Primitives.java | 131 Class<T> unwrapped = (Class<T>) WRAPPER_TO_PRIMITIVE_TYPE.get(type); in unwrap() local 132 return (unwrapped == null) ? type : unwrapped; in unwrap()
|
/external/wpa_supplicant_8/src/common/ |
D | dpp.c | 2965 u8 *unwrapped = NULL; in dpp_auth_req_rx() local 3101 unwrapped = os_malloc(unwrapped_len); in dpp_auth_req_rx() 3102 if (!unwrapped) in dpp_auth_req_rx() 3106 2, addr, len, unwrapped) < 0) { in dpp_auth_req_rx() 3111 unwrapped, unwrapped_len); in dpp_auth_req_rx() 3113 if (dpp_check_attrs(unwrapped, unwrapped_len) < 0) { in dpp_auth_req_rx() 3118 i_nonce = dpp_get_attr(unwrapped, unwrapped_len, DPP_ATTR_I_NONCE, in dpp_auth_req_rx() 3127 i_capab = dpp_get_attr(unwrapped, unwrapped_len, in dpp_auth_req_rx() 3137 bin_clear_free(unwrapped, unwrapped_len); in dpp_auth_req_rx() 3138 unwrapped = NULL; in dpp_auth_req_rx() [all …]
|
/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/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_methodcalls_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/webrtc/tools/matlab/ |
D | maxUnwrap.m | 14 % sequence: The unwrapped vector.
|
D | rtpAnalyze.m | 164 % be unwrapped for this to work.
|
/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/tensorflow/tensorflow/contrib/distribute/python/ |
D | strategy_test_lib.py | 237 unwrapped = d.unwrap(output) 240 sess.run(unwrapped)
|
D | mirrored_strategy_multigpu_test.py | 272 unwrapped = distribution.experimental_local_results(in_model_fn) 273 self.assertEqual(in_scope, unwrapped[0]) 280 unwrapped = distribution.experimental_local_results(in_model_fn) 281 self.assertEqual(in_scope, unwrapped[0])
|
/external/protobuf/docs/swift/ |
D | DesignDoc.md | 181 Instead, we can use **implicitly unwrapped optionals.** For example, a property 404 implicitly-unwrapped optionals without requiring that uses in switch statements 405 be explicitly unwrapped. For example, if we consider a message with the enum
|
/external/protobuf/objectivec/ |
D | GPBDictionary.m | 793 //% VALUE_TYPE unwrapped = UNWRAP##VALUE_NAME(aValue); 794 //% if (!func(unwrapped)) { 795 //% unwrapped = kGPBUnrecognizedEnumeratorValue; 797 //% block(UNWRAP##KEY_NAME(aKey), unwrapped, stop); 3191 int32_t unwrapped = [aValue intValue]; 3192 if (!func(unwrapped)) { 3193 unwrapped = kGPBUnrecognizedEnumeratorValue; 3195 block([aKey unsignedIntValue], unwrapped, stop); 5155 int32_t unwrapped = [aValue intValue]; 5156 if (!func(unwrapped)) { [all …]
|
/external/Microsoft-GSL/include/gsl/ |
D | span | 283 // Tell the STL that span_iterator should not be unwrapped if it can't
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/tutorial/ |
D | BuildingAJIT1.rst | 280 return the unwrapped handle directly.
|
/external/yapf/ |
D | README.rst | 562 The penalty incurred by adding a line split to the unwrapped line. The more
|
/external/python/cpython3/Lib/test/ |
D | test_inspect.py | 3709 unwrapped = inspect.unwrap(wrapper, 3711 self.assertIs(unwrapped, func2)
|
/external/caliper/lib/ |
D | gson-2.2.2.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/cldr/tools/java/libs/ |
D | gson.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/kotlinc/lib/ |
D | kotlin-reflect.jar | META-INF/
META-INF/MANIFEST.MF
META-INF/descriptors.jvm. ... |