/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | enum_in_template_with_typedef.hpp | 1 // bindgen-flags: --rustified-enum ".*" -- -std=c++11 3 namespace std { namespace 8 namespace std { namespace
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-5/ |
H A D | abi_variadic_function.rs | 10 pub fn b(arg1: ::std::os::raw::c_char, ...) -> ::std::os::raw::c_char; in b()
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | infinite-macro.rs | 8 pub const INFINITY: f64 = ::std::f64::INFINITY; 9 pub const NAN: f64 = ::std::f64::NAN;
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
H A D | DiscoverDependentFunctions.h | 19 ANGLE_NO_DISCARD std::unordered_set<const TFunction *> DiscoverDependentFunctions( 21 const std::function<bool(const TVariable &)> &vars);
|
/third_party/skia/third_party/externals/angle2/src/libGLESv2/ |
H A D | proc_table_cl.h | 19 using ProcTable = std::unordered_map<std::string, void *>;
|
/third_party/skia/src/codec/ |
H A D | SkWuffsCodec.h | 15 std::unique_ptr<SkCodec> SkWuffsCodec_MakeFromStream(std::unique_ptr<SkStream>, SkCodec::Result*);
|
/third_party/skia/third_party/externals/libgifcodec/ |
H A D | SkGifCodec.h | 17 std::unique_ptr<SkCodec> MakeFromStream(std::unique_ptr<SkStream>, SkCodec::Result*);
|
/third_party/skia/src/ports/ |
H A D | SkImageGenerator_skia.cpp | 11 std::unique_ptr<SkImageGenerator> SkImageGenerator::MakeFromEncodedImpl(sk_sp<SkData> data) { in MakeFromEncodedImpl() 12 return SkCodecImageGenerator::MakeFromEncodedCodec(std::move(data)); in MakeFromEncodedImpl()
|
/third_party/skia/third_party/externals/dawn/src/common/ |
H A D | WindowsUtils.h | 20 std::string WCharToUTF8(const wchar_t* input); 22 std::wstring UTF8ToWStr(const char* input);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | Errno.h | 26 std::string StrError(); 29 std::string StrError(int errnum);
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceMangling.h | 22 std::string mangleName(const std::string &Name);
|
/third_party/skia/third_party/externals/tint/src/writer/ |
H A D | float_to_string.h | 29 std::string FloatToString(float f); 34 std::string FloatToBitPreservingString(float f);
|
/third_party/skia/third_party/externals/tint/tools/src/cmd/remote-compile/ |
H A D | compile.h | 25 std::string output; 28 CompileResult CompileMslUsingMetalAPI(const std::string& src);
|
/third_party/skia/tools/fiddle/ |
H A D | null_context.cpp | 11 sk_sp<GrDirectContext> create_direct_context(std::ostringstream& driverinfo, in create_direct_context() 12 std::unique_ptr<sk_gpu_test::GLTestContext>*) { in create_direct_context()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | utypeinfo.h | 15 // Windows header <typeinfo> does not define 'exception' in 'std' namespace. 25 using std::exception; 28 namespace std { class type_info; } // WORKAROUND: http://llvm.org/bugs/show_bug.cgi?id=13364 namespace
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
H A D | cmake_thread_test.cc | 21 std::cout << (void*)tid << std::endl; in main()
|
/third_party/skia/modules/skplaintexteditor/src/ |
H A D | word_boundaries.h | 10 std::vector<bool> GetUtf8WordBoundaries(const char* begin, std::size_t byteLen, const char* locale);
|
/third_party/skia/bench/ |
H A D | SkGlyphCacheBench.h | 14 std::function<std::unique_ptr<SkStreamAsset>()> dataSrc);
|
/third_party/rust/crates/syn/src/ |
H A D | verbatim.rs | 3 use std::cmp::Ordering; 4 use std::iter;
|
/third_party/rust/crates/regex/bench/src/ |
H A D | main.rs | 1 use std::fs::File; 2 use std::str;
|
/third_party/vk-gl-cts/framework/opengl/ |
H A D | gluContextFactory.cpp | 29 ContextFactory::ContextFactory (const std::string& name, const std::string& description) in ContextFactory()
|
/third_party/node/deps/v8/third_party/wasm-api/ |
H A D | wasm.hh | 39 std::unique_ptr<T[]> data_; 49 vec(size_t size) : vec(size, size ? new(std::nothrow) T[size] : nullptr) { in vec() 132 if (v) for (size_t i = 0; i < size; ++i) v.data_[i] = std::move(init[i]); 136 static auto make(std::string s) -> vec<char> { 138 if (v) std::strcpy(v.get(), s.data()); 149 T data[] = { std::move(args)... }; 165 template<class T> using own = std::unique_ptr<T>; 224 Limits(uint32_t min, uint32_t max = std::numeric_limits<uint32_t>::max()) : 443 static auto ref(own<Ref>&& x) -> Val { return Val(std::move(x)); } 500 return Val(std [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | node.cc | 98 int capacity = std::max(1, input_count); in NewImpl() 101 capacity = std::min(input_count + 3, max); in NewImpl() 221 AppendInput(zone, InputAt(std::max(InputCount() - count, 0))); in InsertInputs() 223 for (int i = InputCount() - count - 1; i >= std::max(index, count); --i) { in InsertInputs() 346 void PrintNode(const Node* node, std::ostream& os, int depth, in PrintNode() 356 os << std::endl; in PrintNode() 364 void Node::Print(std::ostream& os, int depth) const { in Print() 368 std::ostream& operator<<(std::ostream& os, const Node& n) { in operator <<() 392 STATIC_ASSERT(IdField::kMax < std in Node() [all...] |
/third_party/node/deps/v8/src/base/ |
H A D | hashmap.h | 152 : MatchFun(std::move(match)), AllocationPolicy(std::move(allocator)) {} in Impl() 156 Impl(Impl&& other) V8_NOEXCEPT { *this = std::move(other); } 160 MatchFun::operator=(std::move(other)); 161 AllocationPolicy::operator=(std::move(other)); 188 : impl_(std::move(match), std::move(allocator)) { in TemplateHashMapImpl() 197 : impl_(original->impl_.match(), std::move(allocator)) { in TemplateHashMapImpl() 511 : Base(std::move(other)) {} in move() 515 static_cast<Base&>(*this) = std [all...] |
/third_party/node/deps/v8/src/heap/ |
H A D | memory-allocator.cc | 87 return std::min<size_t>( 113 std::make_unique<UnmapFreeMemoryJob>(heap_->isolate(), this)); in FreeQueuedChunks() 256 reserved_chunk_at_virtual_memory_limit_ = std::move(reservation); in AllocateAlignedMemory() 287 *controller = std::move(reservation); in AllocateAlignedMemory() 395 std::move(reservation), in AllocateUninitializedChunk() 554 chunk_info->area_end, std::move(chunk_info->reservation), executable); in AllocatePage() 573 chunk_info->area_end, std::move(chunk_info->reservation)); in AllocateReadOnlyPage() 576 std::unique_ptr<::v8::PageAllocator::SharedMemoryMapping> 593 chunk_info->area_end, std::move(chunk_info->reservation), executable); in AllocateLargePage() 622 chunk, size, area_start, area_end, std in AllocateUninitializedPageFromPool() [all...] |