Searched refs:Wrap (Results 1 - 25 of 36) sorted by relevance

12

/external/libcxx/test/std/utilities/function.objects/refwrap/
H A Dtype_properties.pass.cpp48 typedef std::reference_wrapper<T> Wrap; typedef
49 static_assert(std::is_copy_constructible<Wrap>::value, "");
50 static_assert(std::is_copy_assignable<Wrap>::value, "");
52 static_assert(std::is_trivially_copyable<Wrap>::value, "");
/external/swiftshader/third_party/LLVM/unittests/Support/
H A DConstantRangeTest.cpp25 static ConstantRange Wrap; member in class:__anon20381::ConstantRangeTest
32 ConstantRange ConstantRangeTest::Wrap(APInt(16, 0xaaa), APInt(16, 0xa));
74 EXPECT_FALSE(Wrap.isFullSet());
75 EXPECT_FALSE(Wrap.isEmptySet());
76 EXPECT_TRUE(Wrap.isWrappedSet());
77 EXPECT_TRUE(Wrap.contains(APInt(16, 0x0)));
78 EXPECT_TRUE(Wrap.contains(APInt(16, 0x9)));
79 EXPECT_FALSE(Wrap.contains(APInt(16, 0xa)));
80 EXPECT_FALSE(Wrap.contains(APInt(16, 0xaa9)));
81 EXPECT_TRUE(Wrap
[all...]
/external/llvm/unittests/IR/
H A DConstantRangeTest.cpp25 static ConstantRange Wrap; member in class:__anon13766::ConstantRangeTest
32 ConstantRange ConstantRangeTest::Wrap(APInt(16, 0xaaa), APInt(16, 0xa));
74 EXPECT_FALSE(Wrap.isFullSet());
75 EXPECT_FALSE(Wrap.isEmptySet());
76 EXPECT_TRUE(Wrap.isWrappedSet());
77 EXPECT_TRUE(Wrap.contains(APInt(16, 0x0)));
78 EXPECT_TRUE(Wrap.contains(APInt(16, 0x9)));
79 EXPECT_FALSE(Wrap.contains(APInt(16, 0xa)));
80 EXPECT_FALSE(Wrap.contains(APInt(16, 0xaa9)));
81 EXPECT_TRUE(Wrap
[all...]
/external/clang/test/CodeGen/
H A Dms-align-tentative.c22 struct Wrap { struct
25 // CHECK-DAG: @w = global %struct.Wrap zeroinitializer, align 64
/external/webrtc/webrtc/modules/desktop_capture/
H A Dscreen_capture_frame_queue.cc36 frames_[current_].reset(SharedDesktopFrame::Wrap(frame));
H A Dshared_desktop_frame.h25 static SharedDesktopFrame* Wrap(DesktopFrame* desktop_frame);
H A Dshared_desktop_frame.cc50 SharedDesktopFrame* SharedDesktopFrame::Wrap( function in class:webrtc::SharedDesktopFrame
H A Ddesktop_and_cursor_composer_unittest.cc234 SharedDesktopFrame::Wrap(CreateTestFrame()));
/external/libmojo/mojo/public/cpp/bindings/
H A Dstl_converters.h152 static T Wrap(T input) { return input; } function in struct:mojo::internal::WrapTraits
160 static Type Wrap(std::vector<T> input) { function in struct:mojo::internal::WrapTraits
175 output_storage.push_back(WrapTraits<T>::Wrap(std::move(element)));
192 static Type Wrap(std::map<K, V> input) { function in struct:mojo::internal::WrapTraits
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; } function in struct:mojo::internal::WrapTraits
240 return internal::WrapTraits<T>::Wrap(std::move(input));
/external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/
H A Dextended_types.pass.cpp94 typedef A_wrap_0 Wrap; typedef
132 Wrap a;
164 Wrap const a;
189 Wrap a{42};
206 typedef A_wrap_1 Wrap; typedef
241 Wrap a;
273 Wrap const a;
291 typedef A_wrap_2 Wrap; typedef
326 Wrap a;
358 Wrap cons
[all...]
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
H A Dapply_extended_types.pass.cpp93 typedef A_wrap_0 Wrap; typedef
131 Wrap a;
163 Wrap const a;
188 Wrap a{42};
205 typedef A_wrap_1 Wrap; typedef
240 Wrap a;
272 Wrap const a;
290 typedef A_wrap_2 Wrap; typedef
325 Wrap a;
357 Wrap cons
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DValueMap.h116 return Map.count(Wrap(Val));
120 return iterator(Map.find(Wrap(Val)));
123 return const_iterator(Map.find(Wrap(Val)));
129 return Map.lookup(Wrap(Val));
137 Map.insert(std::make_pair(Wrap(KV.first), KV.second));
150 return Map.erase(Wrap(Val));
157 return Map.FindAndConstruct(Wrap(Key));
161 return Map[Wrap(Key)];
182 ValueMapCVH Wrap(KeyT key) const { function in class:llvm::ValueMap
/external/kmod/libkmod/python/kmod/
H A Dlist.pyx21 "Wrap a struct kmod_list* list item"
27 "Wrap a struct kmod_list* list with iteration"
H A Dkmod.pyx30 "Wrap a struct kmod_ctx* item"
H A Dmodule.pyx30 "Wrap a struct kmod_module* item"
/external/libvncserver/utils/
H A Dgit2cl.pl38 use Text::Wrap qw(wrap);
90 my $text = Text::Wrap::wrap($indent1, $indent2, @text);
/external/llvm/include/llvm/IR/
H A DValueMap.h169 auto MapResult = Map.insert(std::make_pair(Wrap(KV.first), KV.second));
175 Map.insert(std::make_pair(Wrap(KV.first), std::move(KV.second)));
200 return Map.FindAndConstruct(Wrap(Key));
204 return Map[Wrap(Key)];
225 ValueMapCVH Wrap(KeyT key) const { function in class:llvm::ValueMap
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/
H A DDESede.java130 public static class Wrap class in class:DESede
133 public Wrap() method in class:DESede.Wrap
387 provider.addAlgorithm("Cipher.DESEDEWRAP", PREFIX + "$Wrap");
H A DAES.java266 static public class Wrap class in class:AES
269 public Wrap() method in class:AES.Wrap
896 provider.addAlgorithm("Cipher.AESWRAP", PREFIX + "$Wrap");
/external/webrtc/webrtc/common_audio/
H A Dring_buffer.c20 enum Wrap { enum
30 enum Wrap rw_wrap;
/external/webrtc/webrtc/modules/
H A Dmodule_common_types_unittest.cc85 TEST(LatestSequenceNumber, Wrap) {
103 TEST(LatestTimestamp, Wrap) {
/external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
H A DMBlazeISelLowering.h75 // Wrap up multiple types of instructions
76 Wrap, enumerator in enum:llvm::MBlazeISD::NodeType
/external/bison/etc/
H A Dbench.pl.in72 use Text::Wrap;
/external/clang/test/SemaCXX/
H A Dcxx98-compat.cpp246 struct Wrap { struct in namespace:UnionOrAnonStructMembers
/external/curl/lib/
H A Dmk-ca-bundle.pl39 use Text::Wrap;

Completed in 851 milliseconds

12