Home
last modified time | relevance | path

Searched defs:Wrapped (Results 1 – 15 of 15) sorted by relevance

/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/optional/optional.object/optional.object.ctor/
Dempty_in_place_t_does_not_clobber.pass.cpp27 struct Wrapped { struct
35 static_assert(std::is_default_constructible<Wrapped::Inner>::value, ""); in main() argument
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/ser/filter/
DTestIgnoredTypes.java53 static class Wrapped { class in TestIgnoredTypes
57 public Wrapped() { throw new RuntimeException("Should not be called"); } in Wrapped() method in TestIgnoredTypes.Wrapped
58 public Wrapped(int x0) { x = x0; } in Wrapped() method in TestIgnoredTypes.Wrapped
/external/skia/src/gpu/ganesh/mtl/
DGrMtlTexture.h71 enum Wrapped { kWrapped }; enum
DGrMtlRenderTarget.h82 enum Wrapped { kWrapped }; enum
/external/skia/src/gpu/ganesh/d3d/
DGrD3DRenderTarget.cpp29 Wrapped, in GrD3DRenderTarget() argument
72 Wrapped, in GrD3DRenderTarget() argument
DGrD3DRenderTarget.h94 enum Wrapped { kWrapped }; enum
/external/perfetto/src/profiling/perf/
Dunwind_queue_unittest.cc61 TEST(UnwindQueueTest, Wrapped) { in TEST() argument
/external/skia/src/gpu/ganesh/mock/
DGrMockTexture.h101 enum Wrapped { kWrapped }; enum
102 GrMockRenderTarget(GrMockGpu* gpu, Wrapped, SkISize dimensions, int sampleCnt, in GrMockRenderTarget() argument
/external/webrtc/net/dcsctp/common/
Dsequence_numbers_test.cc17 using Wrapped = webrtc::StrongAlias<class WrappedTag, uint16_t>; typedef
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLoopUnroll.cpp73 bool Wrapped = false; in remapInstruction() local
/external/clang/lib/Frontend/
DTextDiagnostic.cpp624 bool Wrapped = false; in printWordWrapped() local
/external/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp1654 APInt MinDiff = V0Offset - V1Offset, Wrapped = -MinDiff; in constantOffsetHeuristic() local
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DBasicAliasAnalysis.cpp2024 APInt MinDiff = V0Offset - V1Offset, Wrapped = -MinDiff; in constantOffsetHeuristic() local
/external/clang/lib/Sema/
DSemaType.cpp6292 QualType Wrapped = Unwrapped.wrap(*this, FT); in adjustMemberFunctionCC() local
/external/python/cpython3/Lib/test/
Dtest_inspect.py3190 class Wrapped: class