/external/swiftshader/third_party/LLVM/unittests/Support/ |
D | ConstantRangeTest.cpp | 25 static ConstantRange Wrap; member in __anonbd6c175d0111::ConstantRangeTest 32 ConstantRange ConstantRangeTest::Wrap(APInt(16, 0xaaa), APInt(16, 0xa)); member in __anonbd6c175d0111::ConstantRangeTest 74 EXPECT_FALSE(Wrap.isFullSet()); in TEST_F() 75 EXPECT_FALSE(Wrap.isEmptySet()); in TEST_F() 76 EXPECT_TRUE(Wrap.isWrappedSet()); in TEST_F() 77 EXPECT_TRUE(Wrap.contains(APInt(16, 0x0))); in TEST_F() 78 EXPECT_TRUE(Wrap.contains(APInt(16, 0x9))); in TEST_F() 79 EXPECT_FALSE(Wrap.contains(APInt(16, 0xa))); in TEST_F() 80 EXPECT_FALSE(Wrap.contains(APInt(16, 0xaa9))); in TEST_F() 81 EXPECT_TRUE(Wrap.contains(APInt(16, 0xaaa))); in TEST_F() [all …]
|
/external/llvm/unittests/IR/ |
D | ConstantRangeTest.cpp | 25 static ConstantRange Wrap; member in __anon10950d6f0111::ConstantRangeTest 32 ConstantRange ConstantRangeTest::Wrap(APInt(16, 0xaaa), APInt(16, 0xa)); member in __anon10950d6f0111::ConstantRangeTest 74 EXPECT_FALSE(Wrap.isFullSet()); in TEST_F() 75 EXPECT_FALSE(Wrap.isEmptySet()); in TEST_F() 76 EXPECT_TRUE(Wrap.isWrappedSet()); in TEST_F() 77 EXPECT_TRUE(Wrap.contains(APInt(16, 0x0))); in TEST_F() 78 EXPECT_TRUE(Wrap.contains(APInt(16, 0x9))); in TEST_F() 79 EXPECT_FALSE(Wrap.contains(APInt(16, 0xa))); in TEST_F() 80 EXPECT_FALSE(Wrap.contains(APInt(16, 0xaa9))); in TEST_F() 81 EXPECT_TRUE(Wrap.contains(APInt(16, 0xaaa))); in TEST_F() [all …]
|
/external/libcxx/test/std/utilities/function.objects/refwrap/ |
D | type_properties.pass.cpp | 48 typedef std::reference_wrapper<T> Wrap; in test() typedef 49 static_assert(std::is_copy_constructible<Wrap>::value, ""); in test() 50 static_assert(std::is_copy_assignable<Wrap>::value, ""); in test() 52 static_assert(std::is_trivially_copyable<Wrap>::value, ""); in test()
|
/external/libmojo/mojo/public/cpp/bindings/ |
D | stl_converters.h | 152 static T Wrap(T input) { return input; } 160 static Type Wrap(std::vector<T> input) { 175 output_storage.push_back(WrapTraits<T>::Wrap(std::move(element))); 192 static Type Wrap(std::map<K, V> input) { 209 output.insert(WrapTraits<K>::Wrap(pair.first), 210 WrapTraits<V>::Wrap(std::move(pair.second))); 228 static String Wrap(const std::string& input) { return input; } 240 return internal::WrapTraits<T>::Wrap(std::move(input));
|
/external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/ |
D | extended_types.pass.cpp | 94 typedef A_wrap_0 Wrap; in test_ext_int_0() typedef 132 Wrap a; in test_ext_int_0() 164 Wrap const a; in test_ext_int_0() 189 Wrap a{42}; in test_ext_int_0() 206 typedef A_wrap_1 Wrap; in test_ext_int_1() typedef 241 Wrap a; in test_ext_int_1() 273 Wrap const a; in test_ext_int_1() 291 typedef A_wrap_2 Wrap; in test_ext_int_2() typedef 326 Wrap a; in test_ext_int_2() 358 Wrap const a; in test_ext_int_2()
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/ |
D | apply_extended_types.pass.cpp | 93 typedef A_wrap_0 Wrap; in test_ext_int_0() typedef 131 Wrap a; in test_ext_int_0() 163 Wrap const a; in test_ext_int_0() 188 Wrap a{42}; in test_ext_int_0() 205 typedef A_wrap_1 Wrap; in test_ext_int_1() typedef 240 Wrap a; in test_ext_int_1() 272 Wrap const a; in test_ext_int_1() 290 typedef A_wrap_2 Wrap; in test_ext_int_2() typedef 325 Wrap a; in test_ext_int_2() 357 Wrap const a; in test_ext_int_2()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | ValueMap.h | 116 return Map.count(Wrap(Val)); in count() 120 return iterator(Map.find(Wrap(Val))); in find() 123 return const_iterator(Map.find(Wrap(Val))); in find() 129 return Map.lookup(Wrap(Val)); in lookup() 137 Map.insert(std::make_pair(Wrap(KV.first), KV.second)); in insert() 150 return Map.erase(Wrap(Val)); in erase() 157 return Map.FindAndConstruct(Wrap(Key)); in FindAndConstruct() 161 return Map[Wrap(Key)]; 182 ValueMapCVH Wrap(KeyT key) const { in Wrap() function
|
/external/ltp/tools/ |
D | STPfailure_report.pl | 35 use Text::Wrap; 37 $Text::Wrap::columns = 72;
|
/external/llvm/include/llvm/IR/ |
D | ValueMap.h | 169 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second)); in insert() 175 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second))); in insert() 200 return Map.FindAndConstruct(Wrap(Key)); in FindAndConstruct() 204 return Map[Wrap(Key)]; 225 ValueMapCVH Wrap(KeyT key) const { in Wrap() function
|
/external/kmod/libkmod/python/kmod/ |
D | list.pyx | 21 "Wrap a struct kmod_list* list item" 27 "Wrap a struct kmod_list* list with iteration"
|
/external/libvncserver/utils/ |
D | git2cl.pl | 38 use Text::Wrap qw(wrap); 90 my $text = Text::Wrap::wrap($indent1, $indent2, @text);
|
/external/webrtc/webrtc/modules/ |
D | module_common_types_unittest.cc | 85 TEST(LatestSequenceNumber, Wrap) { in TEST() argument 103 TEST(LatestTimestamp, Wrap) { in TEST() argument
|
/external/clang/test/CodeGen/ |
D | ms-align-tentative.c | 22 struct Wrap { struct
|
/external/webrtc/webrtc/common_audio/ |
D | ring_buffer.c | 20 enum Wrap { enum 30 enum Wrap rw_wrap;
|
/external/webrtc/webrtc/modules/desktop_capture/ |
D | shared_desktop_frame.h | 25 static SharedDesktopFrame* Wrap(DesktopFrame* desktop_frame);
|
D | screen_capture_frame_queue.cc | 36 frames_[current_].reset(SharedDesktopFrame::Wrap(frame)); in ReplaceCurrentFrame()
|
D | shared_desktop_frame.cc | 50 SharedDesktopFrame* SharedDesktopFrame::Wrap( in Wrap() function in webrtc::SharedDesktopFrame
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/ |
D | DESede.java | 130 public static class Wrap class in DESede 133 public Wrap() in Wrap() method in DESede.Wrap
|
D | AES.java | 255 static public class Wrap class in AES 258 public Wrap() in Wrap() method in AES.Wrap
|
/external/clang/docs/ |
D | ClangFormatStyleOptions.rst | 339 * ``bool AfterClass`` Wrap class definitions. 340 * ``bool AfterControlStatement`` Wrap control statements (``if``/``for``/``while``/``switch``/..). 341 * ``bool AfterEnum`` Wrap enum definitions. 342 * ``bool AfterFunction`` Wrap function definitions. 343 * ``bool AfterNamespace`` Wrap namespace definitions. 344 * ``bool AfterObjCDeclaration`` Wrap ObjC definitions (``@autoreleasepool``, interfaces, ..). 345 * ``bool AfterStruct`` Wrap struct definitions. 346 * ``bool AfterUnion`` Wrap union definitions. 347 * ``bool BeforeCatch`` Wrap before ``catch``. 348 * ``bool BeforeElse`` Wrap before ``else``.
|
/external/bison/etc/ |
D | bench.pl.in | 72 use Text::Wrap;
|
/external/v8/src/debug/ |
D | debug-interface.h | 193 static MaybeLocal<Script> Wrap(Isolate* isolate,
|
/external/bison/tests/ |
D | torture.at | 92 use Text::Wrap; 188 use Text::Wrap; 265 use Text::Wrap;
|
/external/webrtc/talk/session/media/ |
D | typewrapping.h.pump | 103 (wrapper<toType, fromType>::Wrap(from)) 207 static FORCE_INLINE T1 Wrap(T1 from) { \ 233 static FORCE_INLINE wrappedType Wrap(unwrappedType var) { \
|
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/ |
D | MBlazeISelLowering.h | 76 Wrap, enumerator
|