/external/llvm/unittests/IR/ |
D | ConstantRangeTest.cpp | 25 static ConstantRange Wrap; member in __anon05690af00111::ConstantRangeTest 32 ConstantRange ConstantRangeTest::Wrap(APInt(16, 0xaaa), APInt(16, 0xa)); member in __anon05690af00111::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 | 43 typedef std::reference_wrapper<T> Wrap; in test() typedef 44 static_assert(std::is_copy_constructible<Wrap>::value, ""); in test() 45 static_assert(std::is_copy_assignable<Wrap>::value, ""); in test() 47 static_assert(std::is_trivially_copyable<Wrap>::value, ""); in test()
|
/external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/ |
D | extended_types.pass.cpp | 90 typedef A_wrap_0 Wrap; in test_ext_int_0() typedef 128 Wrap a; in test_ext_int_0() 160 Wrap const a; in test_ext_int_0() 185 Wrap a{42}; in test_ext_int_0() 202 typedef A_wrap_1 Wrap; in test_ext_int_1() typedef 237 Wrap a; in test_ext_int_1() 269 Wrap const a; in test_ext_int_1() 287 typedef A_wrap_2 Wrap; in test_ext_int_2() typedef 322 Wrap a; in test_ext_int_2() 354 Wrap const a; in test_ext_int_2()
|
/external/llvm/include/llvm/IR/ |
D | ValueMap.h | 150 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second)); in insert() 156 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second))); in insert() 181 return Map.FindAndConstruct(Wrap(Key)); in FindAndConstruct() 185 return Map[Wrap(Key)]; 206 ValueMapCVH Wrap(KeyT key) const { in Wrap() function
|
/external/chromium-trace/catapult/netlog_viewer/netlog_viewer/ |
D | tab_views.css | 21 /* Wrap long lines inside of PREs */ 26 /* Wrap long lines inside of PREs */
|
/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/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
|
D | desktop_and_cursor_composer_unittest.cc | 234 SharedDesktopFrame::Wrap(CreateTestFrame())); in TEST_F()
|
/external/webrtc/webrtc/common_audio/ |
D | ring_buffer.c | 20 enum Wrap { enum 30 enum Wrap rw_wrap;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/ |
D | DESede.java | 129 public static class Wrap class in DESede 132 public Wrap() in Wrap() method in DESede.Wrap
|
D | AES.java | 175 static public class Wrap class in AES 178 public Wrap() in Wrap() method in AES.Wrap
|
/external/clang/docs/ |
D | ClangFormatStyleOptions.rst | 317 * ``bool AfterClass`` Wrap class definitions. 318 * ``bool AfterControlStatement`` Wrap control statements (if/for/while/switch/..). 319 * ``bool AfterEnum`` Wrap enum definitions. 320 * ``bool AfterFunction`` Wrap function definitions. 321 * ``bool AfterNamespace`` Wrap namespace definitions. 322 * ``bool AfterObjCDeclaration`` Wrap ObjC definitions (@autoreleasepool, interfaces, ..). 323 * ``bool AfterStruct`` Wrap struct definitions. 324 * ``bool AfterUnion`` Wrap union definitions. 325 * ``bool BeforeCatch`` Wrap before ``catch``. 326 * ``bool BeforeElse`` Wrap before ``else``.
|
/external/bison/etc/ |
D | bench.pl.in | 72 use Text::Wrap;
|
/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/clang/test/SemaCXX/ |
D | cxx98-compat.cpp | 246 struct Wrap { struct
|
D | constant-expression-cxx11.cpp | 1395 struct Wrap { struct 1398 constexpr const Wrap &g(const Wrap &w) { return w; } in g()
|
/external/curl/lib/ |
D | mk-ca-bundle.pl | 39 use Text::Wrap;
|
/external/icu/icu4c/source/samples/translit/ |
D | README.TXT | 91 base character. Wrap this all up in a subclass of the
|
/external/vboot_reference/ |
D | README | 77 futility vbutil_keyblock Wrap a public key inside a signature and checksum
|
/external/webrtc/webrtc/base/ |
D | thread_unittest.cc | 254 TEST(ThreadTest, Wrap) { in TEST() argument
|