HomeSort by relevance Sort by last modified time
    Searched defs:std (Results 426 - 450 of 811) sorted by null

<<11121314151617181920>>

  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/
SerializedDiagnosticReader.h 38 const std::error_category &SDErrorCategory();
40 inline std::error_code make_error_code(SDError E) {
41 return std::error_code(static_cast<int>(E), SDErrorCategory());
64 std::error_code readDiagnostics(StringRef File);
74 std::error_code readMetaBlock(llvm::BitstreamCursor &Stream);
77 std::error_code readDiagnosticBlock(llvm::BitstreamCursor &Stream);
81 virtual std::error_code visitStartOfDiagnostic() {
82 return std::error_code();
85 virtual std::error_code visitEndOfDiagnostic() { return std::error_code();
125 namespace std { namespace
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
FormatVariadic.h 13 // a raw_ostream or converted to a std::string or llvm::SmallString.
15 // // Convert to std::string.
16 // std::string S = formatv("{0} {1}", 1234.412, "test").str();
67 // The parameters are stored in a std::tuple, which does not provide runtime
69 // structure to put the parameters into a std::vector. Since the parameters
72 // Essentially, we are converting a std::tuple<Derived<Ts...>> to a
73 // std::vector<Base*>.
76 std::vector<detail::format_adapter *> operator()(Ts &... Items) {
77 return std::vector<detail::format_adapter *>{&Items...};
82 std::vector<detail::format_adapter *> Adapters
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/clang/Frontend/
SerializedDiagnosticReader.h 38 const std::error_category &SDErrorCategory();
40 inline std::error_code make_error_code(SDError E) {
41 return std::error_code(static_cast<int>(E), SDErrorCategory());
64 std::error_code readDiagnostics(StringRef File);
74 std::error_code readMetaBlock(llvm::BitstreamCursor &Stream);
77 std::error_code readDiagnosticBlock(llvm::BitstreamCursor &Stream);
81 virtual std::error_code visitStartOfDiagnostic() {
82 return std::error_code();
85 virtual std::error_code visitEndOfDiagnostic() { return std::error_code();
125 namespace std { namespace
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
SmallPtrSet.h 134 std::pair<const void *const *, bool> insert_imp(const void *Ptr) {
142 return std::make_pair(APtr, false);
151 return std::make_pair(LastTombstone, true);
157 return std::make_pair(SmallArray + (NumNonEmpty - 1), true);
203 std::pair<const void *const *, bool> insert_imp_big(const void *Ptr);
284 using difference_type = std::ptrdiff_t;
285 using iterator_category = std::forward_iterator_tag;
365 : SmallPtrSetImplBase(SmallStorage, SmallSize, std::move(that)) {}
381 std::pair<iterator, bool> insert(PtrType Ptr) {
383 return std::make_pair(makeIterator(p.first), p.second)
490 namespace std { namespace
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Bitcode/
BitcodeReader.h 31 // ErrorOr/std::error_code for compatibility with legacy clients. FIXME:
34 std::error_code errorToErrorCodeAndEmitErrors(LLVMContext &Ctx, Error Err);
40 return std::move(*Val);
75 Expected<std::unique_ptr<Module>> getModuleImpl(LLVMContext &Context,
92 Expected<std::unique_ptr<Module>> getLazyModule(LLVMContext &Context,
97 Expected<std::unique_ptr<Module>> parseModule(LLVMContext &Context);
104 Expected<std::unique_ptr<ModuleSummaryIndex>> getSummary();
113 std::vector<BitcodeModule> Mods;
120 Expected<std::vector<BitcodeModule>>
127 Expected<std::unique_ptr<Module>
258 namespace std { namespace in namespace:llvm
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
FormatVariadic.h 13 // a raw_ostream or converted to a std::string or llvm::SmallString.
15 // // Convert to std::string.
16 // std::string S = formatv("{0} {1}", 1234.412, "test").str();
67 // The parameters are stored in a std::tuple, which does not provide runtime
69 // structure to put the parameters into a std::vector. Since the parameters
72 // Essentially, we are converting a std::tuple<Derived<Ts...>> to a
73 // std::vector<Base*>.
76 std::vector<detail::format_adapter *> operator()(Ts &... Items) {
77 return std::vector<detail::format_adapter *>{&Items...};
82 std::vector<detail::format_adapter *> Adapters
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/clang/Frontend/
SerializedDiagnosticReader.h 38 const std::error_category &SDErrorCategory();
40 inline std::error_code make_error_code(SDError E) {
41 return std::error_code(static_cast<int>(E), SDErrorCategory());
64 std::error_code readDiagnostics(StringRef File);
74 std::error_code readMetaBlock(llvm::BitstreamCursor &Stream);
77 std::error_code readDiagnosticBlock(llvm::BitstreamCursor &Stream);
81 virtual std::error_code visitStartOfDiagnostic() {
82 return std::error_code();
85 virtual std::error_code visitEndOfDiagnostic() { return std::error_code();
125 namespace std { namespace
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
SmallPtrSet.h 134 std::pair<const void *const *, bool> insert_imp(const void *Ptr) {
142 return std::make_pair(APtr, false);
151 return std::make_pair(LastTombstone, true);
157 return std::make_pair(SmallArray + (NumNonEmpty - 1), true);
203 std::pair<const void *const *, bool> insert_imp_big(const void *Ptr);
284 using difference_type = std::ptrdiff_t;
285 using iterator_category = std::forward_iterator_tag;
365 : SmallPtrSetImplBase(SmallStorage, SmallSize, std::move(that)) {}
381 std::pair<iterator, bool> insert(PtrType Ptr) {
383 return std::make_pair(makeIterator(p.first), p.second)
490 namespace std { namespace
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Bitcode/
BitcodeReader.h 31 // ErrorOr/std::error_code for compatibility with legacy clients. FIXME:
34 std::error_code errorToErrorCodeAndEmitErrors(LLVMContext &Ctx, Error Err);
40 return std::move(*Val);
75 Expected<std::unique_ptr<Module>> getModuleImpl(LLVMContext &Context,
92 Expected<std::unique_ptr<Module>> getLazyModule(LLVMContext &Context,
97 Expected<std::unique_ptr<Module>> parseModule(LLVMContext &Context);
104 Expected<std::unique_ptr<ModuleSummaryIndex>> getSummary();
113 std::vector<BitcodeModule> Mods;
120 Expected<std::vector<BitcodeModule>>
127 Expected<std::unique_ptr<Module>
258 namespace std { namespace in namespace:llvm
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
FormatVariadic.h 13 // a raw_ostream or converted to a std::string or llvm::SmallString.
15 // // Convert to std::string.
16 // std::string S = formatv("{0} {1}", 1234.412, "test").str();
67 // The parameters are stored in a std::tuple, which does not provide runtime
69 // structure to put the parameters into a std::vector. Since the parameters
72 // Essentially, we are converting a std::tuple<Derived<Ts...>> to a
73 // std::vector<Base*>.
76 std::vector<detail::format_adapter *> operator()(Ts &... Items) {
77 return std::vector<detail::format_adapter *>{&Items...};
82 std::vector<detail::format_adapter *> Adapters
    [all...]