Home
last modified time | relevance | path

Searched refs:std (Results 21951 - 21975 of 65967) sorted by relevance

1...<<871872873874875876877878879880>>...2639

/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Ddata_descriptor.cpp23 uint32_t object, const std::vector<uint32_t>& indices) { in MakeDataDescriptor()
34 std::u32string hash; in operator ()()
39 return std::hash<std::u32string>()(hash); in operator ()()
47 std::equal(first->index().begin(), first->index().end(), in operator ()()
51 std::ostream& operator<<(std::ostream& out, in operator <<()
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dloop_fusion.h79 std::vector<Instruction*>* instructions, Loop* loop);
89 std::pair<std::vector<Instruction*>, std::vector<Instruction*>>
94 std::map<Instruction*, std::vector<Instruction*>> LocationToMemOps(
95 const std::vector<Instruction*>& mem_ops);
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Ddata_descriptor.cpp23 uint32_t object, const std::vector<uint32_t>& indices) { in MakeDataDescriptor()
34 std::u32string hash; in operator ()()
39 return std::hash<std::u32string>()(hash); in operator ()()
47 std::equal(first->index().begin(), first->index().end(), in operator ()()
51 std::ostream& operator<<(std::ostream& out, in operator <<()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dloop_fusion.h79 std::vector<Instruction*>* instructions, Loop* loop);
89 std::pair<std::vector<Instruction*>, std::vector<Instruction*>>
94 std::map<Instruction*, std::vector<Instruction*>> LocationToMemOps(
95 const std::vector<Instruction*>& mem_ops);
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dconstruct.h61 std::vector<Construct*> constructs = std::vector<Construct*>());
66 const std::vector<Construct*>& corresponding_constructs() const;
67 std::vector<Construct*>& corresponding_constructs();
68 void set_corresponding_constructs(std::vector<Construct*> constructs);
106 using ConstructBlockSet = std::set<BasicBlock*, less_than_id>;
150 std::vector<Construct*> corresponding_constructs_;
/third_party/skia/src/sksl/dsl/
H A DDSLCase.cpp17 : fValue(std::move(value)) in DSLCase()
18 , fStatements(std::move(statements)) in DSLCase()
22 : fValue(std::move(value)) in DSLCase()
31 : fValue(std::move(other.fValue)) in DSLCase()
32 , fStatements(std::move(other.fStatements)) {} in DSLCase()
37 fValue = std::move(other.fValue); in operator =()
38 fStatements = std::move(other.fStatements); in operator =()
/third_party/skia/src/sksl/lex/
H A DRegexNode.h51 fChildren.push_back(std::move(child)); in RegexNode()
56 fChildren.push_back(std::move(child1)); in RegexNode()
57 fChildren.push_back(std::move(child2)); in RegexNode()
64 std::vector<int> createStates(NFA* nfa, const std::vector<int>& accept) const;
66 std::string description() const;
75 std::vector<RegexNode> fChildren;
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DDescriptorSetAllocator.h39 std::map<VkDescriptorType, uint32_t> descriptorCountPerType);
47 std::map<VkDescriptorType, uint32_t> descriptorCountPerType);
54 std::vector<VkDescriptorPoolSize> mPoolSizes;
59 std::vector<VkDescriptorSet> sets;
60 std::vector<SetIndex> freeSetIndices;
63 std::vector<PoolIndex> mAvailableDescriptorPoolIndices;
64 std::vector<DescriptorPool> mDescriptorPools;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
H A DError.h25 const std::error_category &object_category();
28 // Error code 0 is absent. Use std::error_code() instead.
39 inline std::error_code make_error_code(object_error e) { in make_error_code()
40 return std::error_code(static_cast<int>(e), object_category()); in make_error_code()
50 /// std::error_code, but this will be removed in the future.
70 const std::string &getMessage() const { return Msg; } in getMessage()
73 std::string Msg;
87 namespace std { namespace
89 struct is_error_code_enum<llvm::object::object_error> : std::true_type {};
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Remarks/
H A DRemarkParser.h33 std::error_code convertToErrorCode() const override {
43 std::string ExternalFilePrependPath;
52 virtual Expected<std::unique_ptr<Remark>> next() = 0;
62 /// This object has high changes to be std::move'd around, so don't use a
64 std::vector<size_t> Offsets;
78 Expected<std::unique_ptr<RemarkParser>> createRemarkParser(Format ParserFormat,
81 Expected<std::unique_ptr<RemarkParser>>
85 Expected<std::unique_ptr<RemarkParser>>
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DRegex.h53 std::swap(preg, regex.preg); in operator =()
54 std::swap(error, regex.error); in operator =()
62 bool isValid(std::string &Error) const;
81 std::string *Error = nullptr) const;
93 std::string sub(StringRef Repl, StringRef String,
94 std::string *Error = nullptr) const;
101 static std::string escape(StringRef String);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DProgram.h71 ErrorOr<std::string>
77 std::error_code ChangeStdinToBinary();
78 std::error_code ChangeStdoutToBinary();
117 std::string *ErrMsg = nullptr, ///< If non-zero, provides a pointer to a
131 std::string *ErrMsg = nullptr, bool *ExecutionFailed = nullptr);
167 std::error_code
186 std::string *ErrMsg = nullptr ///< If non-zero, provides a pointer to a
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFStreamer.h31 SmallVector<std::unique_ptr<MipsOptionRecord>, 8> MipsOptionRecords;
36 MipsELFStreamer(MCContext &Context, std::unique_ptr<MCAsmBackend> MAB,
37 std::unique_ptr<MCObjectWriter> OW,
38 std::unique_ptr<MCCodeEmitter> Emitter);
76 std::unique_ptr<MCAsmBackend> MAB,
77 std::unique_ptr<MCObjectWriter> OW,
78 std::unique_ptr<MCCodeEmitter> Emitter,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Testing/Support/
H A DSupportHelpers.cpp16 static std::pair<bool, SmallString<128>> findSrcDirMap(StringRef Argv0) { in findSrcDirMap()
25 return std::make_pair(true, std::move(PathInSameDir)); in findSrcDirMap()
31 return std::make_pair(true, std::move(PathInParentDir)); in findSrcDirMap()
33 return std::pair<bool, SmallString<128>>(false, {}); in findSrcDirMap()
39 std::tie(Found, InputFilePath) = findSrcDirMap(Argv0); in getInputFileDirectory()
/third_party/skia/third_party/externals/tint/fuzzers/
H A Dcli.cc49 std::cout << "Invalid value for " << param << std::endl; in InvalidParam()
50 std::cout << kHelpMessage << std::endl; in InvalidParam()
93 std::swap(argv[i], argv[*argc - 1]); in ParseCliParams()
99 std::cout << kHelpMessage << std::endl; in ParseCliParams()
/third_party/spirv-tools/source/fuzz/
H A Ddata_descriptor.cpp23 uint32_t object, const std::vector<uint32_t>& indices) { in MakeDataDescriptor()
34 std::u32string hash; in operator ()()
39 return std::hash<std::u32string>()(hash); in operator ()()
47 std::equal(first->index().begin(), first->index().end(), in operator ()()
51 std::ostream& operator<<(std::ostream& out, in operator <<()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A Diterator_range.h42 : begin_iterator(std::move(begin_iterator)), in iterator_range()
43 end_iterator(std::move(end_iterator)) {} in iterator_range()
53 /// in for loops a bit easier. Analogous to std::make_pair().
55 return iterator_range<T>(std::move(x), std::move(y)); in make_range()
58 template <typename T> iterator_range<T> make_range(std::pair<T, T> p) { in make_range()
59 return iterator_range<T>(std::move(p.first), std::move(p.second)); in make_range()
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_file.h68 std::vector<std::unique_ptr<EnumGenerator>> enum_generators_;
69 std::vector<std::unique_ptr<MessageGenerator>> message_generators_;
70 std::vector<std::unique_ptr<ExtensionGenerator>> extension_generators_;
75 io::Printer* printer, const std::vector<string>& headers_to_import) const;
/third_party/protobuf/src/google/protobuf/compiler/php/
H A Dphp_generator.h54 bool GenerateAll(const std::vector<const FileDescriptor*>& files,
55 const std::string& parameter,
57 std::string* error) const override;
68 const std::set<string>& aggregate_metadata_prefixes,
76 PROTOC_EXPORT std::string GeneratedClassName(const Descriptor* desc);
77 PROTOC_EXPORT std::string GeneratedClassName(const EnumDescriptor* desc);
78 PROTOC_EXPORT std::string GeneratedClassName(const ServiceDescriptor* desc);
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_enum.h61 const std::map<std::string, std::string>& vars,
89 const std::string classname_;
94 std::map<std::string, std::string> variables_;
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dinline_namespace_conservative.rs18 pub type Ty = ::std::os::raw::c_int;
20 pub type Ty = ::std::os::raw::c_longlong;
29 const UNINIT: ::std::mem::MaybeUninit<Bar> = in bindgen_test_layout_Bar()
30 ::std::mem::MaybeUninit::uninit(); in bindgen_test_layout_Bar()
33 ::std::mem::size_of::<Bar>(), in bindgen_test_layout_Bar()
38 ::std::mem::align_of::<Bar>(), in bindgen_test_layout_Bar()
43 unsafe { ::std::ptr::addr_of!((*ptr).baz) as usize - ptr as usize }, in bindgen_test_layout_Bar()
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
H A Dspinlock_wait.h42 uint32_t SpinLockWait(std::atomic<uint32_t> *w, int n,
50 void SpinLockWake(std::atomic<uint32_t> *w, bool all);
56 void SpinLockDelay(std::atomic<uint32_t> *w, uint32_t value, int loop,
74 void ABSL_INTERNAL_C_SYMBOL(AbslInternalSpinLockWake)(std::atomic<uint32_t> *w,
77 std::atomic<uint32_t> *w, uint32_t value, int loop,
81 inline void absl::base_internal::SpinLockWake(std::atomic<uint32_t> *w, in SpinLockWake()
87 std::atomic<uint32_t> *w, uint32_t value, int loop, in SpinLockDelay()
H A Dspinlock_wait.cc39 uint32_t SpinLockWait(std::atomic<uint32_t> *w, int n, in SpinLockWait()
44 uint32_t v = w->load(std::memory_order_acquire); in SpinLockWait()
52 std::memory_order_acquire, in SpinLockWait()
53 std::memory_order_relaxed)) { in SpinLockWait()
59 static std::atomic<uint64_t> delay_rand;
65 uint64_t r = delay_rand.load(std::memory_order_relaxed); in SpinLockSuggestedDelayNS()
67 delay_rand.store(r, std::memory_order_relaxed); in SpinLockSuggestedDelayNS()
H A Dstrerror.cc42 if (std::is_same<decltype(ret), int>::value) { in StrErrorAdaptor()
53 std::string StrErrorInternal(int errnum) { in StrErrorInternal()
67 std::array<std::string, kSysNerr>* NewStrErrorTable() { in NewStrErrorTable()
68 auto* table = new std::array<std::string, kSysNerr>; in NewStrErrorTable()
77 std::string StrError(int errnum) { in StrError()
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/src/
H A Dtime_zone_impl.h40 static bool LoadTimeZone(const std::string& name, time_zone* tz);
47 const std::string& Name() const { in Name()
75 std::string Version() const { return zone_->Version(); } in Version()
78 std::string Description() const { return zone_->Description(); } in Description()
81 explicit Impl(const std::string& name);
84 const std::string name_;
85 std::unique_ptr<TimeZoneIf> zone_;

Completed in 27 milliseconds

1...<<871872873874875876877878879880>>...2639