Home
last modified time | relevance | path

Searched refs:unwrapped (Results 1 – 25 of 42) sorted by relevance

12

/external/tensorflow/tensorflow/python/training/tracking/
Dobject_identity.py36 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/
Dmodule_common_types_unittest.cc151 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/
DPrimitives.java131 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/
Ddpp.c2965 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/
DVariableDeclarator.java137 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()
DParameter.java130 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/
Ddata_encoding.cc118 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/
Dcom_github_javaparser_ast_body_VariableDeclarator.txt22 …Line 142) nodeWithElementType.setElementType(unwrapped.a) ==> com.github.javaparser.ast.nodeTypes.…
24 …Line 144) getId().setArrayBracketPairsAfterId(unwrapped.b) ==> com.github.javaparser.ast.body.Vari…
Dcom_github_javaparser_ast_body_Parameter.txt20 …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/
DmaxUnwrap.m14 % sequence: The unwrapped vector.
DrtpAnalyze.m164 % be unwrapped for this to work.
/external/webrtc/webrtc/modules/include/
Dmodule_common_types.h798 int64_t unwrapped = UnwrapWithoutUpdate(sequence_number); in Unwrap() local
799 UpdateLast(unwrapped); in Unwrap()
800 return unwrapped; in Unwrap()
/external/webrtc/talk/session/media/
Dtypewrapping.h.pump59 // 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/
DSemaType.cpp6113 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/
Dstrategy_test_lib.py237 unwrapped = d.unwrap(output)
240 sess.run(unwrapped)
Dmirrored_strategy_multigpu_test.py272 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/
DDesignDoc.md181 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/
DGPBDictionary.m793 //% 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/
Dspan283 // Tell the STL that span_iterator should not be unwrapped if it can't
/external/swiftshader/third_party/llvm-7.0/llvm/docs/tutorial/
DBuildingAJIT1.rst280 return the unwrapped handle directly.
/external/yapf/
DREADME.rst562 The penalty incurred by adding a line split to the unwrapped line. The more
/external/python/cpython3/Lib/test/
Dtest_inspect.py3709 unwrapped = inspect.unwrap(wrapper,
3711 self.assertIs(unwrapped, func2)
/external/caliper/lib/
Dgson-2.2.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/cldr/tools/java/libs/
Dgson.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/kotlinc/lib/
Dkotlin-reflect.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/descriptors.jvm. ...

12