Typedefs | |
template<typename T > | |
using | add_const_t = typename std::add_const< T >::type |
template<typename T > | |
using | add_cv_t = typename std::add_cv< T >::type |
template<typename T > | |
using | add_lvalue_reference_t = typename std::add_lvalue_reference< T >::type |
template<typename T > | |
using | add_pointer_t = typename std::add_pointer< T >::type |
template<typename T > | |
using | add_rvalue_reference_t = typename std::add_rvalue_reference< T >::type |
template<typename T > | |
using | add_volatile_t = typename std::add_volatile< T >::type |
template<size_t Len, size_t Align = type_traits_internal:: default_alignment_of_aligned_storage<Len>::value> | |
using | aligned_storage_t = typename std::aligned_storage< Len, Align >::type |
using | BitGen = random_internal::NonsecureURBGBase< random_internal::randen_engine< uint64_t > > |
using | civil_diff_t = time_internal::cctz::diff_t |
using | civil_year_t = time_internal::cctz::year_t |
using | CivilDay = time_internal::cctz::detail::civil_time< time_internal::day_tag > |
using | CivilHour = time_internal::cctz::detail::civil_time< time_internal::hour_tag > |
using | CivilMinute = time_internal::cctz::detail::civil_time< time_internal::minute_tag > |
using | CivilMonth = time_internal::cctz::detail::civil_time< time_internal::month_tag > |
using | CivilSecond = time_internal::cctz::detail::civil_time< time_internal::second_tag > |
using | CivilYear = time_internal::cctz::detail::civil_time< time_internal::year_tag > |
template<typename... T> | |
using | common_type_t = typename std::common_type< T... >::type |
template<bool B, typename T , typename F > | |
using | conditional_t = typename std::conditional< B, T, F >::type |
template<typename T > | |
using | decay_t = typename std::decay< T >::type |
template<bool B, typename T = void> | |
using | enable_if_t = typename std::enable_if< B, T >::type |
template<typename T > | |
using | EnableSplitIfString = typename std::enable_if< std::is_same< T, std::string >::value||std::is_same< T, const std::string >::value, int >::type |
template<typename T > | |
using | Flag = flags_internal::Flag< T > |
using | FormatArg = str_format_internal::FormatArgImpl |
template<typename... Args> | |
using | FormatSpec = str_format_internal::FormatSpecTemplate< str_format_internal::ArgumentToConv< Args >()... > |
using | GetTidType = decltype(absl::base_internal::GetTID()) |
template<typename T > | |
using | Hash = absl::hash_internal::Hash< T > |
template<size_t I> | |
using | in_place_index_t = void(*)(utility_internal::InPlaceIndexTag< I >) |
template<typename T > | |
using | in_place_type_t = void(*)(utility_internal::InPlaceTypeTag< T >) |
template<size_t... Ints> | |
using | index_sequence = integer_sequence< size_t, Ints... > |
template<typename... Ts> | |
using | index_sequence_for = make_index_sequence< sizeof...(Ts)> |
using | InsecureBitGen = random_internal::NonsecureURBGBase< random_internal::pcg64_2018_engine > |
template<size_t N> | |
using | make_index_sequence = make_integer_sequence< size_t, N > |
template<typename T , T N> | |
using | make_integer_sequence = typename utility_internal::Gen< T, N >::type |
template<typename T > | |
using | make_signed_t = typename std::make_signed< T >::type |
template<typename T > | |
using | make_unsigned_t = typename std::make_unsigned< T >::type |
using | MockBernoulli = random_internal::MockOverloadSet< absl::bernoulli_distribution, bool(MockingBitGen &, double)> |
template<typename RealType > | |
using | MockBeta = random_internal::MockOverloadSet< absl::beta_distribution< RealType >, RealType(MockingBitGen &, RealType, RealType)> |
template<typename RealType > | |
using | MockExponential = random_internal::MockOverloadSet< absl::exponential_distribution< RealType >, RealType(MockingBitGen &, RealType)> |
template<typename RealType > | |
using | MockGaussian = random_internal::MockOverloadSet< absl::gaussian_distribution< RealType >, RealType(MockingBitGen &, RealType, RealType)> |
template<typename IntType > | |
using | MockLogUniform = random_internal::MockOverloadSet< absl::log_uniform_int_distribution< IntType >, IntType(MockingBitGen &, IntType, IntType, IntType)> |
template<typename IntType > | |
using | MockPoisson = random_internal::MockOverloadSet< absl::poisson_distribution< IntType >, IntType(MockingBitGen &, double)> |
template<typename R > | |
using | MockUniform = random_internal::MockOverloadSet< random_internal::UniformDistributionWrapper< R >, R(IntervalClosedOpenTag, MockingBitGen &, R, R), R(IntervalClosedClosedTag, MockingBitGen &, R, R), R(IntervalOpenOpenTag, MockingBitGen &, R, R), R(IntervalOpenClosedTag, MockingBitGen &, R, R), R(MockingBitGen &, R, R), R(MockingBitGen &)> |
template<typename IntType > | |
using | MockZipf = random_internal::MockOverloadSet< absl::zipf_distribution< IntType >, IntType(MockingBitGen &, IntType, double, double)> |
template<char... Conv> | |
using | ParsedFormat = str_format_internal::ExtendedParsedFormat< absl::str_format_internal::ToFormatConversionCharSet(Conv)... > |
template<typename T > | |
using | remove_all_extents_t = typename std::remove_all_extents< T >::type |
template<typename T > | |
using | remove_const_t = typename std::remove_const< T >::type |
template<typename T > | |
using | remove_cv_t = typename std::remove_cv< T >::type |
template<typename T > | |
using | remove_cvref_t = typename remove_cvref< T >::type |
template<typename T > | |
using | remove_extent_t = typename std::remove_extent< T >::type |
template<typename T > | |
using | remove_pointer_t = typename std::remove_pointer< T >::type |
template<typename T > | |
using | remove_reference_t = typename std::remove_reference< T >::type |
template<typename T > | |
using | remove_volatile_t = typename std::remove_volatile< T >::type |
template<typename F > | |
using | result_of_t = typename type_traits_internal::result_of< F >::type |
using | SeedSeq = random_internal::SaltedSeedSeq< std::seed_seq > |
template<typename T > | |
using | underlying_type_t = typename std::underlying_type< T >::type |
template<std::size_t I, class T > | |
using | variant_alternative_t = typename variant_alternative< I, T >::type |
template<typename... Ts> | |
using | void_t = typename type_traits_internal::VoidTImpl< Ts... >::type |
using | Weekday = time_internal::cctz::weekday |
Functions | |
Status | AbortedError (absl::string_view message) |
Duration | AbsDuration (Duration d) |
ABSL_COMPARE_INLINE_INIT (partial_ordering, equivalent, compare_internal::eq::equivalent) | |
ABSL_COMPARE_INLINE_INIT (partial_ordering, greater, compare_internal::ord::greater) | |
ABSL_COMPARE_INLINE_INIT (partial_ordering, less, compare_internal::ord::less) | |
ABSL_COMPARE_INLINE_INIT (partial_ordering, unordered, compare_internal::ncmp::unordered) | |
ABSL_COMPARE_INLINE_INIT (strong_equality, equal, compare_internal::eq::equal) | |
ABSL_COMPARE_INLINE_INIT (strong_equality, equivalent, compare_internal::eq::equivalent) | |
ABSL_COMPARE_INLINE_INIT (strong_equality, nonequal, compare_internal::eq::nonequal) | |
ABSL_COMPARE_INLINE_INIT (strong_equality, nonequivalent, compare_internal::eq::nonequivalent) | |
ABSL_COMPARE_INLINE_INIT (strong_ordering, equal, compare_internal::eq::equal) | |
ABSL_COMPARE_INLINE_INIT (strong_ordering, equivalent, compare_internal::eq::equivalent) | |
ABSL_COMPARE_INLINE_INIT (strong_ordering, greater, compare_internal::ord::greater) | |
ABSL_COMPARE_INLINE_INIT (strong_ordering, less, compare_internal::ord::less) | |
ABSL_COMPARE_INLINE_INIT (weak_equality, equivalent, compare_internal::eq::equivalent) | |
ABSL_COMPARE_INLINE_INIT (weak_equality, nonequivalent, compare_internal::eq::nonequivalent) | |
ABSL_COMPARE_INLINE_INIT (weak_ordering, equivalent, compare_internal::eq::equivalent) | |
ABSL_COMPARE_INLINE_INIT (weak_ordering, greater, compare_internal::ord::greater) | |
ABSL_COMPARE_INLINE_INIT (weak_ordering, less, compare_internal::ord::less) | |
template<typename Dest , typename Source , typename std::enable_if< !internal_casts::is_bitcastable< Dest, Source >::value, int >::type = 0> | |
ABSL_DEPRECATED ("absl::bit_cast type requirements were violated. Update the types " "being used such that they are the same size and are both " "TriviallyCopyable.") inline Dest bit_cast(const Source &source) | |
ABSL_DEPRECATED ("absl::RegisterSymbolizer() is deprecated and will be removed " "on or after 2023-05-01") void RegisterSymbolizer(bool(*fn)(const void *pc | |
static ABSL_CONST_INIT GraphCycles *deadlock_graph | ABSL_GUARDED_BY (deadlock_graph_mu) ABSL_PT_GUARDED_BY(deadlock_graph_mu) |
static ABSL_CONST_INIT GraphCycles *deadlock_graph | ABSL_GUARDED_BY (deadlock_graph_mu) ABSL_PT_GUARDED_BY(deadlock_graph_mu) |
static struct absl::SynchEvent | ABSL_GUARDED_BY (synch_event_mu) |
static struct absl::SynchEvent | ABSL_GUARDED_BY (synch_event_mu) |
ABSL_INTERNAL_INLINE_CONSTEXPR (in_place_t, in_place, {}) | |
ABSL_INTERNAL_INLINE_CONSTEXPR (IntervalClosedClosedTag, IntervalClosed, {}) | |
ABSL_NAMESPACE_BEGIN | ABSL_INTERNAL_INLINE_CONSTEXPR (IntervalClosedClosedTag, IntervalClosedClosed, {}) |
ABSL_INTERNAL_INLINE_CONSTEXPR (IntervalClosedOpenTag, IntervalClosedOpen, {}) | |
ABSL_INTERNAL_INLINE_CONSTEXPR (IntervalOpenClosedTag, IntervalOpenClosed, {}) | |
ABSL_INTERNAL_INLINE_CONSTEXPR (IntervalOpenOpenTag, IntervalOpen, {}) | |
ABSL_INTERNAL_INLINE_CONSTEXPR (IntervalOpenOpenTag, IntervalOpenOpen, {}) | |
ABSL_INTERNAL_INLINE_CONSTEXPR (nullopt_t, nullopt, nullopt_t(optional_internal::init_t())) | |
ABSL_INTERNAL_INLINE_CONSTEXPR (size_t, variant_npos, static_cast< size_t >(-1)) | |
ABSL_XRAY_LOG_ARGS (1) void Mutex | |
static void | AbslFailureSignalHandler (int signo, siginfo_t *, void *ucontext) |
static void | AbslFailureSignalHandler (int signo, siginfo_t *, void *ucontext) |
template<typename H , typename T , size_t N, typename A > | |
H | AbslHashValue (H h, const absl::InlinedVector< T, N, A > &a) |
bool | AbslParseFlag (absl::string_view text, absl::LogSeverity *dst, std::string *err) |
bool | AbslParseFlag (absl::string_view text, absl::Time *t, std::string *error) |
bool | AbslParseFlag (absl::string_view text, Duration *dst, std::string *) |
std::string | AbslUnparseFlag (absl::LogSeverity v) |
std::string | AbslUnparseFlag (absl::Time t) |
std::string | AbslUnparseFlag (Duration d) |
ABSL_NAMESPACE_BEGIN strings_internal::AlphaNumFormatterImpl | AlphaNumFormatter () |
Status | AlreadyExistsError (absl::string_view message) |
template<typename ValueType > | |
ValueType | any_cast (any &&operand) |
template<typename ValueType > | |
ValueType | any_cast (any &operand) |
template<typename ValueType > | |
ValueType * | any_cast (any *operand) noexcept |
template<typename T > | |
T * | any_cast (any *operand) noexcept |
template<typename ValueType > | |
ValueType | any_cast (const any &operand) |
template<typename ValueType > | |
const ValueType * | any_cast (const any *operand) noexcept |
template<typename T > | |
const T * | any_cast (const any *operand) noexcept |
static char * | Append (char *out, const AlphaNum &x) |
static char * | Append (char *out, const AlphaNum &x) |
template<typename Functor , typename Tuple > | |
auto | apply (Functor &&functor, Tuple &&t) -> decltype(utility_internal::apply_helper(absl::forward< Functor >(functor), absl::forward< Tuple >(t), absl::make_index_sequence< std::tuple_size< typename std::remove_reference< Tuple >::type >::value > |
bool | ascii_isalnum (unsigned char c) |
bool | ascii_isalpha (unsigned char c) |
bool | ascii_isascii (unsigned char c) |
bool | ascii_isblank (unsigned char c) |
bool | ascii_iscntrl (unsigned char c) |
bool | ascii_isdigit (unsigned char c) |
bool | ascii_isgraph (unsigned char c) |
bool | ascii_islower (unsigned char c) |
bool | ascii_isprint (unsigned char c) |
bool | ascii_ispunct (unsigned char c) |
bool | ascii_isspace (unsigned char c) |
bool | ascii_isupper (unsigned char c) |
bool | ascii_isxdigit (unsigned char c) |
char | ascii_tolower (unsigned char c) |
char | ascii_toupper (unsigned char c) |
ABSL_MUST_USE_RESULT std::string | AsciiStrToLower (absl::string_view s) |
void | AsciiStrToLower (std::string *s) |
ABSL_MUST_USE_RESULT std::string | AsciiStrToUpper (absl::string_view s) |
void | AsciiStrToUpper (std::string *s) |
static void | AtomicClearBits (std::atomic< intptr_t > *pv, intptr_t bits, intptr_t wait_until_clear) |
static void | AtomicClearBits (std::atomic< intptr_t > *pv, intptr_t bits, intptr_t wait_until_clear) |
static void | AtomicSetBits (std::atomic< intptr_t > *pv, intptr_t bits, intptr_t wait_until_clear) |
static void | AtomicSetBits (std::atomic< intptr_t > *pv, intptr_t bits, intptr_t wait_until_clear) |
std::string | Base64Escape (absl::string_view src) |
void | Base64Escape (absl::string_view src, std::string *dest) |
bool | Base64Unescape (absl::string_view src, std::string *dest) |
static void | BasicTests (bool notify_before_waiting, Notification *notification) |
static void | BasicTests (bool notify_before_waiting, Notification *notification) |
template<typename URBG > | |
bool | Bernoulli (URBG &&urbg, double p) |
template<typename RealType , typename URBG > | |
RealType | Beta (URBG &&urbg, RealType alpha, RealType beta) |
template<class F , class... BoundArgs> | |
constexpr ABSL_NAMESPACE_BEGIN functional_internal::bind_front_t< F, BoundArgs... > | bind_front (F &&func, BoundArgs &&... args) |
template<typename Dest , typename Source , typename std::enable_if< sizeof(Dest)==sizeof(Source) &&type_traits_internal::is_trivially_copyable< Source >::value &&type_traits_internal::is_trivially_copyable< Dest >::value &&std::is_default_constructible< Dest >::value, int >::type = 0> | |
Dest | bit_cast (const Source &source) |
template<class T > | |
ABSL_INTERNAL_CONSTEXPR_CLZ std::enable_if< std::is_unsigned< T >::value, T >::type | bit_ceil (T x) |
template<class T > | |
ABSL_INTERNAL_CONSTEXPR_CLZ std::enable_if< std::is_unsigned< T >::value, T >::type | bit_floor (T x) noexcept |
template<class T > | |
ABSL_INTERNAL_CONSTEXPR_CLZ std::enable_if< std::is_unsigned< T >::value, T >::type | bit_width (T x) noexcept |
std::string | BytesToHexString (absl::string_view from) |
template<typename Sequence , typename T > | |
decay_t< T > | c_accumulate (const Sequence &sequence, T &&init) |
template<typename Sequence , typename T , typename BinaryOp > | |
decay_t< T > | c_accumulate (const Sequence &sequence, T &&init, BinaryOp &&binary_op) |
template<typename InputSequence , typename OutputIt > | |
OutputIt | c_adjacent_difference (const InputSequence &input, OutputIt output_first) |
template<typename InputSequence , typename OutputIt , typename BinaryOp > | |
OutputIt | c_adjacent_difference (const InputSequence &input, OutputIt output_first, BinaryOp &&op) |
template<typename Sequence > | |
container_algorithm_internal::ContainerIter< Sequence > | c_adjacent_find (Sequence &sequence) |
template<typename Sequence , typename BinaryPredicate > | |
container_algorithm_internal::ContainerIter< Sequence > | c_adjacent_find (Sequence &sequence, BinaryPredicate &&pred) |
template<typename C , typename Pred > | |
bool | c_all_of (const C &c, Pred &&pred) |
template<typename C , typename Pred > | |
bool | c_any_of (const C &c, Pred &&pred) |
template<typename Sequence , typename T > | |
bool | c_binary_search (Sequence &&sequence, T &&value) |
template<typename Sequence , typename T , typename LessThan > | |
bool | c_binary_search (Sequence &&sequence, T &&value, LessThan &&comp) |
template<typename InputSequence , typename OutputIterator > | |
OutputIterator | c_copy (const InputSequence &input, OutputIterator output) |
template<typename C , typename BidirectionalIterator > | |
BidirectionalIterator | c_copy_backward (const C &src, BidirectionalIterator dest) |
template<typename InputSequence , typename OutputIterator , typename Pred > | |
OutputIterator | c_copy_if (const InputSequence &input, OutputIterator output, Pred &&pred) |
template<typename C , typename Size , typename OutputIterator > | |
OutputIterator | c_copy_n (const C &input, Size n, OutputIterator output) |
template<typename C , typename T > | |
container_algorithm_internal::ContainerDifferenceType< const C > | c_count (const C &c, T &&value) |
template<typename C , typename Pred > | |
container_algorithm_internal::ContainerDifferenceType< const C > | c_count_if (const C &c, Pred &&pred) |
template<typename C > | |
container_algorithm_internal::ContainerDifferenceType< const C > | c_distance (const C &c) |
template<typename C1 , typename C2 > | |
bool | c_equal (const C1 &c1, const C2 &c2) |
template<typename C1 , typename C2 , typename BinaryPredicate > | |
bool | c_equal (const C1 &c1, const C2 &c2, BinaryPredicate &&pred) |
template<typename Sequence , typename T > | |
container_algorithm_internal::ContainerIterPairType< Sequence, Sequence > | c_equal_range (Sequence &sequence, T &&value) |
template<typename Sequence , typename T , typename LessThan > | |
container_algorithm_internal::ContainerIterPairType< Sequence, Sequence > | c_equal_range (Sequence &sequence, T &&value, LessThan &&comp) |
template<typename C , typename T > | |
void | c_fill (C &c, T &&value) |
template<typename C , typename Size , typename T > | |
void | c_fill_n (C &c, Size n, T &&value) |
template<typename C , typename T > | |
container_algorithm_internal::ContainerIter< C > | c_find (C &c, T &&value) |
template<typename Sequence1 , typename Sequence2 > | |
container_algorithm_internal::ContainerIter< Sequence1 > | c_find_end (Sequence1 &sequence, Sequence2 &subsequence) |
template<typename Sequence1 , typename Sequence2 , typename BinaryPredicate > | |
container_algorithm_internal::ContainerIter< Sequence1 > | c_find_end (Sequence1 &sequence, Sequence2 &subsequence, BinaryPredicate &&pred) |
template<typename C1 , typename C2 > | |
container_algorithm_internal::ContainerIter< C1 > | c_find_first_of (C1 &container, C2 &options) |
template<typename C1 , typename C2 , typename BinaryPredicate > | |
container_algorithm_internal::ContainerIter< C1 > | c_find_first_of (C1 &container, C2 &options, BinaryPredicate &&pred) |
template<typename C , typename Pred > | |
container_algorithm_internal::ContainerIter< C > | c_find_if (C &c, Pred &&pred) |
template<typename C , typename Pred > | |
container_algorithm_internal::ContainerIter< C > | c_find_if_not (C &c, Pred &&pred) |
template<typename C , typename Function > | |
decay_t< Function > | c_for_each (C &&c, Function &&f) |
template<typename C , typename Generator > | |
void | c_generate (C &c, Generator &&gen) |
template<typename C , typename Size , typename Generator > | |
container_algorithm_internal::ContainerIter< C > | c_generate_n (C &c, Size n, Generator &&gen) |
template<typename C1 , typename C2 > | |
bool | c_includes (const C1 &c1, const C2 &c2) |
template<typename C1 , typename C2 , typename LessThan > | |
bool | c_includes (const C1 &c1, const C2 &c2, LessThan &&comp) |
template<typename Sequence1 , typename Sequence2 , typename T > | |
decay_t< T > | c_inner_product (const Sequence1 &factors1, const Sequence2 &factors2, T &&sum) |
template<typename Sequence1 , typename Sequence2 , typename T , typename BinaryOp1 , typename BinaryOp2 > | |
decay_t< T > | c_inner_product (const Sequence1 &factors1, const Sequence2 &factors2, T &&sum, BinaryOp1 &&op1, BinaryOp2 &&op2) |
template<typename C > | |
void | c_inplace_merge (C &c, container_algorithm_internal::ContainerIter< C > middle) |
template<typename C , typename LessThan > | |
void | c_inplace_merge (C &c, container_algorithm_internal::ContainerIter< C > middle, LessThan &&comp) |
template<typename Sequence , typename T > | |
void | c_iota (Sequence &sequence, T &&value) |
template<typename RandomAccessContainer > | |
bool | c_is_heap (const RandomAccessContainer &sequence) |
template<typename RandomAccessContainer , typename LessThan > | |
bool | c_is_heap (const RandomAccessContainer &sequence, LessThan &&comp) |
template<typename RandomAccessContainer > | |
container_algorithm_internal::ContainerIter< RandomAccessContainer > | c_is_heap_until (RandomAccessContainer &sequence) |
template<typename RandomAccessContainer , typename LessThan > | |
container_algorithm_internal::ContainerIter< RandomAccessContainer > | c_is_heap_until (RandomAccessContainer &sequence, LessThan &&comp) |
template<typename C , typename Pred > | |
bool | c_is_partitioned (const C &c, Pred &&pred) |
template<typename C1 , typename C2 > | |
bool | c_is_permutation (const C1 &c1, const C2 &c2) |
template<typename C1 , typename C2 , typename BinaryPredicate > | |
bool | c_is_permutation (const C1 &c1, const C2 &c2, BinaryPredicate &&pred) |
template<typename C > | |
bool | c_is_sorted (const C &c) |
template<typename C , typename LessThan > | |
bool | c_is_sorted (const C &c, LessThan &&comp) |
template<typename C > | |
container_algorithm_internal::ContainerIter< C > | c_is_sorted_until (C &c) |
template<typename C , typename LessThan > | |
container_algorithm_internal::ContainerIter< C > | c_is_sorted_until (C &c, LessThan &&comp) |
template<typename Sequence1 , typename Sequence2 > | |
bool | c_lexicographical_compare (Sequence1 &&sequence1, Sequence2 &&sequence2) |
template<typename Sequence1 , typename Sequence2 , typename LessThan > | |
bool | c_lexicographical_compare (Sequence1 &&sequence1, Sequence2 &&sequence2, LessThan &&comp) |
template<typename C , typename EqualityComparable > | |
bool | c_linear_search (const C &c, EqualityComparable &&value) |
template<typename Sequence , typename T > | |
container_algorithm_internal::ContainerIter< Sequence > | c_lower_bound (Sequence &sequence, T &&value) |
template<typename Sequence , typename T , typename LessThan > | |
container_algorithm_internal::ContainerIter< Sequence > | c_lower_bound (Sequence &sequence, T &&value, LessThan &&comp) |
template<typename RandomAccessContainer > | |
void | c_make_heap (RandomAccessContainer &sequence) |
template<typename RandomAccessContainer , typename LessThan > | |
void | c_make_heap (RandomAccessContainer &sequence, LessThan &&comp) |
template<typename Sequence > | |
container_algorithm_internal::ContainerIter< Sequence > | c_max_element (Sequence &sequence) |
template<typename Sequence , typename LessThan > | |
container_algorithm_internal::ContainerIter< Sequence > | c_max_element (Sequence &sequence, LessThan &&comp) |
template<typename C1 , typename C2 , typename OutputIterator > | |
OutputIterator | c_merge (const C1 &c1, const C2 &c2, OutputIterator result) |
template<typename C1 , typename C2 , typename OutputIterator , typename LessThan > | |
OutputIterator | c_merge (const C1 &c1, const C2 &c2, OutputIterator result, LessThan &&comp) |
template<typename Sequence > | |
container_algorithm_internal::ContainerIter< Sequence > | c_min_element (Sequence &sequence) |
template<typename Sequence , typename LessThan > | |
container_algorithm_internal::ContainerIter< Sequence > | c_min_element (Sequence &sequence, LessThan &&comp) |
template<typename C > | |
container_algorithm_internal::ContainerIterPairType< C, C > | c_minmax_element (C &c) |
template<typename C , typename LessThan > | |
container_algorithm_internal::ContainerIterPairType< C, C > | c_minmax_element (C &c, LessThan &&comp) |
template<typename C1 , typename C2 > | |
container_algorithm_internal::ContainerIterPairType< C1, C2 > | c_mismatch (C1 &c1, C2 &c2) |
template<typename C1 , typename C2 , typename BinaryPredicate > | |
container_algorithm_internal::ContainerIterPairType< C1, C2 > | c_mismatch (C1 &c1, C2 &c2, BinaryPredicate pred) |
template<typename C , typename OutputIterator > | |
OutputIterator | c_move (C &&src, OutputIterator dest) |
template<typename C , typename BidirectionalIterator > | |
BidirectionalIterator | c_move_backward (C &&src, BidirectionalIterator dest) |
template<typename C > | |
bool | c_next_permutation (C &c) |
template<typename C , typename LessThan > | |
bool | c_next_permutation (C &c, LessThan &&comp) |
template<typename C , typename Pred > | |
bool | c_none_of (const C &c, Pred &&pred) |
template<typename RandomAccessContainer > | |
void | c_nth_element (RandomAccessContainer &sequence, container_algorithm_internal::ContainerIter< RandomAccessContainer > nth) |
template<typename RandomAccessContainer , typename LessThan > | |
void | c_nth_element (RandomAccessContainer &sequence, container_algorithm_internal::ContainerIter< RandomAccessContainer > nth, LessThan &&comp) |
template<typename RandomAccessContainer > | |
void | c_partial_sort (RandomAccessContainer &sequence, container_algorithm_internal::ContainerIter< RandomAccessContainer > middle) |
template<typename RandomAccessContainer , typename LessThan > | |
void | c_partial_sort (RandomAccessContainer &sequence, container_algorithm_internal::ContainerIter< RandomAccessContainer > middle, LessThan &&comp) |
template<typename C , typename RandomAccessContainer > | |
container_algorithm_internal::ContainerIter< RandomAccessContainer > | c_partial_sort_copy (const C &sequence, RandomAccessContainer &result) |
template<typename C , typename RandomAccessContainer , typename LessThan > | |
container_algorithm_internal::ContainerIter< RandomAccessContainer > | c_partial_sort_copy (const C &sequence, RandomAccessContainer &result, LessThan &&comp) |
template<typename InputSequence , typename OutputIt > | |
OutputIt | c_partial_sum (const InputSequence &input, OutputIt output_first) |
template<typename InputSequence , typename OutputIt , typename BinaryOp > | |
OutputIt | c_partial_sum (const InputSequence &input, OutputIt output_first, BinaryOp &&op) |
template<typename C , typename Pred > | |
container_algorithm_internal::ContainerIter< C > | c_partition (C &c, Pred &&pred) |
template<typename C , typename OutputIterator1 , typename OutputIterator2 , typename Pred > | |
std::pair< OutputIterator1, OutputIterator2 > | c_partition_copy (const C &c, OutputIterator1 out_true, OutputIterator2 out_false, Pred &&pred) |
template<typename C , typename Pred > | |
container_algorithm_internal::ContainerIter< C > | c_partition_point (C &c, Pred &&pred) |
template<typename RandomAccessContainer > | |
void | c_pop_heap (RandomAccessContainer &sequence) |
template<typename RandomAccessContainer , typename LessThan > | |
void | c_pop_heap (RandomAccessContainer &sequence, LessThan &&comp) |
template<typename C > | |
bool | c_prev_permutation (C &c) |
template<typename C , typename LessThan > | |
bool | c_prev_permutation (C &c, LessThan &&comp) |
template<typename RandomAccessContainer > | |
void | c_push_heap (RandomAccessContainer &sequence) |
template<typename RandomAccessContainer , typename LessThan > | |
void | c_push_heap (RandomAccessContainer &sequence, LessThan &&comp) |
template<typename C , typename OutputIterator , typename T > | |
OutputIterator | c_remove_copy (const C &c, OutputIterator result, T &&value) |
template<typename C , typename OutputIterator , typename Pred > | |
OutputIterator | c_remove_copy_if (const C &c, OutputIterator result, Pred &&pred) |
template<typename Sequence , typename T > | |
void | c_replace (Sequence &sequence, const T &old_value, const T &new_value) |
template<typename C , typename OutputIterator , typename T > | |
OutputIterator | c_replace_copy (const C &c, OutputIterator result, T &&old_value, T &&new_value) |
template<typename C , typename OutputIterator , typename Pred , typename T > | |
OutputIterator | c_replace_copy_if (const C &c, OutputIterator result, Pred &&pred, T &&new_value) |
template<typename C , typename Pred , typename T > | |
void | c_replace_if (C &c, Pred &&pred, T &&new_value) |
template<typename Sequence > | |
void | c_reverse (Sequence &sequence) |
template<typename C , typename OutputIterator > | |
OutputIterator | c_reverse_copy (const C &sequence, OutputIterator result) |
template<typename C , typename Iterator = container_algorithm_internal::ContainerIter<C>> | |
Iterator | c_rotate (C &sequence, Iterator middle) |
template<typename C , typename OutputIterator > | |
OutputIterator | c_rotate_copy (const C &sequence, container_algorithm_internal::ContainerIter< const C > middle, OutputIterator result) |
template<typename Sequence1 , typename Sequence2 > | |
container_algorithm_internal::ContainerIter< Sequence1 > | c_search (Sequence1 &sequence, Sequence2 &subsequence) |
template<typename Sequence1 , typename Sequence2 , typename BinaryPredicate > | |
container_algorithm_internal::ContainerIter< Sequence1 > | c_search (Sequence1 &sequence, Sequence2 &subsequence, BinaryPredicate &&pred) |
template<typename Sequence , typename Size , typename T > | |
container_algorithm_internal::ContainerIter< Sequence > | c_search_n (Sequence &sequence, Size count, T &&value) |
template<typename Sequence , typename Size , typename T , typename BinaryPredicate > | |
container_algorithm_internal::ContainerIter< Sequence > | c_search_n (Sequence &sequence, Size count, T &&value, BinaryPredicate &&pred) |
template<typename C1 , typename C2 , typename OutputIterator , typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C1>::value, void>::type, typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C2>::value, void>::type> | |
OutputIterator | c_set_difference (const C1 &c1, const C2 &c2, OutputIterator output) |
template<typename C1 , typename C2 , typename OutputIterator , typename LessThan , typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C1>::value, void>::type, typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C2>::value, void>::type> | |
OutputIterator | c_set_difference (const C1 &c1, const C2 &c2, OutputIterator output, LessThan &&comp) |
template<typename C1 , typename C2 , typename OutputIterator , typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C1>::value, void>::type, typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C2>::value, void>::type> | |
OutputIterator | c_set_intersection (const C1 &c1, const C2 &c2, OutputIterator output) |
template<typename C1 , typename C2 , typename OutputIterator , typename LessThan , typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C1>::value, void>::type, typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C2>::value, void>::type> | |
OutputIterator | c_set_intersection (const C1 &c1, const C2 &c2, OutputIterator output, LessThan &&comp) |
template<typename C1 , typename C2 , typename OutputIterator , typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C1>::value, void>::type, typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C2>::value, void>::type> | |
OutputIterator | c_set_symmetric_difference (const C1 &c1, const C2 &c2, OutputIterator output) |
template<typename C1 , typename C2 , typename OutputIterator , typename LessThan , typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C1>::value, void>::type, typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C2>::value, void>::type> | |
OutputIterator | c_set_symmetric_difference (const C1 &c1, const C2 &c2, OutputIterator output, LessThan &&comp) |
template<typename C1 , typename C2 , typename OutputIterator , typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C1>::value, void>::type, typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C2>::value, void>::type> | |
OutputIterator | c_set_union (const C1 &c1, const C2 &c2, OutputIterator output) |
template<typename C1 , typename C2 , typename OutputIterator , typename LessThan , typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C1>::value, void>::type, typename = typename std::enable_if< !container_algorithm_internal::IsUnorderedContainer<C2>::value, void>::type> | |
OutputIterator | c_set_union (const C1 &c1, const C2 &c2, OutputIterator output, LessThan &&comp) |
template<typename RandomAccessContainer , typename UniformRandomBitGenerator > | |
void | c_shuffle (RandomAccessContainer &c, UniformRandomBitGenerator &&gen) |
template<typename C > | |
void | c_sort (C &c) |
template<typename C , typename LessThan > | |
void | c_sort (C &c, LessThan &&comp) |
template<typename RandomAccessContainer > | |
void | c_sort_heap (RandomAccessContainer &sequence) |
template<typename RandomAccessContainer , typename LessThan > | |
void | c_sort_heap (RandomAccessContainer &sequence, LessThan &&comp) |
template<typename C , typename Pred > | |
container_algorithm_internal::ContainerIter< C > | c_stable_partition (C &c, Pred &&pred) |
template<typename C > | |
void | c_stable_sort (C &c) |
template<typename C , typename LessThan > | |
void | c_stable_sort (C &c, LessThan &&comp) |
template<typename C1 , typename C2 > | |
container_algorithm_internal::ContainerIter< C2 > | c_swap_ranges (C1 &c1, C2 &c2) |
template<typename InputSequence , typename OutputIterator , typename UnaryOp > | |
OutputIterator | c_transform (const InputSequence &input, OutputIterator output, UnaryOp &&unary_op) |
template<typename InputSequence1 , typename InputSequence2 , typename OutputIterator , typename BinaryOp > | |
OutputIterator | c_transform (const InputSequence1 &input1, const InputSequence2 &input2, OutputIterator output, BinaryOp &&binary_op) |
template<typename C , typename OutputIterator > | |
OutputIterator | c_unique_copy (const C &c, OutputIterator result) |
template<typename C , typename OutputIterator , typename BinaryPredicate > | |
OutputIterator | c_unique_copy (const C &c, OutputIterator result, BinaryPredicate &&pred) |
template<typename Sequence , typename T > | |
container_algorithm_internal::ContainerIter< Sequence > | c_upper_bound (Sequence &sequence, T &&value) |
template<typename Sequence , typename T , typename LessThan > | |
container_algorithm_internal::ContainerIter< Sequence > | c_upper_bound (Sequence &sequence, T &&value, LessThan &&comp) |
template<typename Callable , typename... Args> | |
void | call_once (absl::once_flag &flag, Callable &&fn, Args &&... args) |
Status | CancelledError () |
Status | CancelledError (absl::string_view message) |
Duration | Ceil (const Duration d, const Duration unit) |
std::string | CEscape (absl::string_view src) |
static void | CheckForMutexCorruption (intptr_t v, const char *label) |
static void | CheckForMutexCorruption (intptr_t v, const char *label) |
std::string | CHexEscape (absl::string_view src) |
static intptr_t | ClearDesignatedWakerMask (int flag) |
ABSL_NAMESPACE_BEGIN string_view | ClippedSubstr (string_view s, size_t pos, size_t n=string_view::npos) |
static CordRep * | Concat (CordRep *left, CordRep *right) |
static void | CondVarEnqueue (SynchWaitParams *waitp) |
static void | CondVarEnqueue (SynchWaitParams *waitp) |
ABSL_NAMESPACE_BEGIN bool | ConsumePrefix (absl::string_view *str, absl::string_view expected) |
bool | ConsumeSuffix (absl::string_view *str, absl::string_view expected) |
absl::TimeConversion | ConvertDateTime (int64_t year, int mon, int day, int hour, int min, int sec, TimeZone tz) |
template<typename To , typename Variant > | |
To | ConvertVariantTo (Variant &&variant) |
void | CopyCordToString (const Cord &src, std::string *dst) |
static bool | cord_ring_enabled () |
static CordRep * | CordRepFromString (std::string &&src) |
static CordRep * | CordRepFromString (std::string &&src) |
bool | CordzInfoIsListed (const cord_internal::CordzInfo *cordz_info, cord_internal::CordzSampleToken token={}) |
template<class T > | |
ABSL_INTERNAL_CONSTEXPR_CLZ std::enable_if< std::is_unsigned< T >::value, int >::type | countl_one (T x) noexcept |
template<class T > | |
ABSL_INTERNAL_CONSTEXPR_CLZ std::enable_if< std::is_unsigned< T >::value, int >::type | countl_zero (T x) noexcept |
template<class T > | |
ABSL_INTERNAL_CONSTEXPR_CTZ std::enable_if< std::is_unsigned< T >::value, int >::type | countr_one (T x) noexcept |
template<class T > | |
ABSL_INTERNAL_CONSTEXPR_CTZ std::enable_if< std::is_unsigned< T >::value, int >::type | countr_zero (T x) noexcept |
static CordBuffer | CreateAppendBuffer (InlineData &data, size_t capacity) |
static CordRepFlat * | CreateFlat (const char *data, size_t length, size_t alloc_hint) |
static CordRepFlat * | CreateFlat (const char *data, size_t length, size_t alloc_hint) |
template<typename URBG > | |
SeedSeq | CreateSeedSeqFrom (URBG *urbg) |
bool | CUnescape (absl::string_view source, std::string *dest) |
bool | CUnescape (absl::string_view source, std::string *dest, std::string *error) |
static char * | CurrentStackString (char *buf, int maxlen, bool symbolize) |
static char * | CurrentStackString (char *buf, int maxlen, bool symbolize) |
Status | DataLossError (absl::string_view message) |
Status | DeadlineExceededError (absl::string_view message) |
static absl::Time | DeadlineFromTimeout (absl::Duration timeout) |
static absl::Time | DeadlineFromTimeout (absl::Duration timeout) |
static ABSL_CONST_INIT absl::base_internal::SpinLock | deadlock_graph_mu (absl::kConstInit, base_internal::SCHEDULE_KERNEL_ONLY) |
static ABSL_CONST_INIT absl::base_internal::SpinLock | deadlock_graph_mu (absl::kConstInit, base_internal::SCHEDULE_KERNEL_ONLY) |
static GraphId | DeadlockCheck (Mutex *mu) |
static GraphId | DeadlockCheck (Mutex *mu) |
static GraphId | DebugOnlyDeadlockCheck (Mutex *mu) |
static GraphId | DebugOnlyDeadlockCheck (Mutex *mu) |
static bool | DebugOnlyIsExiting () |
static bool | DebugOnlyIsExiting () |
static void | DebugOnlyLockEnter (Mutex *mu) |
static void | DebugOnlyLockEnter (Mutex *mu) |
static void | DebugOnlyLockEnter (Mutex *mu, GraphId id) |
static void | DebugOnlyLockEnter (Mutex *mu, GraphId id) |
static void | DebugOnlyLockLeave (Mutex *mu) |
static void | DebugOnlyLockLeave (Mutex *mu) |
int | DefaultStackUnwinder (void **pcs, int *sizes, int depth, int skip, const void *uc, int *min_dropped_frames) |
static void | DeleteSynchEvent (SynchEvent *e) |
static void | DeleteSynchEvent (SynchEvent *e) |
static int | Depth (const CordRep *rep) |
static PerThreadSynch * | Dequeue (PerThreadSynch *head, PerThreadSynch *pw) |
static PerThreadSynch * | Dequeue (PerThreadSynch *head, PerThreadSynch *pw) |
static PerThreadSynch * | DequeueAllWakeable (PerThreadSynch *head, PerThreadSynch *pw, PerThreadSynch **wake_tail) |
static PerThreadSynch * | DequeueAllWakeable (PerThreadSynch *head, PerThreadSynch *pw, PerThreadSynch **wake_tail) |
static bool | Dereference (void *arg) |
static bool | Dereference (void *arg) |
strings_internal::DereferenceFormatterImpl< strings_internal::AlphaNumFormatterImpl > | DereferenceFormatter () |
template<typename Formatter > | |
strings_internal::DereferenceFormatterImpl< Formatter > | DereferenceFormatter (Formatter &&f) |
void | DoIgnoreLeak (const void *) |
static void | DumpNode (CordRep *rep, bool include_data, std::ostream *os, int indent=0) |
static void | DumpNode (CordRep *rep, bool include_data, std::ostream *os, int indent=0) |
Duration | DurationFromTimespec (timespec ts) |
Duration | DurationFromTimeval (timeval tv) |
void | EnableMutexInvariantDebugging (bool enabled) |
bool | EndsWith (absl::string_view text, absl::string_view suffix) noexcept |
bool | EndsWithIgnoreCase (absl::string_view text, absl::string_view suffix) noexcept |
static PerThreadSynch * | Enqueue (PerThreadSynch *head, SynchWaitParams *waitp, intptr_t mu, int flags) |
static PerThreadSynch * | Enqueue (PerThreadSynch *head, SynchWaitParams *waitp, intptr_t mu, int flags) |
static SynchEvent * | EnsureSynchEvent (std::atomic< intptr_t > *addr, const char *name, intptr_t bits, intptr_t lockbit) |
static SynchEvent * | EnsureSynchEvent (std::atomic< intptr_t > *addr, const char *name, intptr_t bits, intptr_t lockbit) |
template<typename InputIter1 , typename InputIter2 > | |
bool | equal (InputIter1 first1, InputIter1 last1, InputIter2 first2, InputIter2 last2) |
template<typename InputIter1 , typename InputIter2 , typename Pred > | |
bool | equal (InputIter1 first1, InputIter1 last1, InputIter2 first2, InputIter2 last2, Pred &&pred) |
ABSL_NAMESPACE_BEGIN bool | EqualsIgnoreCase (absl::string_view piece1, absl::string_view piece2) noexcept |
template<typename K , typename V , typename C , typename A , typename Pred > | |
void | erase_if (btree_map< K, V, C, A > &map, Pred pred) |
template<typename K , typename V , typename C , typename A , typename Pred > | |
btree_map< K, V, C, A >::size_type | erase_if (btree_map< K, V, C, A > &map, Pred pred) |
template<typename K , typename V , typename C , typename A , typename Pred > | |
void | erase_if (btree_multimap< K, V, C, A > &map, Pred pred) |
template<typename K , typename V , typename C , typename A , typename Pred > | |
btree_multimap< K, V, C, A >::size_type | erase_if (btree_multimap< K, V, C, A > &map, Pred pred) |
template<typename K , typename C , typename A , typename Pred > | |
void | erase_if (btree_multiset< K, C, A > &set, Pred pred) |
template<typename K , typename C , typename A , typename Pred > | |
btree_multiset< K, C, A >::size_type | erase_if (btree_multiset< K, C, A > &set, Pred pred) |
template<typename K , typename C , typename A , typename Pred > | |
void | erase_if (btree_set< K, C, A > &set, Pred pred) |
template<typename K , typename C , typename A , typename Pred > | |
btree_set< K, C, A >::size_type | erase_if (btree_set< K, C, A > &set, Pred pred) |
template<typename K , typename V , typename H , typename E , typename A , typename Predicate > | |
void | erase_if (flat_hash_map< K, V, H, E, A > &c, Predicate pred) |
template<typename K , typename V , typename H , typename E , typename A , typename Predicate > | |
flat_hash_map< K, V, H, E, A >::size_type | erase_if (flat_hash_map< K, V, H, E, A > &c, Predicate pred) |
template<typename T , typename H , typename E , typename A , typename Predicate > | |
void | erase_if (flat_hash_set< T, H, E, A > &c, Predicate pred) |
template<typename T , typename H , typename E , typename A , typename Predicate > | |
flat_hash_set< T, H, E, A >::size_type | erase_if (flat_hash_set< T, H, E, A > &c, Predicate pred) |
template<typename K , typename V , typename H , typename E , typename A , typename Predicate > | |
void | erase_if (node_hash_map< K, V, H, E, A > &c, Predicate pred) |
template<typename K , typename V , typename H , typename E , typename A , typename Predicate > | |
node_hash_map< K, V, H, E, A >::size_type | erase_if (node_hash_map< K, V, H, E, A > &c, Predicate pred) |
template<typename T , typename H , typename E , typename A , typename Predicate > | |
void | erase_if (node_hash_set< T, H, E, A > &c, Predicate pred) |
template<typename T , typename H , typename E , typename A , typename Predicate > | |
node_hash_set< T, H, E, A >::size_type | erase_if (node_hash_set< T, H, E, A > &c, Predicate pred) |
Status | ErrnoToStatus (int error_number, absl::string_view message) |
StatusCode | ErrnoToStatusCode (int error_number) |
static bool | EvalConditionAnnotated (const Condition *cond, Mutex *mu, bool locking, bool trylock, bool read_lock) |
static bool | EvalConditionAnnotated (const Condition *cond, Mutex *mu, bool locking, bool trylock, bool read_lock) |
static bool | EvalConditionIgnored (Mutex *mu, const Condition *cond) |
static bool | EvalConditionIgnored (Mutex *mu, const Condition *cond) |
static bool | ExactlyOneReader (intptr_t v) |
static bool | ExactlyOneReader (intptr_t v) |
template<typename T , typename U = T> | |
T | exchange (T &obj, U &&new_value) |
template<typename RealType , typename URBG > | |
RealType | Exponential (URBG &&urbg, RealType lambda=1) |
static CordRep::ExtractResult | ExtractAppendBuffer (CordRep *rep, size_t min_capacity) |
static ABSL_CONST_INIT std::atomic< GetTidType > | failed_tid (0) |
static ABSL_CONST_INIT std::atomic< GetTidType > | failed_tid (0) |
Status | FailedPreconditionError (absl::string_view message) |
double | FDivDuration (Duration num, Duration den) |
constexpr uint64_t | Fibonacci (unsigned char n, uint64_t a=0, uint64_t b=1) |
bool | FindAndReportLeaks () |
CommandLineFlag * | FindCommandLineFlag (absl::string_view name) |
TimeZone | FixedTimeZone (int seconds) |
static void | FixSkip (PerThreadSynch *ancestor, PerThreadSynch *to_be_removed) |
static void | FixSkip (PerThreadSynch *ancestor, PerThreadSynch *to_be_removed) |
Duration | Floor (const Duration d, const Duration unit) |
static CordRepBtree * | ForceBtree (CordRep *rep) |
static CordRepRing * | ForceRing (CordRep *rep, size_t extra) |
static void | ForgetSynchEvent (std::atomic< intptr_t > *addr, intptr_t bits, intptr_t lockbit) |
static void | ForgetSynchEvent (std::atomic< intptr_t > *addr, intptr_t bits, intptr_t lockbit) |
template<typename... Args> | |
bool | Format (FormatRawSink raw_sink, const FormatSpec< Args... > &format, const Args &... args) |
std::string | FormatCivilTime (CivilSecond c) |
std::string | FormatDuration (Duration d) |
template<typename T > | |
str_format_internal::StreamedWrapper< T > | FormatStreamed (const T &v) |
std::string | FormatTime (absl::string_view format, absl::Time t, absl::TimeZone tz) |
std::string | FormatTime (absl::Time t) |
std::string | FormatTime (absl::Time t, absl::TimeZone tz) |
ABSL_MUST_USE_RESULT bool | FormatUntyped (FormatRawSink raw_sink, const UntypedFormatSpec &format, absl::Span< const FormatArg > args) |
template<typename T > | |
constexpr T && | forward (absl::remove_reference_t< T > &t) noexcept |
template<typename... Args> | |
int | FPrintF (std::FILE *output, const FormatSpec< Args... > &format, const Args &... args) |
from_chars_result | from_chars (const char *first, const char *last, double &value, chars_format fmt) |
from_chars_result | from_chars (const char *first, const char *last, float &value, chars_format fmt) |
constexpr Duration | FromChrono (const std::chrono::hours &d) |
constexpr Duration | FromChrono (const std::chrono::microseconds &d) |
constexpr Duration | FromChrono (const std::chrono::milliseconds &d) |
constexpr Duration | FromChrono (const std::chrono::minutes &d) |
constexpr Duration | FromChrono (const std::chrono::nanoseconds &d) |
constexpr Duration | FromChrono (const std::chrono::seconds &d) |
Time | FromChrono (const std::chrono::system_clock::time_point &tp) |
Time | FromCivil (CivilSecond ct, TimeZone tz) |
Time | FromDateTime (int64_t year, int mon, int day, int hour, int min, int sec, TimeZone tz) |
constexpr Time | FromTimeT (time_t t) |
absl::Time | FromTM (const struct tm &tm, absl::TimeZone tz) |
absl::Time | FromUDate (double udate) |
absl::Time | FromUniversal (int64_t universal) |
constexpr Time | FromUnixMicros (int64_t us) |
constexpr Time | FromUnixMillis (int64_t ms) |
constexpr Time | FromUnixNanos (int64_t ns) |
constexpr Time | FromUnixSeconds (int64_t s) |
template<typename RealType , typename URBG > | |
RealType | Gaussian (URBG &&urbg, RealType mean=0, RealType stddev=1) |
uint16_t | gbswap_16 (uint16_t host_int) |
uint32_t | gbswap_32 (uint32_t host_int) |
ABSL_NAMESPACE_BEGIN uint64_t | gbswap_64 (uint64_t host_int) |
template<typename ResultType , typename RHS > | |
ResultType | GenericCompare (const Cord &lhs, const RHS &rhs, size_t size_to_compare) |
template<class T , class... Types> | |
constexpr const T && | get (const variant< Types... > &&v) |
template<std::size_t I, class... Types> | |
constexpr const variant_alternative_t< I, variant< Types... > > && | get (const variant< Types... > &&v) |
template<class T , class... Types> | |
constexpr const T & | get (const variant< Types... > &v) |
template<std::size_t I, class... Types> | |
constexpr const variant_alternative_t< I, variant< Types... > > & | get (const variant< Types... > &v) |
template<class T , class... Types> | |
constexpr T && | get (variant< Types... > &&v) |
template<std::size_t I, class... Types> | |
constexpr variant_alternative_t< I, variant< Types... > > && | get (variant< Types... > &&v) |
template<class T , class... Types> | |
constexpr T & | get (variant< Types... > &v) |
template<std::size_t I, class... Types> | |
constexpr variant_alternative_t< I, variant< Types... > > & | get (variant< Types... > &v) |
template<std::size_t I, class... Types> | |
constexpr absl::add_pointer_t< const variant_alternative_t< I, variant< Types... > > > | get_if (const variant< Types... > *v) noexcept |
template<class T , class... Types> | |
constexpr absl::add_pointer_t< const T > | get_if (const variant< Types... > *v) noexcept |
template<std::size_t I, class... Types> | |
constexpr absl::add_pointer_t< variant_alternative_t< I, variant< Types... > > > | get_if (variant< Types... > *v) noexcept |
template<class T , class... Types> | |
constexpr absl::add_pointer_t< T > | get_if (variant< Types... > *v) noexcept |
absl::flat_hash_map< absl::string_view, absl::CommandLineFlag * > | GetAllFlags () |
const ABSL_NAMESPACE_BEGIN cord_internal::CordzInfo * | GetCordzInfoForTesting (const Cord &cord) |
ABSL_NAMESPACE_BEGIN int64_t | GetCurrentTimeNanos () |
template<typename T > | |
ABSL_MUST_USE_RESULT T | GetFlag (const absl::Flag< T > &flag) |
template<typename T > | |
const CommandLineFlag & | GetFlagReflectionHandle (const absl::Flag< T > &f) |
template<typename U > | |
const CommandLineFlag & | GetFlagReflectionHandle (const absl::Flag< U > &f) |
static GraphId | GetGraphId (Mutex *mu) ABSL_LOCKS_EXCLUDED(deadlock_graph_mu) |
static GraphId | GetGraphId (Mutex *mu) ABSL_LOCKS_EXCLUDED(deadlock_graph_mu) |
static GraphId | GetGraphIdLocked (Mutex *mu) ABSL_EXCLUSIVE_LOCKS_REQUIRED(deadlock_graph_mu) |
static GraphId | GetGraphIdLocked (Mutex *mu) ABSL_EXCLUSIVE_LOCKS_REQUIRED(deadlock_graph_mu) |
static PerThreadSynch * | GetPerThreadSynch (intptr_t v) |
static PerThreadSynch * | GetPerThreadSynch (intptr_t v) |
ABSL_ATTRIBUTE_NOINLINE ABSL_ATTRIBUTE_NO_TAIL_CALL int | GetStackFrames (void **result, int *sizes, int max_depth, int skip_count) |
ABSL_ATTRIBUTE_NOINLINE ABSL_ATTRIBUTE_NO_TAIL_CALL int | GetStackFramesWithContext (void **result, int *sizes, int max_depth, int skip_count, const void *uc, int *min_dropped_frames) |
ABSL_ATTRIBUTE_NOINLINE ABSL_ATTRIBUTE_NO_TAIL_CALL int | GetStackTrace (void **result, int max_depth, int skip_count) |
ABSL_ATTRIBUTE_NOINLINE ABSL_ATTRIBUTE_NO_TAIL_CALL int | GetStackTraceWithContext (void **result, int max_depth, int skip_count, const void *uc, int *min_dropped_frames) |
static SynchEvent * | GetSynchEvent (const void *addr) |
static SynchEvent * | GetSynchEvent (const void *addr) |
Weekday | GetWeekday (CivilSecond cs) |
int | GetYearDay (CivilSecond cs) |
uint32_t | gntohl (uint32_t x) |
uint64_t | gntohll (uint64_t x) |
uint16_t | gntohs (uint16_t x) |
template<class T > | |
constexpr std::enable_if< std::is_unsigned< T >::value, bool >::type | has_single_bit (T x) noexcept |
template<int &... ExplicitArgumentBarrier, typename... Types> | |
size_t | HashOf (const Types &... values) |
ABSL_NAMESPACE_BEGIN bool | HaveLeakSanitizer () |
std::string | HexStringToBytes (absl::string_view from) |
template<class T , class... Types> | |
constexpr bool | holds_alternative (const variant< Types... > &v) noexcept |
constexpr Duration | Hours (int64_t n) |
template<typename T , time_internal::EnableIfIntegral< T > = 0> | |
constexpr Duration | Hours (T n) |
template<typename T , time_internal::EnableIfFloat< T > = 0> | |
Duration | Hours (T n) |
int64_t | IDivDuration (Duration num, Duration den, Duration *rem) |
template<typename T > | |
T * | IgnoreLeak (T *ptr) |
static intptr_t | IgnoreWaitingWritersMask (int flag) |
template<typename To > | |
constexpr ABSL_NAMESPACE_BEGIN To | implicit_cast (typename absl::internal::identity_t< To > to) |
template<typename To > | |
constexpr To | implicit_cast (typename absl::internal::identity_t< To > to) |
template<size_t I> | |
void | in_place_index (utility_internal::InPlaceIndexTag< I >) |
template<typename T > | |
void | in_place_type (utility_internal::InPlaceTypeTag< T >) |
constexpr Duration | InfiniteDuration () |
constexpr Time | InfiniteFuture () |
constexpr Time | InfinitePast () |
ABSL_NAMESPACE_BEGIN void | InitializeSymbolizer (const char *argv0) |
void | InstallFailureSignalHandler (const FailureSignalHandlerOptions &options) |
static void | InstallOneFailureHandler (FailureSignalData *data, void(*handler)(int, siginfo_t *, void *)) |
static void | InstallOneFailureHandler (FailureSignalData *data, void(*handler)(int, siginfo_t *, void *)) |
constexpr int128 | Int128Max () |
constexpr int128 | Int128Min () |
Status | InternalError (absl::string_view message) |
Status | InvalidArgumentError (absl::string_view message) |
bool | IsAborted (const Status &status) |
bool | IsAlreadyExists (const Status &status) |
bool | IsCancelled (const Status &status) |
bool | IsDataLoss (const Status &status) |
bool | IsDeadlineExceeded (const Status &status) |
bool | IsFailedPrecondition (const Status &status) |
bool | IsInternal (const Status &status) |
bool | IsInvalidArgument (const Status &status) |
bool | IsNotFound (const Status &status) |
bool | IsOutOfRange (const Status &status) |
bool | IsPermissionDenied (const Status &status) |
bool | IsResourceExhausted (const Status &status) |
static bool | IsRootBalanced (CordRep *node) |
bool | IsUnauthenticated (const Status &status) |
bool | IsUnavailable (const Status &status) |
bool | IsUnimplemented (const Status &status) |
bool | IsUnknown (const Status &status) |
static ABSL_NAMESPACE_BEGIN bool | IsZero (void *arg) |
static ABSL_NAMESPACE_BEGIN bool | IsZero (void *arg) |
static ABSL_NAMESPACE_BEGIN bool | IsZero (void *arg) |
bool | LeakCheckerIsActive () |
size_t | Length (TestCordSize size) |
template<typename InputIterator , typename EqualityComparable > | |
bool | linear_search (InputIterator first, InputIterator last, const EqualityComparable &value) |
bool | LoadTimeZone (absl::string_view name, TimeZone *tz) |
TimeZone | LocalTimeZone () |
static void | LockEnter (Mutex *mu, GraphId id, SynchLocksHeld *held_locks) |
static void | LockEnter (Mutex *mu, GraphId id, SynchLocksHeld *held_locks) |
static void | LockLeave (Mutex *mu, GraphId id, SynchLocksHeld *held_locks) |
static void | LockLeave (Mutex *mu, GraphId id, SynchLocksHeld *held_locks) |
static SynchLocksHeld * | LocksHeldAlloc () |
static SynchLocksHeld * | LocksHeldAlloc () |
constexpr std::array< absl::LogSeverity, 4 > | LogSeverities () |
constexpr const char * | LogSeverityName (absl::LogSeverity s) |
template<typename IntType , typename URBG > | |
IntType | LogUniform (URBG &&urbg, IntType lo, IntType hi, IntType base=2) |
template<typename T , typename... Args> | |
any | make_any (Args &&... args) |
template<typename T , typename U , typename... Args> | |
any | make_any (std::initializer_list< U > il, Args &&... args) |
template<typename T , typename Tuple > | |
constexpr T | make_from_tuple (Tuple &&tup) |
template<typename T , typename... Args> | |
constexpr optional< T > | make_optional (Args &&... args) |
template<typename T , typename U , typename... Args> | |
constexpr optional< T > | make_optional (std::initializer_list< U > il, Args &&... args) |
template<typename T > | |
constexpr optional< typename std::decay< T >::type > | make_optional (T &&v) |
template<typename T , typename... Args> | |
memory_internal::MakeUniqueResult< T >::scalar | make_unique (Args &&... args) |
template<typename T , typename... Args> | |
memory_internal::MakeUniqueResult< T >::invalid | make_unique (Args &&...)=delete |
template<typename T > | |
memory_internal::MakeUniqueResult< T >::array | make_unique (size_t n) |
static CordRep * | MakeBalancedTree (CordRep **reps, size_t n) |
template<typename... Args, typename Callback > | |
absl::Cleanup< cleanup_internal::Tag, Callback > | MakeCleanup (Callback callback) |
template<int &... ExplicitArgumentBarrier, typename C > | |
constexpr auto | MakeConstSpan (const C &c) noexcept -> decltype(MakeSpan(c)) |
template<int &... ExplicitArgumentBarrier, typename T , size_t N> | |
constexpr Span< const T > | MakeConstSpan (const T(&array)[N]) noexcept |
template<int &... ExplicitArgumentBarrier, typename T > | |
Span< const T > | MakeConstSpan (T *begin, T *end) noexcept |
template<int &... ExplicitArgumentBarrier, typename T > | |
constexpr Span< const T > | MakeConstSpan (T *ptr, size_t size) noexcept |
template<typename Releaser > | |
Cord | MakeCordFromExternal (absl::string_view, Releaser &&) |
template<typename Container > | |
Cord | MakeFragmentedCord (const Container &c) |
Cord | MakeFragmentedCord (std::initializer_list< absl::string_view > list) |
constexpr int128 | MakeInt128 (int64_t high, uint64_t low) |
ABSL_NAMESPACE_BEGIN SeedSeq | MakeSeedSeq () |
template<int &... ExplicitArgumentBarrier, typename C > | |
constexpr auto | MakeSpan (C &c) noexcept -> decltype(absl::MakeSpan(span_internal::GetData(c), c.size())) |
template<int &... ExplicitArgumentBarrier, typename T > | |
Span< T > | MakeSpan (T *begin, T *end) noexcept |
template<int &... ExplicitArgumentBarrier, typename T > | |
constexpr Span< T > | MakeSpan (T *ptr, size_t size) noexcept |
template<int &... ExplicitArgumentBarrier, typename T , size_t N> | |
constexpr Span< T > | MakeSpan (T(&array)[N]) noexcept |
constexpr ABSL_NAMESPACE_BEGIN uint128 | MakeUint128 (uint64_t high, uint64_t low) |
MATCHER_P (HasValidCordzInfoOf, method, "CordzInfo matches cord") | |
MATCHER_P2 (CordzMethodCountEq, method, n, absl::StrCat("CordzInfo method count equals ", n)) | |
template<typename Delimiter > | |
strings_internal::MaxSplitsImpl< typename strings_internal::SelectDelimiter< Delimiter >::type > | MaxSplits (Delimiter delimiter, int limit) |
static int | MaybeSetupAlternateStack () |
static int | MaybeSetupAlternateStack () |
constexpr Duration | Microseconds (int64_t n) |
template<typename T , time_internal::EnableIfIntegral< T > = 0> | |
constexpr Duration | Microseconds (T n) |
template<typename T , time_internal::EnableIfFloat< T > = 0> | |
Duration | Microseconds (T n) |
constexpr Duration | Milliseconds (int64_t n) |
template<typename T , time_internal::EnableIfIntegral< T > = 0> | |
constexpr Duration | Milliseconds (T n) |
template<typename T , time_internal::EnableIfFloat< T > = 0> | |
Duration | Milliseconds (T n) |
constexpr Duration | Minutes (int64_t n) |
template<typename T , time_internal::EnableIfIntegral< T > = 0> | |
constexpr Duration | Minutes (T n) |
template<typename T , time_internal::EnableIfFloat< T > = 0> | |
Duration | Minutes (T n) |
template<typename T > | |
constexpr absl::remove_reference_t< T > && | move (T &&t) noexcept |
static bool | MuEquivalentWaiter (PerThreadSynch *x, PerThreadSynch *y) |
static bool | MuEquivalentWaiter (PerThreadSynch *x, PerThreadSynch *y) |
static std::pair< uint64_t, uint64_t > | Mul32 (std::pair< uint64_t, uint64_t > num, uint32_t mul) |
static std::pair< uint64_t, uint64_t > | Mul32 (std::pair< uint64_t, uint64_t > num, uint32_t mul) |
constexpr Duration | Nanoseconds (int64_t n) |
template<typename T , time_internal::EnableIfIntegral< T > = 0> | |
constexpr Duration | Nanoseconds (T n) |
template<typename T , time_internal::EnableIfFloat< T > = 0> | |
Duration | Nanoseconds (T n) |
static CordRep * | NewBtree (const char *data, size_t length, size_t alloc_hint) |
static CordRep * | NewSubRange (CordRep *node, size_t pos, size_t n) |
static CordRep * | NewSubstring (CordRep *child, size_t offset, size_t length) |
static CordRep * | NewTree (const char *data, size_t length, size_t alloc_hint) |
static CordRep * | NewTree (const char *data, size_t length, size_t alloc_hint) |
CivilDay | NextWeekday (CivilDay cd, Weekday wd) |
constexpr absl::LogSeverity | NormalizeLogSeverity (absl::LogSeverity s) |
constexpr absl::LogSeverity | NormalizeLogSeverity (int s) |
Status | NotFoundError (absl::string_view message) |
ABSL_NAMESPACE_BEGIN Time | Now () |
constexpr string_view | NullSafeStringView (const char *p) |
Status | OkStatus () |
constexpr bool | operator! (uint128 val) |
bool | operator!= (absl::string_view x, const Cord &y) |
template<typename T , size_t N, typename A > | |
bool | operator!= (const absl::InlinedVector< T, N, A > &a, const absl::InlinedVector< T, N, A > &b) |
bool | operator!= (const Cord &x, absl::string_view y) |
bool | operator!= (const Cord &x, const Cord &y) |
template<typename T , typename U > | |
constexpr auto | operator!= (const optional< T > &x, const optional< U > &y) -> decltype(optional_internal::convertible_to_bool(*x != *y)) |
template<typename T , typename U > | |
constexpr auto | operator!= (const optional< T > &x, const U &v) -> decltype(optional_internal::convertible_to_bool(*x !=v)) |
template<typename T > | |
constexpr bool | operator!= (const optional< T > &x, nullopt_t) noexcept |
bool | operator!= (const Status &lhs, const Status &rhs) |
template<typename T > | |
bool | operator!= (const StatusOr< T > &lhs, const StatusOr< T > &rhs) |
template<typename T , typename U , typename = span_internal::EnableIfConvertibleTo<U, absl::Span<const T>>> | |
bool | operator!= (const U &a, Span< T > b) |
template<typename T , typename U > | |
constexpr auto | operator!= (const U &v, const optional< T > &x) -> decltype(optional_internal::convertible_to_bool(v != *x)) |
template<typename... Types> | |
constexpr variant_internal::RequireAllHaveNotEqualT< Types... > | operator!= (const variant< Types... > &a, const variant< Types... > &b) |
constexpr bool | operator!= (Duration lhs, Duration rhs) |
constexpr bool | operator!= (int128 lhs, int128 rhs) |
constexpr bool | operator!= (monostate, monostate) noexcept |
template<typename T > | |
constexpr bool | operator!= (nullopt_t, const optional< T > &x) noexcept |
template<typename T , typename U , typename = span_internal::EnableIfConvertibleTo<U, absl::Span<const T>>> | |
bool | operator!= (Span< T > a, const U &b) |
template<typename T > | |
bool | operator!= (Span< T > a, Span< T > b) |
constexpr bool | operator!= (string_view x, string_view y) noexcept |
constexpr bool | operator!= (Time lhs, Time rhs) |
constexpr bool | operator!= (uint128 lhs, uint128 rhs) |
Duration | operator% (Duration lhs, Duration rhs) |
int128 | operator% (int128 lhs, int128 rhs) |
uint128 | operator% (uint128 lhs, uint128 rhs) |
constexpr chars_format | operator& (chars_format lhs, chars_format rhs) |
constexpr int128 | operator& (int128 lhs, int128 rhs) |
constexpr StatusToStringMode | operator& (StatusToStringMode lhs, StatusToStringMode rhs) |
constexpr uint128 | operator& (uint128 lhs, uint128 rhs) |
chars_format & | operator&= (chars_format &lhs, chars_format rhs) |
StatusToStringMode & | operator&= (StatusToStringMode &lhs, StatusToStringMode rhs) |
template<typename T > | |
Duration | operator* (Duration lhs, T rhs) |
int128 | operator* (int128 lhs, int128 rhs) |
template<typename T > | |
Duration | operator* (T lhs, Duration rhs) |
uint128 | operator* (uint128 lhs, uint128 rhs) |
Duration | operator+ (Duration lhs, Duration rhs) |
Time | operator+ (Duration lhs, Time rhs) |
constexpr int128 | operator+ (int128 lhs, int128 rhs) |
constexpr int128 | operator+ (int128 val) |
Time | operator+ (Time lhs, Duration rhs) |
constexpr uint128 | operator+ (uint128 lhs, uint128 rhs) |
constexpr uint128 | operator+ (uint128 val) |
constexpr Duration | operator- (Duration d) |
Duration | operator- (Duration lhs, Duration rhs) |
constexpr int128 | operator- (int128 lhs, int128 rhs) |
constexpr int128 | operator- (int128 v) |
Time | operator- (Time lhs, Duration rhs) |
Duration | operator- (Time lhs, Time rhs) |
constexpr uint128 | operator- (uint128 lhs, uint128 rhs) |
constexpr uint128 | operator- (uint128 val) |
int64_t | operator/ (Duration lhs, Duration rhs) |
template<typename T > | |
Duration | operator/ (Duration lhs, T rhs) |
int128 | operator/ (int128 lhs, int128 rhs) |
uint128 | operator/ (uint128 lhs, uint128 rhs) |
bool | operator< (absl::string_view x, const Cord &y) |
template<typename T , size_t N, typename A > | |
bool | operator< (const absl::InlinedVector< T, N, A > &a, const absl::InlinedVector< T, N, A > &b) |
bool | operator< (const Cord &x, absl::string_view y) |
bool | operator< (const Cord &x, const Cord &y) |
template<typename T > | |
constexpr bool | operator< (const optional< T > &, nullopt_t) noexcept |
template<typename T , typename U > | |
constexpr auto | operator< (const optional< T > &x, const optional< U > &y) -> decltype(optional_internal::convertible_to_bool(*x< *y)) |
template<typename T , typename U > | |
constexpr auto | operator< (const optional< T > &x, const U &v) -> decltype(optional_internal::convertible_to_bool(*x< v)) |
template<typename T , typename U , typename = span_internal::EnableIfConvertibleTo<U, absl::Span<const T>>> | |
bool | operator< (const U &a, Span< T > b) |
template<typename T , typename U > | |
constexpr auto | operator< (const U &v, const optional< T > &x) -> decltype(optional_internal::convertible_to_bool(v< *x)) |
template<typename... Types> | |
constexpr variant_internal::RequireAllHaveLessThanT< Types... > | operator< (const variant< Types... > &a, const variant< Types... > &b) |
constexpr bool | operator< (Duration lhs, Duration rhs) |
constexpr bool | operator< (monostate, monostate) noexcept |
template<typename T > | |
constexpr bool | operator< (nullopt_t, const optional< T > &x) noexcept |
template<typename T , typename U , typename = span_internal::EnableIfConvertibleTo<U, absl::Span<const T>>> | |
bool | operator< (Span< T > a, const U &b) |
template<typename T > | |
bool | operator< (Span< T > a, Span< T > b) |
constexpr bool | operator< (string_view x, string_view y) noexcept |
constexpr bool | operator< (Time lhs, Time rhs) |
constexpr bool | operator< (uint128 lhs, uint128 rhs) |
constexpr int128 | operator<< (int128 lhs, int amount) |
template<typename CharT , typename Traits > | |
std::basic_ostream< CharT, Traits > & | operator<< (std::basic_ostream< CharT, Traits > &os, const bernoulli_distribution &x) |
template<typename CharT , typename Traits , typename RealType > | |
std::basic_ostream< CharT, Traits > & | operator<< (std::basic_ostream< CharT, Traits > &os, const beta_distribution< RealType > &x) |
template<typename CharT , typename Traits , typename IntType > | |
std::basic_ostream< CharT, Traits > & | operator<< (std::basic_ostream< CharT, Traits > &os, const discrete_distribution< IntType > &x) |
template<typename CharT , typename Traits , typename RealType > | |
std::basic_ostream< CharT, Traits > & | operator<< (std::basic_ostream< CharT, Traits > &os, const exponential_distribution< RealType > &x) |
template<typename CharT , typename Traits , typename RealType > | |
std::basic_ostream< CharT, Traits > & | operator<< (std::basic_ostream< CharT, Traits > &os, const gaussian_distribution< RealType > &x) |
template<typename CharT , typename Traits , typename IntType > | |
std::basic_ostream< CharT, Traits > & | operator<< (std::basic_ostream< CharT, Traits > &os, const log_uniform_int_distribution< IntType > &x) |
template<typename CharT , typename Traits , typename IntType > | |
std::basic_ostream< CharT, Traits > & | operator<< (std::basic_ostream< CharT, Traits > &os, const poisson_distribution< IntType > &x) |
template<typename CharT , typename Traits , typename IntType > | |
std::basic_ostream< CharT, Traits > & | operator<< (std::basic_ostream< CharT, Traits > &os, const uniform_int_distribution< IntType > &x) |
template<typename CharT , typename Traits , typename RealType > | |
std::basic_ostream< CharT, Traits > & | operator<< (std::basic_ostream< CharT, Traits > &os, const uniform_real_distribution< RealType > &x) |
template<typename CharT , typename Traits , typename IntType > | |
std::basic_ostream< CharT, Traits > & | operator<< (std::basic_ostream< CharT, Traits > &os, const zipf_distribution< IntType > &x) |
std::ostream & | operator<< (std::ostream &o, string_view piece) |
ABSL_NAMESPACE_BEGIN std::ostream & | operator<< (std::ostream &os, absl::LogSeverity s) |
std::ostream & | operator<< (std::ostream &os, absl::LogSeverityAtLeast s) |
std::ostream & | operator<< (std::ostream &os, absl::LogSeverityAtMost s) |
std::ostream & | operator<< (std::ostream &os, const Status &x) |
std::ostream & | operator<< (std::ostream &os, Duration d) |
std::ostream & | operator<< (std::ostream &os, int128 v) |
std::ostream & | operator<< (std::ostream &os, StatusCode code) |
std::ostream & | operator<< (std::ostream &os, Time t) |
std::ostream & | operator<< (std::ostream &os, uint128 v) |
std::ostream & | operator<< (std::ostream &out, const Cord &cord) |
std::ostream & | operator<< (std::ostream &stream, TestCordSize size) |
constexpr uint128 | operator<< (uint128 lhs, int amount) |
bool | operator<= (absl::string_view x, const Cord &y) |
template<typename T , size_t N, typename A > | |
bool | operator<= (const absl::InlinedVector< T, N, A > &a, const absl::InlinedVector< T, N, A > &b) |
bool | operator<= (const Cord &x, absl::string_view y) |
bool | operator<= (const Cord &x, const Cord &y) |
template<typename T , typename U > | |
constexpr auto | operator<= (const optional< T > &x, const optional< U > &y) -> decltype(optional_internal::convertible_to_bool(*x<= *y)) |
template<typename T , typename U > | |
constexpr auto | operator<= (const optional< T > &x, const U &v) -> decltype(optional_internal::convertible_to_bool(*x<=v)) |
template<typename T > | |
constexpr bool | operator<= (const optional< T > &x, nullopt_t) noexcept |
template<typename T , typename U , typename = span_internal::EnableIfConvertibleTo<U, absl::Span<const T>>> | |
bool | operator<= (const U &a, Span< T > b) |
template<typename T , typename U > | |
constexpr auto | operator<= (const U &v, const optional< T > &x) -> decltype(optional_internal::convertible_to_bool(v<= *x)) |
template<typename... Types> | |
constexpr variant_internal::RequireAllHaveLessThanOrEqualT< Types... > | operator<= (const variant< Types... > &a, const variant< Types... > &b) |
constexpr bool | operator<= (Duration lhs, Duration rhs) |
constexpr bool | operator<= (monostate, monostate) noexcept |
template<typename T > | |
constexpr bool | operator<= (nullopt_t, const optional< T > &) noexcept |
template<typename T , typename U , typename = span_internal::EnableIfConvertibleTo<U, absl::Span<const T>>> | |
bool | operator<= (Span< T > a, const U &b) |
template<typename T > | |
bool | operator<= (Span< T > a, Span< T > b) |
constexpr bool | operator<= (string_view x, string_view y) noexcept |
constexpr bool | operator<= (Time lhs, Time rhs) |
constexpr bool | operator<= (uint128 lhs, uint128 rhs) |
bool | operator== (absl::string_view x, const Cord &y) |
template<typename T , size_t N, typename A > | |
bool | operator== (const absl::InlinedVector< T, N, A > &a, const absl::InlinedVector< T, N, A > &b) |
bool | operator== (const Cord &lhs, absl::string_view rhs) |
bool | operator== (const Cord &lhs, const Cord &rhs) |
template<typename T , typename U > | |
constexpr auto | operator== (const optional< T > &x, const optional< U > &y) -> decltype(optional_internal::convertible_to_bool(*x== *y)) |
template<typename T , typename U > | |
constexpr auto | operator== (const optional< T > &x, const U &v) -> decltype(optional_internal::convertible_to_bool(*x==v)) |
template<typename T > | |
constexpr bool | operator== (const optional< T > &x, nullopt_t) noexcept |
bool | operator== (const Status &lhs, const Status &rhs) |
template<typename T > | |
bool | operator== (const StatusOr< T > &lhs, const StatusOr< T > &rhs) |
template<typename T , typename U , typename = span_internal::EnableIfConvertibleTo<U, absl::Span<const T>>> | |
bool | operator== (const U &a, Span< T > b) |
template<typename T , typename U > | |
constexpr auto | operator== (const U &v, const optional< T > &x) -> decltype(optional_internal::convertible_to_bool(v== *x)) |
template<typename... Types> | |
constexpr variant_internal::RequireAllHaveEqualT< Types... > | operator== (const variant< Types... > &a, const variant< Types... > &b) |
constexpr bool | operator== (Duration lhs, Duration rhs) |
constexpr bool | operator== (monostate, monostate) noexcept |
template<typename T > | |
constexpr bool | operator== (nullopt_t, const optional< T > &x) noexcept |
template<typename T , typename U , typename = span_internal::EnableIfConvertibleTo<U, absl::Span<const T>>> | |
bool | operator== (Span< T > a, const U &b) |
template<typename T > | |
bool | operator== (Span< T > a, Span< T > b) |
constexpr bool | operator== (string_view x, string_view y) noexcept |
constexpr bool | operator== (Time lhs, Time rhs) |
constexpr bool | operator== (uint128 lhs, uint128 rhs) |
bool | operator> (absl::string_view x, const Cord &y) |
template<typename T , size_t N, typename A > | |
bool | operator> (const absl::InlinedVector< T, N, A > &a, const absl::InlinedVector< T, N, A > &b) |
bool | operator> (const Cord &x, absl::string_view y) |
bool | operator> (const Cord &x, const Cord &y) |
template<typename T , typename U > | |
constexpr auto | operator> (const optional< T > &x, const optional< U > &y) -> decltype(optional_internal::convertible_to_bool(*x > *y)) |
template<typename T , typename U > | |
constexpr auto | operator> (const optional< T > &x, const U &v) -> decltype(optional_internal::convertible_to_bool(*x > v)) |
template<typename T > | |
constexpr bool | operator> (const optional< T > &x, nullopt_t) noexcept |
template<typename T , typename U , typename = span_internal::EnableIfConvertibleTo<U, absl::Span<const T>>> | |
bool | operator> (const U &a, Span< T > b) |
template<typename T , typename U > | |
constexpr auto | operator> (const U &v, const optional< T > &x) -> decltype(optional_internal::convertible_to_bool(v > *x)) |
template<typename... Types> | |
constexpr variant_internal::RequireAllHaveGreaterThanT< Types... > | operator> (const variant< Types... > &a, const variant< Types... > &b) |
constexpr bool | operator> (Duration lhs, Duration rhs) |
constexpr bool | operator> (monostate, monostate) noexcept |
template<typename T > | |
constexpr bool | operator> (nullopt_t, const optional< T > &) noexcept |
template<typename T , typename U , typename = span_internal::EnableIfConvertibleTo<U, absl::Span<const T>>> | |
bool | operator> (Span< T > a, const U &b) |
template<typename T > | |
bool | operator> (Span< T > a, Span< T > b) |
constexpr bool | operator> (string_view x, string_view y) noexcept |
constexpr bool | operator> (Time lhs, Time rhs) |
constexpr bool | operator> (uint128 lhs, uint128 rhs) |
bool | operator>= (absl::string_view x, const Cord &y) |
template<typename T , size_t N, typename A > | |
bool | operator>= (const absl::InlinedVector< T, N, A > &a, const absl::InlinedVector< T, N, A > &b) |
bool | operator>= (const Cord &x, absl::string_view y) |
bool | operator>= (const Cord &x, const Cord &y) |
template<typename T > | |
constexpr bool | operator>= (const optional< T > &, nullopt_t) noexcept |
template<typename T , typename U > | |
constexpr auto | operator>= (const optional< T > &x, const optional< U > &y) -> decltype(optional_internal::convertible_to_bool(*x >= *y)) |
template<typename T , typename U > | |
constexpr auto | operator>= (const optional< T > &x, const U &v) -> decltype(optional_internal::convertible_to_bool(*x >=v)) |
template<typename T , typename U , typename = span_internal::EnableIfConvertibleTo<U, absl::Span<const T>>> | |
bool | operator>= (const U &a, Span< T > b) |
template<typename T , typename U > | |
constexpr auto | operator>= (const U &v, const optional< T > &x) -> decltype(optional_internal::convertible_to_bool(v >= *x)) |
template<typename... Types> | |
constexpr variant_internal::RequireAllHaveGreaterThanOrEqualT< Types... > | operator>= (const variant< Types... > &a, const variant< Types... > &b) |
constexpr bool | operator>= (Duration lhs, Duration rhs) |
constexpr bool | operator>= (monostate, monostate) noexcept |
template<typename T > | |
constexpr bool | operator>= (nullopt_t, const optional< T > &x) noexcept |
template<typename T , typename U , typename = span_internal::EnableIfConvertibleTo<U, absl::Span<const T>>> | |
bool | operator>= (Span< T > a, const U &b) |
template<typename T > | |
bool | operator>= (Span< T > a, Span< T > b) |
constexpr bool | operator>= (string_view x, string_view y) noexcept |
constexpr bool | operator>= (Time lhs, Time rhs) |
constexpr bool | operator>= (uint128 lhs, uint128 rhs) |
constexpr int128 | operator>> (int128 lhs, int amount) |
template<typename CharT , typename Traits > | |
std::basic_istream< CharT, Traits > & | operator>> (std::basic_istream< CharT, Traits > &is, bernoulli_distribution &x) |
template<typename CharT , typename Traits , typename RealType > | |
std::basic_istream< CharT, Traits > & | operator>> (std::basic_istream< CharT, Traits > &is, beta_distribution< RealType > &x) |
template<typename CharT , typename Traits , typename IntType > | |
std::basic_istream< CharT, Traits > & | operator>> (std::basic_istream< CharT, Traits > &is, discrete_distribution< IntType > &x) |
template<typename CharT , typename Traits , typename RealType > | |
std::basic_istream< CharT, Traits > & | operator>> (std::basic_istream< CharT, Traits > &is, exponential_distribution< RealType > &x) |
template<typename CharT , typename Traits , typename RealType > | |
std::basic_istream< CharT, Traits > & | operator>> (std::basic_istream< CharT, Traits > &is, gaussian_distribution< RealType > &x) |
template<typename CharT , typename Traits , typename IntType > | |
std::basic_istream< CharT, Traits > & | operator>> (std::basic_istream< CharT, Traits > &is, log_uniform_int_distribution< IntType > &x) |
template<typename CharT , typename Traits , typename IntType > | |
std::basic_istream< CharT, Traits > & | operator>> (std::basic_istream< CharT, Traits > &is, poisson_distribution< IntType > &x) |
template<typename CharT , typename Traits , typename IntType > | |
std::basic_istream< CharT, Traits > & | operator>> (std::basic_istream< CharT, Traits > &is, uniform_int_distribution< IntType > &x) |
template<typename CharT , typename Traits , typename RealType > | |
std::basic_istream< CharT, Traits > & | operator>> (std::basic_istream< CharT, Traits > &is, uniform_real_distribution< RealType > &x) |
template<typename CharT , typename Traits , typename IntType > | |
std::basic_istream< CharT, Traits > & | operator>> (std::basic_istream< CharT, Traits > &is, zipf_distribution< IntType > &x) |
constexpr uint128 | operator>> (uint128 lhs, int amount) |
constexpr chars_format | operator^ (chars_format lhs, chars_format rhs) |
constexpr int128 | operator^ (int128 lhs, int128 rhs) |
constexpr StatusToStringMode | operator^ (StatusToStringMode lhs, StatusToStringMode rhs) |
constexpr uint128 | operator^ (uint128 lhs, uint128 rhs) |
chars_format & | operator^= (chars_format &lhs, chars_format rhs) |
StatusToStringMode & | operator^= (StatusToStringMode &lhs, StatusToStringMode rhs) |
constexpr chars_format | operator| (chars_format lhs, chars_format rhs) |
constexpr FormatConversionCharSet | operator| (FormatConversionCharSet a, FormatConversionCharSet b) |
constexpr int128 | operator| (int128 lhs, int128 rhs) |
constexpr StatusToStringMode | operator| (StatusToStringMode lhs, StatusToStringMode rhs) |
constexpr uint128 | operator| (uint128 lhs, uint128 rhs) |
chars_format & | operator|= (chars_format &lhs, chars_format rhs) |
StatusToStringMode & | operator|= (StatusToStringMode &lhs, StatusToStringMode rhs) |
constexpr chars_format | operator~ (chars_format arg) |
constexpr StatusToStringMode | operator~ (StatusToStringMode arg) |
constexpr uint128 | operator~ (uint128 val) |
Status | OutOfRangeError (absl::string_view message) |
strings_internal::PairFormatterImpl< strings_internal::AlphaNumFormatterImpl, strings_internal::AlphaNumFormatterImpl > | PairFormatter (absl::string_view sep) |
template<typename FirstFormatter , typename SecondFormatter > | |
strings_internal::PairFormatterImpl< FirstFormatter, SecondFormatter > | PairFormatter (FirstFormatter f1, absl::string_view sep, SecondFormatter f2) |
bool | ParseCivilTime (string_view s, CivilSecond *c) |
std::vector< char * > | ParseCommandLine (int argc, char *argv[]) |
bool | ParseDuration (absl::string_view dur_sv, Duration *d) |
template<typename T > | |
ABSL_NAMESPACE_BEGIN bool | ParseFlag (absl::string_view input, T *dst, std::string *error) |
template<typename T > | |
bool | ParseFlag (absl::string_view input, T *dst, std::string *error) |
bool | ParseFlag (const std::string &text, absl::Time *t, std::string *error) |
bool | ParseFlag (const std::string &text, Duration *dst, std::string *) |
bool | ParseLenientCivilTime (string_view s, CivilSecond *c) |
bool | ParseTime (absl::string_view format, absl::string_view input, absl::Time *time, std::string *err) |
bool | ParseTime (absl::string_view format, absl::string_view input, absl::TimeZone tz, absl::Time *time, std::string *err) |
Status | PermissionDeniedError (absl::string_view message) |
template<typename IntType , typename URBG > | |
IntType | Poisson (URBG &&urbg, double mean=1.0) |
template<class T > | |
ABSL_INTERNAL_CONSTEXPR_POPCOUNT std::enable_if< std::is_unsigned< T >::value, int >::type | popcount (T x) noexcept |
static void | PortableSleepForSeconds (int seconds) |
static void | PortableSleepForSeconds (int seconds) |
static void | PostSynchEvent (void *obj, int ev) |
static void | PostSynchEvent (void *obj, int ev) |
static std::pair< uint64_t, uint64_t > | PowFive (uint64_t num, int expfive) |
static std::pair< uint64_t, uint64_t > | PowFive (uint64_t num, int expfive) |
static bool | PrepareAppendRegion (CordRep *root, char **region, size_t *size, size_t max_length) |
static bool | PrepareAppendRegion (CordRep *root, char **region, size_t *size, size_t max_length) |
CivilDay | PrevWeekday (CivilDay cd, Weekday wd) |
template<typename... Args> | |
int | PrintF (const FormatSpec< Args... > &format, const Args &... args) |
absl::string_view | ProgramUsageMessage () |
static void | RaiseToDefaultHandler (int signo) |
static void | RaiseToDefaultHandler (int signo) |
static void | RaiseToPreviousHandler (int signo) |
static void | RaiseToPreviousHandler (int signo) |
static CordRep * | RawConcat (CordRep *left, CordRep *right) |
std::nullptr_t | RawPtr (std::nullptr_t) |
template<typename T > | |
auto | RawPtr (T &&ptr) -> decltype(std::addressof(*ptr)) |
static CordRep * | Rebalance (CordRep *node) |
void | RegisterCondVarTracer (void(*fn)(const char *msg, const void *cv)) |
void | RegisterLivePointers (const void *, size_t) |
void | RegisterMutexProfiler (void(*fn)(int64_t wait_cycles)) |
void | RegisterMutexProfiler (void(*fn)(int64_t wait_timestamp)) |
void | RegisterMutexTracer (void(*fn)(const char *msg, const void *obj, int64_t wait_cycles)) |
void | RegisterSymbolizer (bool(*fn)(const void *pc, char *out, int out_size)) |
void | RemoveExtraAsciiWhitespace (std::string *str) |
static CordRep * | RemovePrefixFrom (CordRep *node, size_t n) |
static CordRep * | RemoveSuffixFrom (CordRep *node, size_t n) |
static bool | RepMemoryUsageLeaf (const CordRep *rep, size_t *total_mem_usage) |
static std::string | ReportError (CordRep *root, CordRep *node) |
static std::string | ReportError (CordRep *root, CordRep *node) |
Status | ResourceExhaustedError (absl::string_view message) |
static CordRep * | RingNewTree (const char *data, size_t length, size_t alloc_hint) |
template<typename ForwardIterator > | |
ForwardIterator | rotate (ForwardIterator first, ForwardIterator middle, ForwardIterator last) |
template<class T > | |
ABSL_NAMESPACE_BEGIN constexpr ABSL_MUST_USE_RESULT std::enable_if< std::is_unsigned< T >::value, T >::type | rotl (T x, int s) noexcept |
template<class T > | |
constexpr ABSL_MUST_USE_RESULT std::enable_if< std::is_unsigned< T >::value, T >::type | rotr (T x, int s) noexcept |
static void | RunWorker (int i, ThreadSafeCounter *ready_counter, Notification *notification, ThreadSafeCounter *done_counter) |
static void | RunWorker (int i, ThreadSafeCounter *ready_counter, Notification *notification, ThreadSafeCounter *done_counter) |
constexpr Duration | Seconds (int64_t n) |
template<typename T , time_internal::EnableIfIntegral< T > = 0> | |
constexpr Duration | Seconds (T n) |
template<typename T , time_internal::EnableIfFloat< T > = 0> | |
Duration | Seconds (T n) |
static void | SetConcatChildren (CordRepConcat *concat, CordRep *left, CordRep *right) |
template<typename T > | |
void | SetFlag (absl::Flag< T > *flag, const T &v) |
template<typename T , typename V > | |
void | SetFlag (absl::Flag< T > *flag, const V &v) |
void | SetFlagsUsageConfig (FlagsUsageConfig usage_config) |
void | SetMutexDeadlockDetectionMode (OnDeadlockCycle mode) |
void | SetProgramUsageMessage (absl::string_view new_usage_message) |
void | SetStackUnwinder (int(*unwinder)(void **pcs, int *sizes, int max_depth, int skip_count, const void *uc, int *min_dropped_frames)) |
void | SetStackUnwinder (Unwinder w) |
static bool | SetupAlternateStackOnce () |
static bool | SetupAlternateStackOnce () |
template<typename RHS > | |
int | SharedCompareImpl (const Cord &lhs, const RHS &rhs) |
template<typename T , typename D > | |
std::shared_ptr< T > | ShareUniquePtr (std::unique_ptr< T, D > &&ptr) |
bool | SimpleAtob (absl::string_view str, bool *out) |
bool | SimpleAtod (absl::string_view str, double *out) |
ABSL_NAMESPACE_BEGIN bool | SimpleAtof (absl::string_view str, float *out) |
ABSL_MUST_USE_RESULT bool | SimpleAtoi (absl::string_view str, absl::int128 *out) |
ABSL_MUST_USE_RESULT bool | SimpleAtoi (absl::string_view str, absl::uint128 *out) |
template<typename int_type > | |
ABSL_NAMESPACE_BEGIN ABSL_MUST_USE_RESULT bool | SimpleAtoi (absl::string_view str, int_type *out) |
template<typename int_type > | |
ABSL_MUST_USE_RESULT bool | SimpleAtoi (absl::string_view str, int_type *out) |
ABSL_MUST_USE_RESULT bool | SimpleHexAtoi (absl::string_view str, absl::int128 *out) |
ABSL_MUST_USE_RESULT bool | SimpleHexAtoi (absl::string_view str, absl::uint128 *out) |
template<typename int_type > | |
ABSL_MUST_USE_RESULT bool | SimpleHexAtoi (absl::string_view str, int_type *out) |
strings_internal::AlphaNumBuffer< numbers_internal::kSixDigitsToBufferSize > | SixDigits (double d) |
static PerThreadSynch * | Skip (PerThreadSynch *x) |
static PerThreadSynch * | Skip (PerThreadSynch *x) |
void | SleepFor (absl::Duration duration) |
template<typename... Args> | |
int | SNPrintF (char *output, std::size_t size, const FormatSpec< Args... > &format, const Args &... args) |
static ExpDigits | SplitToSix (const double value) |
static ExpDigits | SplitToSix (const double value) |
static char * | StackString (void **pcs, int n, char *buf, int maxlen, bool symbolize) |
static char * | StackString (void **pcs, int n, char *buf, int maxlen, bool symbolize) |
bool | StartsWith (absl::string_view text, absl::string_view prefix) noexcept |
bool | StartsWithIgnoreCase (absl::string_view text, absl::string_view prefix) noexcept |
ABSL_NAMESPACE_BEGIN std::string | StatusCodeToString (StatusCode code) |
void | StrAppend (std::string *) |
void | StrAppend (std::string *dest, const AlphaNum &a) |
void | StrAppend (std::string *dest, const AlphaNum &a, const AlphaNum &b) |
void | StrAppend (std::string *dest, const AlphaNum &a, const AlphaNum &b, const AlphaNum &c) |
void | StrAppend (std::string *dest, const AlphaNum &a, const AlphaNum &b, const AlphaNum &c, const AlphaNum &d) |
template<typename... AV> | |
void | StrAppend (std::string *dest, const AlphaNum &a, const AlphaNum &b, const AlphaNum &c, const AlphaNum &d, const AlphaNum &e, const AV &... args) |
template<typename... Args> | |
std::string & | StrAppendFormat (std::string *dst, const FormatSpec< Args... > &format, const Args &... args) |
ABSL_MUST_USE_RESULT std::string | StrCat () |
ABSL_MUST_USE_RESULT std::string | StrCat (const AlphaNum &a) |
std::string | StrCat (const AlphaNum &a, const AlphaNum &b) |
std::string | StrCat (const AlphaNum &a, const AlphaNum &b, const AlphaNum &c) |
std::string | StrCat (const AlphaNum &a, const AlphaNum &b, const AlphaNum &c, const AlphaNum &d) |
template<typename... AV> | |
ABSL_MUST_USE_RESULT std::string | StrCat (const AlphaNum &a, const AlphaNum &b, const AlphaNum &c, const AlphaNum &d, const AlphaNum &e, const AV &... args) |
ABSL_NAMESPACE_BEGIN bool | StrContains (absl::string_view haystack, absl::string_view needle) noexcept |
bool | StrContains (absl::string_view haystack, char needle) noexcept |
template<typename... Args> | |
ABSL_MUST_USE_RESULT str_format_internal::Streamable | StreamFormat (const FormatSpec< Args... > &format, const Args &... args) |
strings_internal::StreamFormatterImpl | StreamFormatter () |
template<typename... Args> | |
ABSL_MUST_USE_RESULT std::string | StrFormat (const FormatSpec< Args... > &format, const Args &... args) |
ABSL_MUST_USE_RESULT absl::string_view | StripAsciiWhitespace (absl::string_view str) |
void | StripAsciiWhitespace (std::string *str) |
ABSL_MUST_USE_RESULT absl::string_view | StripLeadingAsciiWhitespace (absl::string_view str) |
void | StripLeadingAsciiWhitespace (std::string *str) |
ABSL_MUST_USE_RESULT absl::string_view | StripPrefix (absl::string_view str, absl::string_view prefix) |
ABSL_MUST_USE_RESULT absl::string_view | StripSuffix (absl::string_view str, absl::string_view suffix) |
ABSL_MUST_USE_RESULT absl::string_view | StripTrailingAsciiWhitespace (absl::string_view str) |
void | StripTrailingAsciiWhitespace (std::string *str) |
template<typename Range > | |
std::string | StrJoin (const Range &range, absl::string_view separator) |
template<typename Range , typename Formatter > | |
std::string | StrJoin (const Range &range, absl::string_view separator, Formatter &&fmt) |
template<typename... T> | |
std::string | StrJoin (const std::tuple< T... > &value, absl::string_view separator) |
template<typename... T, typename Formatter > | |
std::string | StrJoin (const std::tuple< T... > &value, absl::string_view separator, Formatter &&fmt) |
template<typename Iterator , typename Formatter > | |
std::string | StrJoin (Iterator start, Iterator end, absl::string_view sep, Formatter &&fmt) |
template<typename Iterator > | |
std::string | StrJoin (Iterator start, Iterator end, absl::string_view separator) |
template<typename T > | |
std::string | StrJoin (std::initializer_list< T > il, absl::string_view separator) |
template<typename T , typename Formatter > | |
std::string | StrJoin (std::initializer_list< T > il, absl::string_view separator, Formatter &&fmt) |
template<typename StrToStrMapping > | |
std::string | StrReplaceAll (absl::string_view s, const StrToStrMapping &replacements) |
ABSL_NAMESPACE_BEGIN ABSL_MUST_USE_RESULT std::string | StrReplaceAll (absl::string_view s, std::initializer_list< std::pair< absl::string_view, absl::string_view >> replacements) |
std::string | StrReplaceAll (absl::string_view s, strings_internal::FixedMapping replacements) |
template<typename StrToStrMapping > | |
int | StrReplaceAll (const StrToStrMapping &replacements, std::string *target) |
int | StrReplaceAll (std::initializer_list< std::pair< absl::string_view, absl::string_view >> replacements, std::string *target) |
int | StrReplaceAll (strings_internal::FixedMapping replacements, std::string *target) |
template<typename Delimiter > | |
strings_internal::Splitter< typename strings_internal::SelectDelimiter< Delimiter >::type, AllowEmpty, absl::string_view > | StrSplit (strings_internal::ConvertibleToStringView text, Delimiter d) |
template<typename Delimiter , typename Predicate > | |
strings_internal::Splitter< typename strings_internal::SelectDelimiter< Delimiter >::type, Predicate, absl::string_view > | StrSplit (strings_internal::ConvertibleToStringView text, Delimiter d, Predicate p) |
template<typename Delimiter , typename StringType , EnableSplitIfString< StringType > = 0> | |
strings_internal::Splitter< typename strings_internal::SelectDelimiter< Delimiter >::type, AllowEmpty, std::string > | StrSplit (StringType &&text, Delimiter d) |
template<typename Delimiter , typename Predicate , typename StringType , EnableSplitIfString< StringType > = 0> | |
strings_internal::Splitter< typename strings_internal::SelectDelimiter< Delimiter >::type, Predicate, std::string > | StrSplit (StringType &&text, Delimiter d, Predicate p) |
ABSL_MUST_USE_RESULT std::string | Substitute (absl::string_view format) |
ABSL_MUST_USE_RESULT std::string | Substitute (absl::string_view format, const substitute_internal::Arg &a0) |
ABSL_MUST_USE_RESULT std::string | Substitute (absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1) |
ABSL_MUST_USE_RESULT std::string | Substitute (absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2) |
ABSL_MUST_USE_RESULT std::string | Substitute (absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3) |
ABSL_MUST_USE_RESULT std::string | Substitute (absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3, const substitute_internal::Arg &a4) |
ABSL_MUST_USE_RESULT std::string | Substitute (absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3, const substitute_internal::Arg &a4, const substitute_internal::Arg &a5) |
ABSL_MUST_USE_RESULT std::string | Substitute (absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3, const substitute_internal::Arg &a4, const substitute_internal::Arg &a5, const substitute_internal::Arg &a6) |
ABSL_MUST_USE_RESULT std::string | Substitute (absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3, const substitute_internal::Arg &a4, const substitute_internal::Arg &a5, const substitute_internal::Arg &a6, const substitute_internal::Arg &a7) |
ABSL_MUST_USE_RESULT std::string | Substitute (absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3, const substitute_internal::Arg &a4, const substitute_internal::Arg &a5, const substitute_internal::Arg &a6, const substitute_internal::Arg &a7, const substitute_internal::Arg &a8) |
ABSL_MUST_USE_RESULT std::string | Substitute (absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3, const substitute_internal::Arg &a4, const substitute_internal::Arg &a5, const substitute_internal::Arg &a6, const substitute_internal::Arg &a7, const substitute_internal::Arg &a8, const substitute_internal::Arg &a9) |
void | SubstituteAndAppend (std::string *output, absl::string_view format) |
void | SubstituteAndAppend (std::string *output, absl::string_view format, const substitute_internal::Arg &a0) |
void | SubstituteAndAppend (std::string *output, absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1) |
void | SubstituteAndAppend (std::string *output, absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2) |
void | SubstituteAndAppend (std::string *output, absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3) |
void | SubstituteAndAppend (std::string *output, absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3, const substitute_internal::Arg &a4) |
void | SubstituteAndAppend (std::string *output, absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3, const substitute_internal::Arg &a4, const substitute_internal::Arg &a5) |
void | SubstituteAndAppend (std::string *output, absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3, const substitute_internal::Arg &a4, const substitute_internal::Arg &a5, const substitute_internal::Arg &a6) |
void | SubstituteAndAppend (std::string *output, absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3, const substitute_internal::Arg &a4, const substitute_internal::Arg &a5, const substitute_internal::Arg &a6, const substitute_internal::Arg &a7) |
void | SubstituteAndAppend (std::string *output, absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3, const substitute_internal::Arg &a4, const substitute_internal::Arg &a5, const substitute_internal::Arg &a6, const substitute_internal::Arg &a7, const substitute_internal::Arg &a8) |
void | SubstituteAndAppend (std::string *output, absl::string_view format, const substitute_internal::Arg &a0, const substitute_internal::Arg &a1, const substitute_internal::Arg &a2, const substitute_internal::Arg &a3, const substitute_internal::Arg &a4, const substitute_internal::Arg &a5, const substitute_internal::Arg &a6, const substitute_internal::Arg &a7, const substitute_internal::Arg &a8, const substitute_internal::Arg &a9) |
template<typename T , size_t N, typename A > | |
void | swap (absl::InlinedVector< T, N, A > &a, absl::InlinedVector< T, N, A > &b) noexcept(noexcept(a.swap(b))) |
void | swap (absl::Status &a, absl::Status &b) |
void | swap (any &x, any &y) noexcept |
template<typename K , typename V , typename C , typename A > | |
void | swap (btree_map< K, V, C, A > &x, btree_map< K, V, C, A > &y) |
template<typename K , typename V , typename C , typename A > | |
void | swap (btree_multimap< K, V, C, A > &x, btree_multimap< K, V, C, A > &y) |
template<typename K , typename C , typename A > | |
void | swap (btree_multiset< K, C, A > &x, btree_multiset< K, C, A > &y) |
template<typename K , typename C , typename A > | |
void | swap (btree_set< K, C, A > &x, btree_set< K, C, A > &y) |
template<typename T , typename std::enable_if< std::is_move_constructible< T >::value &&type_traits_internal::IsSwappable< T >::value, bool >::type = false> | |
void | swap (optional< T > &a, optional< T > &b) noexcept(noexcept(a.swap(b))) |
template<typename... Ts, absl::enable_if_t< absl::conjunction< std::is_move_constructible< Ts >..., type_traits_internal::IsSwappable< Ts >... >::value, int > = 0> | |
void | swap (variant< Ts... > &v, variant< Ts... > &w) noexcept(noexcept(v.swap(w))) |
bool | Symbolize (const void *pc, char *out, int out_size) |
static ABSL_CONST_INIT absl::base_internal::SpinLock | synch_event_mu (absl::kConstInit, base_internal::SCHEDULE_KERNEL_ONLY) |
static ABSL_CONST_INIT absl::base_internal::SpinLock | synch_event_mu (absl::kConstInit, base_internal::SCHEDULE_KERNEL_ONLY) |
static SynchLocksHeld * | Synch_GetAllLocks () |
static SynchLocksHeld * | Synch_GetAllLocks () |
static PerThreadSynch * | Synch_GetPerThread () |
static PerThreadSynch * | Synch_GetPerThread () |
static PerThreadSynch * | Synch_GetPerThreadAnnotated (Mutex *mu) |
static PerThreadSynch * | Synch_GetPerThreadAnnotated (Mutex *mu) |
TEST (NotificationTest, SanityTest) | |
absl::Time | TimeFromTimespec (timespec ts) |
absl::Time | TimeFromTimeval (timeval tv) |
std::chrono::hours | ToChronoHours (Duration d) |
std::chrono::microseconds | ToChronoMicroseconds (Duration d) |
std::chrono::milliseconds | ToChronoMilliseconds (Duration d) |
std::chrono::minutes | ToChronoMinutes (Duration d) |
std::chrono::nanoseconds | ToChronoNanoseconds (Duration d) |
std::chrono::seconds | ToChronoSeconds (Duration d) |
std::chrono::system_clock::time_point | ToChronoTime (absl::Time t) |
CivilDay | ToCivilDay (Time t, TimeZone tz) |
CivilHour | ToCivilHour (Time t, TimeZone tz) |
CivilMinute | ToCivilMinute (Time t, TimeZone tz) |
CivilMonth | ToCivilMonth (Time t, TimeZone tz) |
CivilSecond | ToCivilSecond (Time t, TimeZone tz) |
CivilYear | ToCivilYear (Time t, TimeZone tz) |
double | ToDoubleHours (Duration d) |
double | ToDoubleMicroseconds (Duration d) |
double | ToDoubleMilliseconds (Duration d) |
double | ToDoubleMinutes (Duration d) |
double | ToDoubleNanoseconds (Duration d) |
double | ToDoubleSeconds (Duration d) |
int64_t | ToInt64Hours (Duration d) |
int64_t | ToInt64Microseconds (Duration d) |
int64_t | ToInt64Milliseconds (Duration d) |
int64_t | ToInt64Minutes (Duration d) |
int64_t | ToInt64Nanoseconds (Duration d) |
int64_t | ToInt64Seconds (Duration d) |
absl::string_view | ToString (TestCordSize size) |
timespec | ToTimespec (Duration d) |
timespec | ToTimespec (Time t) |
time_t | ToTimeT (Time t) |
timeval | ToTimeval (Duration d) |
timeval | ToTimeval (Time t) |
struct tm | ToTM (absl::Time t, absl::TimeZone tz) |
double | ToUDate (Time t) |
int64_t | ToUniversal (absl::Time t) |
int64_t | ToUnixMicros (Time t) |
int64_t | ToUnixMillis (Time t) |
int64_t | ToUnixNanos (Time t) |
int64_t | ToUnixSeconds (Time t) |
Duration | Trunc (Duration d, Duration unit) |
static bool | TryAcquireWithSpinning (std::atomic< intptr_t > *mu) |
static bool | TryAcquireWithSpinning (std::atomic< intptr_t > *mu) |
constexpr uint64_t | Uint128High64 (uint128 v) |
constexpr uint64_t | Uint128Low64 (uint128 v) |
constexpr uint128 | Uint128Max () |
Status | UnauthenticatedError (absl::string_view message) |
Status | UnavailableError (absl::string_view message) |
template<typename R = void, typename TagType , typename URBG , typename A , typename B > | |
absl::enable_if_t< std::is_same< R, void >::value, random_internal::uniform_inferred_return_t< A, B > > | Uniform (TagType tag, URBG &&urbg, A lo, B hi) |
template<typename R = void, typename TagType , typename URBG > | |
absl::enable_if_t<!std::is_same< R, void >::value, R > | Uniform (TagType tag, URBG &&urbg, R lo, R hi) |
template<typename R , typename URBG > | |
absl::enable_if_t<!std::is_signed< R >::value, R > | Uniform (URBG &&urbg) |
template<typename R = void, typename URBG , typename A , typename B > | |
absl::enable_if_t< std::is_same< R, void >::value, random_internal::uniform_inferred_return_t< A, B > > | Uniform (URBG &&urbg, A lo, B hi) |
template<typename R = void, typename URBG > | |
absl::enable_if_t<!std::is_same< R, void >::value, R > | Uniform (URBG &&urbg, R lo, R hi) |
Status | UnimplementedError (absl::string_view message) |
constexpr Time | UniversalEpoch () |
constexpr Time | UnixEpoch () |
Status | UnknownError (absl::string_view message) |
std::string | UnparseFlag (absl::Time t) |
template<typename T > | |
std::string | UnparseFlag (const T &v) |
std::string | UnparseFlag (Duration d) |
static void | UnrefSynchEvent (SynchEvent *e) |
static void | UnrefSynchEvent (SynchEvent *e) |
void | UnRegisterLivePointers (const void *, size_t) |
template<typename... Args> | |
Cord | UnsampledCord (Args... args) |
TimeZone | UTCTimeZone () |
std::string | Utf8SafeCEscape (absl::string_view src) |
std::string | Utf8SafeCHexEscape (absl::string_view src) |
static bool | VerifyNode (CordRep *root, CordRep *start_node, bool full_validation) |
static bool | VerifyNode (CordRep *root, CordRep *start_node, bool full_validation) |
static CordRep * | VerifyTree (CordRep *node) |
static CordRep * | VerifyTree (CordRep *node) |
template<int &... ExplicitBarrier, typename Container > | |
ABSL_NAMESPACE_BEGIN ABSL_MUST_USE_RESULT testing::AssertionResult | VerifyTypeImplementsAbslHashCorrectly (const Container &values) |
template<int & ..., typename Container > | |
ABSL_MUST_USE_RESULT testing::AssertionResult | VerifyTypeImplementsAbslHashCorrectly (const Container &values) |
template<int &... ExplicitBarrier, typename Container , typename Eq > | |
ABSL_MUST_USE_RESULT testing::AssertionResult | VerifyTypeImplementsAbslHashCorrectly (const Container &values, Eq equals) |
template<int & ..., typename T > | |
ABSL_MUST_USE_RESULT testing::AssertionResult | VerifyTypeImplementsAbslHashCorrectly (std::initializer_list< T > values) |
template<int & ..., typename T , typename Eq > | |
ABSL_MUST_USE_RESULT testing::AssertionResult | VerifyTypeImplementsAbslHashCorrectly (std::initializer_list< T > values, Eq equals) |
template<typename Visitor , typename... Variants> | |
variant_internal::VisitResult< Visitor, Variants... > | visit (Visitor &&vis, Variants &&... vars) |
template<typename T > | |
std::weak_ptr< T > | WeakenPtr (const std::shared_ptr< T > &ptr) |
std::string | WebSafeBase64Escape (absl::string_view src) |
void | WebSafeBase64Escape (absl::string_view src, std::string *dest) |
bool | WebSafeBase64Unescape (absl::string_view src, std::string *dest) |
template<typename T > | |
ABSL_NAMESPACE_BEGIN std::unique_ptr< T > | WrapUnique (T *ptr) |
static void | WriteFailureInfo (int signo, void *ucontext, int cpu, void(*writerfn)(const char *)) |
static void | WriteFailureInfo (int signo, void *ucontext, int cpu, void(*writerfn)(const char *)) |
static void | WriterFnWrapper (const char *data, void *arg) |
static void | WriterFnWrapper (const char *data, void *arg) |
static void | WriteSignalMessage (int signo, int cpu, void(*writerfn)(const char *)) |
static void | WriteSignalMessage (int signo, int cpu, void(*writerfn)(const char *)) |
static ABSL_ATTRIBUTE_NOINLINE void | WriteStackTrace (void *ucontext, bool symbolize_stacktrace, void(*writerfn)(const char *, void *), void *writerfn_arg) |
static ABSL_ATTRIBUTE_NOINLINE void | WriteStackTrace (void *ucontext, bool symbolize_stacktrace, void(*writerfn)(const char *, void *), void *writerfn_arg) |
static void | WriteToStderr (const char *data) |
static void | WriteToStderr (const char *data) |
constexpr Duration | ZeroDuration () |
template<typename IntType , typename URBG > | |
IntType | Zipf (URBG &&urbg, IntType hi=(std::numeric_limits< IntType >::max)(), double q=2.0, double v=1.0) |
using absl::add_const_t = typedef typename std::add_const<T>::type |
Definition at line 591 of file abseil-cpp/absl/meta/type_traits.h.
using absl::add_cv_t = typedef typename std::add_cv<T>::type |
Definition at line 588 of file abseil-cpp/absl/meta/type_traits.h.
using absl::add_lvalue_reference_t = typedef typename std::add_lvalue_reference<T>::type |
Definition at line 600 of file abseil-cpp/absl/meta/type_traits.h.
using absl::add_pointer_t = typedef typename std::add_pointer<T>::type |
Definition at line 609 of file abseil-cpp/absl/meta/type_traits.h.
using absl::add_rvalue_reference_t = typedef typename std::add_rvalue_reference<T>::type |
Definition at line 603 of file abseil-cpp/absl/meta/type_traits.h.
using absl::add_volatile_t = typedef typename std::add_volatile<T>::type |
Definition at line 594 of file abseil-cpp/absl/meta/type_traits.h.
using absl::aligned_storage_t = typedef typename std::aligned_storage<Len, Align>::type |
Definition at line 625 of file abseil-cpp/absl/meta/type_traits.h.
typedef random_internal::NonsecureURBGBase< random_internal::randen_engine< uint64_t > > absl::BitGen |
Definition at line 121 of file abseil-cpp/absl/random/random.h.
Definition at line 360 of file abseil-cpp/absl/time/civil_time.h.
Definition at line 347 of file abseil-cpp/absl/time/civil_time.h.
Definition at line 330 of file abseil-cpp/absl/time/civil_time.h.
Definition at line 328 of file abseil-cpp/absl/time/civil_time.h.
Definition at line 326 of file abseil-cpp/absl/time/civil_time.h.
Definition at line 332 of file abseil-cpp/absl/time/civil_time.h.
Definition at line 324 of file abseil-cpp/absl/time/civil_time.h.
Definition at line 334 of file abseil-cpp/absl/time/civil_time.h.
using absl::common_type_t = typedef typename std::common_type<T...>::type |
Definition at line 637 of file abseil-cpp/absl/meta/type_traits.h.
using absl::conditional_t = typedef typename std::conditional<B, T, F>::type |
Definition at line 634 of file abseil-cpp/absl/meta/type_traits.h.
using absl::decay_t = typedef typename std::decay<T>::type |
Definition at line 628 of file abseil-cpp/absl/meta/type_traits.h.
using absl::enable_if_t = typedef typename std::enable_if<B, T>::type |
Definition at line 631 of file abseil-cpp/absl/meta/type_traits.h.
using absl::EnableSplitIfString = typedef typename std::enable_if<std::is_same<T, std::string>::value || std::is_same<T, const std::string>::value, int>::type |
Definition at line 376 of file abseil-cpp/absl/strings/str_split.h.
using absl::Flag = typedef flags_internal::Flag<T> |
Definition at line 48 of file abseil-cpp/absl/flags/declare.h.
Definition at line 520 of file abseil-cpp/absl/strings/str_format.h.
using absl::FormatSpec = typedef str_format_internal::FormatSpecTemplate< str_format_internal::ArgumentToConv<Args>()...> |
Definition at line 257 of file abseil-cpp/absl/strings/str_format.h.
using absl::GetTidType = typedef decltype(absl::base_internal::GetTID()) |
Definition at line 314 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
using absl::Hash = typedef absl::hash_internal::Hash<T> |
Definition at line 247 of file abseil-cpp/absl/hash/hash.h.
using absl::in_place_index_t = typedef void (*)(utility_internal::InPlaceIndexTag<I>) |
Definition at line 208 of file abseil-cpp/absl/utility/utility.h.
using absl::in_place_type_t = typedef void (*)(utility_internal::InPlaceTypeTag<T>) |
Definition at line 191 of file abseil-cpp/absl/utility/utility.h.
using absl::index_sequence = typedef integer_sequence<size_t, Ints...> |
Definition at line 87 of file abseil-cpp/absl/utility/utility.h.
using absl::index_sequence_for = typedef make_index_sequence<sizeof...(Ts)> |
Definition at line 158 of file abseil-cpp/absl/utility/utility.h.
typedef random_internal::NonsecureURBGBase< random_internal::pcg64_2018_engine > absl::InsecureBitGen |
Definition at line 162 of file abseil-cpp/absl/random/random.h.
using absl::make_index_sequence = typedef make_integer_sequence<size_t, N> |
Definition at line 150 of file abseil-cpp/absl/utility/utility.h.
using absl::make_integer_sequence = typedef typename utility_internal::Gen<T, N>::type |
Definition at line 142 of file abseil-cpp/absl/utility/utility.h.
using absl::make_signed_t = typedef typename std::make_signed<T>::type |
Definition at line 612 of file abseil-cpp/absl/meta/type_traits.h.
using absl::make_unsigned_t = typedef typename std::make_unsigned<T>::type |
Definition at line 615 of file abseil-cpp/absl/meta/type_traits.h.
typedef random_internal::MockOverloadSet< absl::bernoulli_distribution, bool(MockingBitGen &, double)> absl::MockBernoulli |
Definition at line 111 of file abseil-cpp/absl/random/mock_distributions.h.
using absl::MockBeta = typedef random_internal::MockOverloadSet<absl::beta_distribution<RealType>, RealType(MockingBitGen&, RealType, RealType)> |
Definition at line 136 of file abseil-cpp/absl/random/mock_distributions.h.
using absl::MockExponential = typedef random_internal::MockOverloadSet<absl::exponential_distribution<RealType>, RealType(MockingBitGen&, RealType)> |
Definition at line 161 of file abseil-cpp/absl/random/mock_distributions.h.
using absl::MockGaussian = typedef random_internal::MockOverloadSet<absl::gaussian_distribution<RealType>, RealType(MockingBitGen&, RealType, RealType)> |
Definition at line 187 of file abseil-cpp/absl/random/mock_distributions.h.
using absl::MockLogUniform = typedef random_internal::MockOverloadSet< absl::log_uniform_int_distribution<IntType>, IntType(MockingBitGen&, IntType, IntType, IntType)> |
Definition at line 212 of file abseil-cpp/absl/random/mock_distributions.h.
using absl::MockPoisson = typedef random_internal::MockOverloadSet<absl::poisson_distribution<IntType>, IntType(MockingBitGen&, double)> |
Definition at line 236 of file abseil-cpp/absl/random/mock_distributions.h.
using absl::MockUniform = typedef random_internal::MockOverloadSet< random_internal::UniformDistributionWrapper<R>, R(IntervalClosedOpenTag, MockingBitGen&, R, R), R(IntervalClosedClosedTag, MockingBitGen&, R, R), R(IntervalOpenOpenTag, MockingBitGen&, R, R), R(IntervalOpenClosedTag, MockingBitGen&, R, R), R(MockingBitGen&, R, R), R(MockingBitGen&)> |
Definition at line 89 of file abseil-cpp/absl/random/mock_distributions.h.
using absl::MockZipf = typedef random_internal::MockOverloadSet<absl::zipf_distribution<IntType>, IntType(MockingBitGen&, IntType, double, double)> |
Definition at line 261 of file abseil-cpp/absl/random/mock_distributions.h.
using absl::ParsedFormat = typedef str_format_internal::ExtendedParsedFormat< absl::str_format_internal::ToFormatConversionCharSet(Conv)...> |
Definition at line 312 of file abseil-cpp/absl/strings/str_format.h.
using absl::remove_all_extents_t = typedef typename std::remove_all_extents<T>::type |
Definition at line 621 of file abseil-cpp/absl/meta/type_traits.h.
using absl::remove_const_t = typedef typename std::remove_const<T>::type |
Definition at line 582 of file abseil-cpp/absl/meta/type_traits.h.
using absl::remove_cv_t = typedef typename std::remove_cv<T>::type |
Definition at line 579 of file abseil-cpp/absl/meta/type_traits.h.
using absl::remove_cvref_t = typedef typename remove_cvref<T>::type |
Definition at line 528 of file abseil-cpp/absl/meta/type_traits.h.
using absl::remove_extent_t = typedef typename std::remove_extent<T>::type |
Definition at line 618 of file abseil-cpp/absl/meta/type_traits.h.
using absl::remove_pointer_t = typedef typename std::remove_pointer<T>::type |
Definition at line 606 of file abseil-cpp/absl/meta/type_traits.h.
using absl::remove_reference_t = typedef typename std::remove_reference<T>::type |
Definition at line 597 of file abseil-cpp/absl/meta/type_traits.h.
using absl::remove_volatile_t = typedef typename std::remove_volatile<T>::type |
Definition at line 585 of file abseil-cpp/absl/meta/type_traits.h.
using absl::result_of_t = typedef typename type_traits_internal::result_of<F>::type |
Definition at line 658 of file abseil-cpp/absl/meta/type_traits.h.
typedef random_internal::SaltedSeedSeq< std::seed_seq > absl::SeedSeq |
Definition at line 56 of file abseil-cpp/absl/random/seed_sequences.h.
using absl::underlying_type_t = typedef typename std::underlying_type<T>::type |
Definition at line 640 of file abseil-cpp/absl/meta/type_traits.h.
using absl::variant_alternative_t = typedef typename variant_alternative<I, T>::type |
Definition at line 250 of file abseil-cpp/absl/types/variant.h.
using absl::void_t = typedef typename type_traits_internal::VoidTImpl<Ts...>::type |
Definition at line 218 of file abseil-cpp/absl/meta/type_traits.h.
typedef time_internal::cctz::weekday absl::Weekday |
Definition at line 370 of file abseil-cpp/absl/time/civil_time.h.
anonymous enum |
Enumerator | |
---|---|
kGdbMuSpin | |
kGdbMuEvent | |
kGdbMuWait | |
kGdbMuWriter | |
kGdbMuDesig | |
kGdbMuWrWait | |
kGdbMuReader | |
kGdbMuLow |
Definition at line 648 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
anonymous enum |
Enumerator | |
---|---|
kGdbCvSpin | |
kGdbCvEvent | |
kGdbCvLow |
Definition at line 2433 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
anonymous enum |
Enumerator | |
---|---|
kGdbMuSpin | |
kGdbMuEvent | |
kGdbMuWait | |
kGdbMuWriter | |
kGdbMuDesig | |
kGdbMuWrWait | |
kGdbMuReader | |
kGdbMuLow |
Definition at line 648 of file abseil-cpp/absl/synchronization/mutex.cc.
anonymous enum |
Enumerator | |
---|---|
kGdbCvSpin | |
kGdbCvEvent | |
kGdbCvLow |
Definition at line 2451 of file abseil-cpp/absl/synchronization/mutex.cc.
|
strong |
Enumerator | |
---|---|
scientific | |
fixed | |
hex | |
general | |
scientific | |
fixed | |
hex | |
general |
Definition at line 29 of file bloaty/third_party/abseil-cpp/absl/strings/charconv.h.
|
strong |
Enumerator | |
---|---|
scientific | |
fixed | |
hex | |
general | |
scientific | |
fixed | |
hex | |
general |
Definition at line 29 of file abseil-cpp/absl/strings/charconv.h.
enum absl::ConstInitType |
Enumerator | |
---|---|
kConstInit | |
kConstInit |
Definition at line 69 of file bloaty/third_party/abseil-cpp/absl/base/const_init.h.
enum absl::ConstInitType |
Enumerator | |
---|---|
kConstInit | |
kConstInit |
Definition at line 69 of file abseil-cpp/absl/base/const_init.h.
|
strong |
Enumerator | |
---|---|
kTotal | |
kFairShare |
Definition at line 109 of file abseil-cpp/absl/strings/cord.h.
|
strong |
Enumerator | |
---|---|
c | |
s | |
d | |
i | |
o | |
u | |
x | |
X | |
f | |
F | |
e | |
E | |
g | |
G | |
a | |
A | |
n | |
p | |
c | |
s | |
d | |
i | |
o | |
u | |
x | |
X | |
f | |
F | |
e | |
E | |
g | |
G | |
a | |
A | |
n | |
p |
Definition at line 636 of file abseil-cpp/absl/strings/str_format.h.
|
strong |
Enumerator | |
---|---|
c | |
s | |
d | |
i | |
o | |
u | |
x | |
X | |
f | |
F | |
e | |
E | |
g | |
G | |
a | |
A | |
n | |
p | |
c | |
s | |
d | |
i | |
o | |
u | |
x | |
X | |
f | |
F | |
e | |
E | |
g | |
G | |
a | |
A | |
n | |
p |
Definition at line 637 of file bloaty/third_party/abseil-cpp/absl/strings/str_format.h.
|
strong |
Enumerator | |
---|---|
c | |
s | |
d | |
i | |
o | |
u | |
x | |
X | |
f | |
F | |
e | |
E | |
g | |
G | |
a | |
A | |
n | |
p | |
kStar | |
kIntegral | |
kFloating | |
kNumeric | |
kString | |
kPointer | |
c | |
s | |
d | |
i | |
o | |
u | |
x | |
X | |
f | |
F | |
e | |
E | |
g | |
G | |
a | |
A | |
n | |
p | |
kStar | |
kIntegral | |
kFloating | |
kNumeric | |
kString | |
kPointer |
Definition at line 737 of file abseil-cpp/absl/strings/str_format.h.
|
strong |
Enumerator | |
---|---|
c | |
s | |
d | |
i | |
o | |
u | |
x | |
X | |
f | |
F | |
e | |
E | |
g | |
G | |
a | |
A | |
n | |
p | |
kStar | |
kIntegral | |
kFloating | |
kNumeric | |
kString | |
kPointer | |
c | |
s | |
d | |
i | |
o | |
u | |
x | |
X | |
f | |
F | |
e | |
E | |
g | |
G | |
a | |
A | |
n | |
p | |
kStar | |
kIntegral | |
kFloating | |
kNumeric | |
kString | |
kPointer |
Definition at line 738 of file bloaty/third_party/abseil-cpp/absl/strings/str_format.h.
|
strong |
Enumerator | |
---|---|
kInfo | |
kWarning | |
kError | |
kFatal | |
kInfo | |
kWarning | |
kError | |
kFatal |
Definition at line 69 of file abseil-cpp/absl/base/log_severity.h.
|
strong |
Enumerator | |
---|---|
kInfo | |
kWarning | |
kError | |
kFatal | |
kInfo | |
kWarning | |
kError | |
kFatal |
Definition at line 69 of file bloaty/third_party/abseil-cpp/absl/base/log_severity.h.
|
strong |
Enumerator | |
---|---|
kInfo | |
kWarning | |
kError | |
kFatal | |
kInfinity |
Definition at line 123 of file abseil-cpp/absl/base/log_severity.h.
|
strong |
Enumerator | |
---|---|
kNegativeInfinity | |
kInfo | |
kWarning | |
kError | |
kFatal |
Definition at line 138 of file abseil-cpp/absl/base/log_severity.h.
|
strong |
Enumerator | |
---|---|
kIgnore | |
kReport | |
kAbort | |
kIgnore | |
kReport | |
kAbort |
Definition at line 1054 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.h.
|
strong |
Enumerator | |
---|---|
kIgnore | |
kReport | |
kAbort | |
kIgnore | |
kReport | |
kAbort |
Definition at line 1062 of file abseil-cpp/absl/synchronization/mutex.h.
enum absl::PadSpec : uint8_t |
Definition at line 85 of file bloaty/third_party/abseil-cpp/absl/strings/str_cat.h.
enum absl::PadSpec : uint8_t |
Definition at line 85 of file abseil-cpp/absl/strings/str_cat.h.
|
strong |
Definition at line 91 of file third_party/bloaty/third_party/abseil-cpp/absl/status/status.h.
|
strong |
Definition at line 92 of file third_party/abseil-cpp/absl/status/status.h.
|
strong |
Enumerator | |
---|---|
kWithNoExtraData | |
kWithPayload | |
kWithEverything | |
kDefault | |
kWithNoExtraData | |
kWithPayload | |
kWithEverything | |
kDefault |
Definition at line 288 of file third_party/bloaty/third_party/abseil-cpp/absl/status/status.h.
|
strong |
Enumerator | |
---|---|
kWithNoExtraData | |
kWithPayload | |
kWithEverything | |
kDefault | |
kWithNoExtraData | |
kWithPayload | |
kWithEverything | |
kDefault |
Definition at line 290 of file third_party/abseil-cpp/absl/status/status.h.
|
strong |
Enumerator | |
---|---|
kEmpty | |
kInlined | |
kStringSso1 | |
kStringSso2 | |
kSmall | |
kMedium | |
kLarge | |
kEmpty | |
kInlined | |
kStringSso1 | |
kStringSso2 | |
kSmall | |
kMedium | |
kLarge |
Definition at line 33 of file abseil-cpp/absl/strings/cord_test_helpers.h.
|
strong |
Enumerator | |
---|---|
kEmpty | |
kInlined | |
kStringSso1 | |
kStringSso2 | |
kSmall | |
kMedium | |
kLarge | |
kEmpty | |
kInlined | |
kStringSso1 | |
kStringSso2 | |
kSmall | |
kMedium | |
kLarge |
Definition at line 33 of file bloaty/third_party/abseil-cpp/absl/strings/cord_test_helpers.h.
Status absl::AbortedError | ( | absl::string_view | message | ) |
Definition at line 323 of file third_party/abseil-cpp/absl/status/status.cc.
Definition at line 313 of file third_party/abseil-cpp/absl/time/time.h.
absl::ABSL_COMPARE_INLINE_INIT | ( | partial_ordering | , |
equivalent | , | ||
compare_internal::eq::equivalent | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | partial_ordering | , |
greater | , | ||
compare_internal::ord::greater | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | partial_ordering | , |
less | , | ||
compare_internal::ord::less | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | partial_ordering | , |
unordered | , | ||
compare_internal::ncmp::unordered | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | strong_equality | , |
equal | , | ||
compare_internal::eq::equal | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | strong_equality | , |
equivalent | , | ||
compare_internal::eq::equivalent | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | strong_equality | , |
nonequal | , | ||
compare_internal::eq::nonequal | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | strong_equality | , |
nonequivalent | , | ||
compare_internal::eq::nonequivalent | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | strong_ordering | , |
equal | , | ||
compare_internal::eq::equal | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | strong_ordering | , |
equivalent | , | ||
compare_internal::eq::equivalent | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | strong_ordering | , |
greater | , | ||
compare_internal::ord::greater | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | strong_ordering | , |
less | , | ||
compare_internal::ord::less | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | weak_equality | , |
equivalent | , | ||
compare_internal::eq::equivalent | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | weak_equality | , |
nonequivalent | , | ||
compare_internal::eq::nonequivalent | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | weak_ordering | , |
equivalent | , | ||
compare_internal::eq::equivalent | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | weak_ordering | , |
greater | , | ||
compare_internal::ord::greater | |||
) |
absl::ABSL_COMPARE_INLINE_INIT | ( | weak_ordering | , |
less | , | ||
compare_internal::ord::less | |||
) |
absl::ABSL_DEPRECATED | ( | "absl::bit_cast type requirements were violated. Update the types " "being used such that they are the same size and are both " "TriviallyCopyable." | ) | const & |
Definition at line 171 of file bloaty/third_party/abseil-cpp/absl/base/casts.h.
absl::ABSL_DEPRECATED | ( | "absl::RegisterSymbolizer() is deprecated and will be removed " "on or after 2023-05-01" | ) | const |
|
static |
|
static |
|
static |
|
static |
absl::ABSL_INTERNAL_INLINE_CONSTEXPR | ( | in_place_t | , |
in_place | , | ||
{} | |||
) |
absl::ABSL_INTERNAL_INLINE_CONSTEXPR | ( | IntervalClosedClosedTag | , |
IntervalClosed | , | ||
{} | |||
) |
ABSL_NAMESPACE_BEGIN absl::ABSL_INTERNAL_INLINE_CONSTEXPR | ( | IntervalClosedClosedTag | , |
IntervalClosedClosed | , | ||
{} | |||
) |
absl::ABSL_INTERNAL_INLINE_CONSTEXPR | ( | IntervalClosedOpenTag | , |
IntervalClosedOpen | , | ||
{} | |||
) |
absl::ABSL_INTERNAL_INLINE_CONSTEXPR | ( | IntervalOpenClosedTag | , |
IntervalOpenClosed | , | ||
{} | |||
) |
absl::ABSL_INTERNAL_INLINE_CONSTEXPR | ( | IntervalOpenOpenTag | , |
IntervalOpen | , | ||
{} | |||
) |
absl::ABSL_INTERNAL_INLINE_CONSTEXPR | ( | IntervalOpenOpenTag | , |
IntervalOpenOpen | , | ||
{} | |||
) |
absl::ABSL_INTERNAL_INLINE_CONSTEXPR | ( | nullopt_t | , |
nullopt | , | ||
nullopt_t(optional_internal::init_t()) | |||
) |
absl::ABSL_INTERNAL_INLINE_CONSTEXPR | ( | size_t | , |
variant_npos | , | ||
static_cast< size_t > | -1 | ||
) |
absl::ABSL_XRAY_LOG_ARGS | ( | 1 | ) |
Definition at line 1123 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 321 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 322 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
H absl::AbslHashValue | ( | H | h, |
const absl::InlinedVector< T, N, A > & | a | ||
) |
Definition at line 858 of file abseil-cpp/absl/container/inlined_vector.h.
|
strong |
Definition at line 202 of file abseil-cpp/absl/flags/marshalling.cc.
bool absl::AbslParseFlag | ( | absl::string_view | text, |
absl::Time * | t, | ||
std::string * | error | ||
) |
Definition at line 144 of file abseil-cpp/absl/time/format.cc.
bool absl::AbslParseFlag | ( | absl::string_view | text, |
Duration * | dst, | ||
std::string * | |||
) |
Definition at line 943 of file abseil-cpp/absl/time/duration.cc.
std::string absl::AbslUnparseFlag | ( | absl::LogSeverity | v | ) |
Definition at line 235 of file abseil-cpp/absl/flags/marshalling.cc.
std::string absl::AbslUnparseFlag | ( | absl::Time | t | ) |
Definition at line 148 of file abseil-cpp/absl/time/format.cc.
std::string absl::AbslUnparseFlag | ( | Duration | d | ) |
Definition at line 947 of file abseil-cpp/absl/time/duration.cc.
|
inline |
Definition at line 96 of file abseil-cpp/absl/strings/str_join.h.
Status absl::AlreadyExistsError | ( | absl::string_view | message | ) |
Definition at line 327 of file third_party/abseil-cpp/absl/status/status.cc.
ValueType absl::any_cast | ( | any && | operand | ) |
Definition at line 482 of file abseil-cpp/absl/types/any.h.
ValueType absl::any_cast | ( | any & | operand | ) |
Definition at line 468 of file abseil-cpp/absl/types/any.h.
|
noexcept |
Definition at line 503 of file abseil-cpp/absl/types/any.h.
Definition at line 503 of file abseil-cpp/absl/types/any.h.
Definition at line 454 of file abseil-cpp/absl/types/any.h.
Definition at line 492 of file abseil-cpp/absl/types/any.h.
Definition at line 492 of file abseil-cpp/absl/types/any.h.
Definition at line 88 of file abseil-cpp/absl/strings/str_cat.cc.
Definition at line 88 of file bloaty/third_party/abseil-cpp/absl/strings/str_cat.cc.
auto absl::apply | ( | Functor && | functor, |
Tuple && | t | ||
) | -> decltype(utility_internal::apply_helper( absl::forward<Functor>(functor), absl::forward<Tuple>(t), absl::make_index_sequence<std::tuple_size< typename std::remove_reference<Tuple>::type>::value> |
Definition at line 289 of file abseil-cpp/absl/utility/utility.h.
|
inline |
Definition at line 87 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 80 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 157 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 109 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 116 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 132 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 142 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 152 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 137 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 102 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 95 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 147 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 124 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 163 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 181 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 171 of file abseil-cpp/absl/strings/ascii.h.
void absl::AsciiStrToLower | ( | std::string * | s | ) |
Definition at line 158 of file abseil-cpp/absl/strings/ascii.cc.
|
inline |
Definition at line 189 of file abseil-cpp/absl/strings/ascii.h.
void absl::AsciiStrToUpper | ( | std::string * | s | ) |
Definition at line 164 of file abseil-cpp/absl/strings/ascii.cc.
|
static |
Definition at line 209 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 209 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 193 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 193 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
std::string absl::Base64Escape | ( | absl::string_view | src | ) |
Definition at line 916 of file abseil-cpp/absl/strings/escaping.cc.
void absl::Base64Escape | ( | absl::string_view | src, |
std::string * | dest | ||
) |
Definition at line 904 of file abseil-cpp/absl/strings/escaping.cc.
bool absl::Base64Unescape | ( | absl::string_view | src, |
std::string * | dest | ||
) |
Definition at line 896 of file abseil-cpp/absl/strings/escaping.cc.
|
static |
Definition at line 69 of file abseil-cpp/absl/synchronization/notification_test.cc.
|
static |
Definition at line 69 of file bloaty/third_party/abseil-cpp/absl/synchronization/notification_test.cc.
bool absl::Bernoulli | ( | URBG && | urbg, |
double | p | ||
) |
Definition at line 241 of file abseil-cpp/absl/random/distributions.h.
RealType absl::Beta | ( | URBG && | urbg, |
RealType | alpha, | ||
RealType | beta | ||
) |
Definition at line 268 of file abseil-cpp/absl/random/distributions.h.
|
constexpr |
Definition at line 182 of file abseil-cpp/absl/functional/bind_front.h.
|
inline |
Definition at line 167 of file abseil-cpp/absl/base/casts.h.
|
inline |
Definition at line 155 of file abseil-cpp/absl/numeric/bits.h.
|
inlinenoexcept |
Definition at line 145 of file abseil-cpp/absl/numeric/bits.h.
|
inlinenoexcept |
Definition at line 135 of file abseil-cpp/absl/numeric/bits.h.
std::string absl::BytesToHexString | ( | absl::string_view | from | ) |
Definition at line 940 of file abseil-cpp/absl/strings/escaping.cc.
decay_t< T > absl::c_accumulate | ( | const Sequence & | sequence, |
T && | init | ||
) |
Definition at line 1677 of file abseil-cpp/absl/algorithm/container.h.
decay_t< T > absl::c_accumulate | ( | const Sequence & | sequence, |
T && | init, | ||
BinaryOp && | binary_op | ||
) |
Definition at line 1686 of file abseil-cpp/absl/algorithm/container.h.
OutputIt absl::c_adjacent_difference | ( | const InputSequence & | input, |
OutputIt | output_first | ||
) |
Definition at line 1731 of file abseil-cpp/absl/algorithm/container.h.
OutputIt absl::c_adjacent_difference | ( | const InputSequence & | input, |
OutputIt | output_first, | ||
BinaryOp && | op | ||
) |
Definition at line 1741 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence > absl::c_adjacent_find | ( | Sequence & | sequence | ) |
Definition at line 300 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence > absl::c_adjacent_find | ( | Sequence & | sequence, |
BinaryPredicate && | pred | ||
) |
Definition at line 309 of file abseil-cpp/absl/algorithm/container.h.
Definition at line 171 of file abseil-cpp/absl/algorithm/container.h.
Definition at line 182 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_binary_search | ( | Sequence && | sequence, |
T && | value | ||
) |
Definition at line 1135 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_binary_search | ( | Sequence && | sequence, |
T && | value, | ||
LessThan && | comp | ||
) |
Definition at line 1144 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_copy | ( | const InputSequence & | input, |
OutputIterator | output | ||
) |
Definition at line 503 of file abseil-cpp/absl/algorithm/container.h.
BidirectionalIterator absl::c_copy_backward | ( | const C & | src, |
BidirectionalIterator | dest | ||
) |
Definition at line 534 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_copy_if | ( | const InputSequence & | input, |
OutputIterator | output, | ||
Pred && | pred | ||
) |
Definition at line 522 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_copy_n | ( | const C & | input, |
Size | n, | ||
OutputIterator | output | ||
) |
Definition at line 513 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerDifferenceType< const C > absl::c_count | ( | const C & | c, |
T && | value | ||
) |
Definition at line 321 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerDifferenceType< const C > absl::c_count_if | ( | const C & | c, |
Pred && | pred | ||
) |
Definition at line 333 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerDifferenceType< const C > absl::c_distance | ( | const C & | c | ) |
Definition at line 156 of file abseil-cpp/absl/algorithm/container.h.
Definition at line 402 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_equal | ( | const C1 & | c1, |
const C2 & | c2, | ||
BinaryPredicate && | pred | ||
) |
Definition at line 413 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIterPairType< Sequence, Sequence > absl::c_equal_range | ( | Sequence & | sequence, |
T && | value | ||
) |
Definition at line 1113 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIterPairType< Sequence, Sequence > absl::c_equal_range | ( | Sequence & | sequence, |
T && | value, | ||
LessThan && | comp | ||
) |
Definition at line 1123 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_fill | ( | C & | c, |
T && | value | ||
) |
Definition at line 670 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_fill_n | ( | C & | c, |
Size | n, | ||
T && | value | ||
) |
Definition at line 680 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< C > absl::c_find | ( | C & | c, |
T && | value | ||
) |
Definition at line 215 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence1 > absl::c_find_end | ( | Sequence1 & | sequence, |
Sequence2 & | subsequence | ||
) |
Definition at line 249 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence1 > absl::c_find_end | ( | Sequence1 & | sequence, |
Sequence2 & | subsequence, | ||
BinaryPredicate && | pred | ||
) |
Definition at line 260 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< C1 > absl::c_find_first_of | ( | C1 & | container, |
C2 & | options | ||
) |
Definition at line 275 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< C1 > absl::c_find_first_of | ( | C1 & | container, |
C2 & | options, | ||
BinaryPredicate && | pred | ||
) |
Definition at line 286 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< C > absl::c_find_if | ( | C & | c, |
Pred && | pred | ||
) |
Definition at line 226 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< C > absl::c_find_if_not | ( | C & | c, |
Pred && | pred | ||
) |
Definition at line 237 of file abseil-cpp/absl/algorithm/container.h.
decay_t< Function > absl::c_for_each | ( | C && | c, |
Function && | f | ||
) |
Definition at line 204 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_generate | ( | C & | c, |
Generator && | gen | ||
) |
Definition at line 690 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< C > absl::c_generate_n | ( | C & | c, |
Size | n, | ||
Generator && | gen | ||
) |
Definition at line 702 of file abseil-cpp/absl/algorithm/container.h.
Definition at line 1207 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_includes | ( | const C1 & | c1, |
const C2 & | c2, | ||
LessThan && | comp | ||
) |
Definition at line 1217 of file abseil-cpp/absl/algorithm/container.h.
decay_t< T > absl::c_inner_product | ( | const Sequence1 & | factors1, |
const Sequence2 & | factors2, | ||
T && | sum | ||
) |
Definition at line 1703 of file abseil-cpp/absl/algorithm/container.h.
decay_t< T > absl::c_inner_product | ( | const Sequence1 & | factors1, |
const Sequence2 & | factors2, | ||
T && | sum, | ||
BinaryOp1 && | op1, | ||
BinaryOp2 && | op2 | ||
) |
Definition at line 1716 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_inplace_merge | ( | C & | c, |
container_algorithm_internal::ContainerIter< C > | middle | ||
) |
Definition at line 1184 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_inplace_merge | ( | C & | c, |
container_algorithm_internal::ContainerIter< C > | middle, | ||
LessThan && | comp | ||
) |
Definition at line 1193 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_iota | ( | Sequence & | sequence, |
T && | value | ||
) |
Definition at line 1662 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_is_heap | ( | const RandomAccessContainer & | sequence | ) |
Definition at line 1473 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_is_heap | ( | const RandomAccessContainer & | sequence, |
LessThan && | comp | ||
) |
Definition at line 1481 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< RandomAccessContainer > absl::c_is_heap_until | ( | RandomAccessContainer & | sequence | ) |
Definition at line 1493 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< RandomAccessContainer > absl::c_is_heap_until | ( | RandomAccessContainer & | sequence, |
LessThan && | comp | ||
) |
Definition at line 1502 of file abseil-cpp/absl/algorithm/container.h.
Definition at line 829 of file abseil-cpp/absl/algorithm/container.h.
Definition at line 427 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_is_permutation | ( | const C1 & | c1, |
const C2 & | c2, | ||
BinaryPredicate && | pred | ||
) |
Definition at line 437 of file abseil-cpp/absl/algorithm/container.h.
Definition at line 940 of file abseil-cpp/absl/algorithm/container.h.
Definition at line 948 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< C > absl::c_is_sorted_until | ( | C & | c | ) |
Definition at line 1014 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< C > absl::c_is_sorted_until | ( | C & | c, |
LessThan && | comp | ||
) |
Definition at line 1022 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_lexicographical_compare | ( | Sequence1 && | sequence1, |
Sequence2 && | sequence2 | ||
) |
Definition at line 1591 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_lexicographical_compare | ( | Sequence1 && | sequence1, |
Sequence2 && | sequence2, | ||
LessThan && | comp | ||
) |
Definition at line 1602 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_linear_search | ( | const C & | c, |
EqualityComparable && | value | ||
) |
Definition at line 141 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence > absl::c_lower_bound | ( | Sequence & | sequence, |
T && | value | ||
) |
Definition at line 1066 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence > absl::c_lower_bound | ( | Sequence & | sequence, |
T && | value, | ||
LessThan && | comp | ||
) |
Definition at line 1076 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_make_heap | ( | RandomAccessContainer & | sequence | ) |
Definition at line 1435 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_make_heap | ( | RandomAccessContainer & | sequence, |
LessThan && | comp | ||
) |
Definition at line 1443 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence > absl::c_max_element | ( | Sequence & | sequence | ) |
Definition at line 1540 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence > absl::c_max_element | ( | Sequence & | sequence, |
LessThan && | comp | ||
) |
Definition at line 1549 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_merge | ( | const C1 & | c1, |
const C2 & | c2, | ||
OutputIterator | result | ||
) |
Definition at line 1160 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_merge | ( | const C1 & | c1, |
const C2 & | c2, | ||
OutputIterator | result, | ||
LessThan && | comp | ||
) |
Definition at line 1170 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence > absl::c_min_element | ( | Sequence & | sequence | ) |
Definition at line 1518 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence > absl::c_min_element | ( | Sequence & | sequence, |
LessThan && | comp | ||
) |
Definition at line 1527 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIterPairType< C, C > absl::c_minmax_element | ( | C & | c | ) |
Definition at line 1564 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIterPairType< C, C > absl::c_minmax_element | ( | C & | c, |
LessThan && | comp | ||
) |
Definition at line 1573 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIterPairType< C1, C2 > absl::c_mismatch | ( | C1 & | c1, |
C2 & | c2 | ||
) |
Definition at line 347 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIterPairType< C1, C2 > absl::c_mismatch | ( | C1 & | c1, |
C2 & | c2, | ||
BinaryPredicate | pred | ||
) |
Definition at line 369 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_move | ( | C && | src, |
OutputIterator | dest | ||
) |
Definition at line 545 of file abseil-cpp/absl/algorithm/container.h.
BidirectionalIterator absl::c_move_backward | ( | C && | src, |
BidirectionalIterator | dest | ||
) |
Definition at line 555 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_next_permutation | ( | C & | c | ) |
Definition at line 1618 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_next_permutation | ( | C & | c, |
LessThan && | comp | ||
) |
Definition at line 1626 of file abseil-cpp/absl/algorithm/container.h.
Definition at line 193 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_nth_element | ( | RandomAccessContainer & | sequence, |
container_algorithm_internal::ContainerIter< RandomAccessContainer > | nth | ||
) |
Definition at line 1037 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_nth_element | ( | RandomAccessContainer & | sequence, |
container_algorithm_internal::ContainerIter< RandomAccessContainer > | nth, | ||
LessThan && | comp | ||
) |
Definition at line 1047 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_partial_sort | ( | RandomAccessContainer & | sequence, |
container_algorithm_internal::ContainerIter< RandomAccessContainer > | middle | ||
) |
Definition at line 960 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_partial_sort | ( | RandomAccessContainer & | sequence, |
container_algorithm_internal::ContainerIter< RandomAccessContainer > | middle, | ||
LessThan && | comp | ||
) |
Definition at line 970 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< RandomAccessContainer > absl::c_partial_sort_copy | ( | const C & | sequence, |
RandomAccessContainer & | result | ||
) |
Definition at line 988 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< RandomAccessContainer > absl::c_partial_sort_copy | ( | const C & | sequence, |
RandomAccessContainer & | result, | ||
LessThan && | comp | ||
) |
Definition at line 999 of file abseil-cpp/absl/algorithm/container.h.
OutputIt absl::c_partial_sum | ( | const InputSequence & | input, |
OutputIt | output_first | ||
) |
Definition at line 1755 of file abseil-cpp/absl/algorithm/container.h.
OutputIt absl::c_partial_sum | ( | const InputSequence & | input, |
OutputIt | output_first, | ||
BinaryOp && | op | ||
) |
Definition at line 1764 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< C > absl::c_partition | ( | C & | c, |
Pred && | pred | ||
) |
Definition at line 842 of file abseil-cpp/absl/algorithm/container.h.
std::pair< OutputIterator1, OutputIterator2 > absl::c_partition_copy | ( | const C & | c, |
OutputIterator1 | out_true, | ||
OutputIterator2 | out_false, | ||
Pred && | pred | ||
) |
Definition at line 871 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< C > absl::c_partition_point | ( | C & | c, |
Pred && | pred | ||
) |
Definition at line 885 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_pop_heap | ( | RandomAccessContainer & | sequence | ) |
Definition at line 1416 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_pop_heap | ( | RandomAccessContainer & | sequence, |
LessThan && | comp | ||
) |
Definition at line 1424 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_prev_permutation | ( | C & | c | ) |
Definition at line 1638 of file abseil-cpp/absl/algorithm/container.h.
bool absl::c_prev_permutation | ( | C & | c, |
LessThan && | comp | ||
) |
Definition at line 1646 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_push_heap | ( | RandomAccessContainer & | sequence | ) |
Definition at line 1397 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_push_heap | ( | RandomAccessContainer & | sequence, |
LessThan && | comp | ||
) |
Definition at line 1405 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_remove_copy | ( | const C & | c, |
OutputIterator | result, | ||
T && | value | ||
) |
Definition at line 719 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_remove_copy_if | ( | const C & | c, |
OutputIterator | result, | ||
Pred && | pred | ||
) |
Definition at line 731 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_replace | ( | Sequence & | sequence, |
const T & | old_value, | ||
const T & | new_value | ||
) |
Definition at line 619 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_replace_copy | ( | const C & | c, |
OutputIterator | result, | ||
T && | old_value, | ||
T && | new_value | ||
) |
Definition at line 643 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_replace_copy_if | ( | const C & | c, |
OutputIterator | result, | ||
Pred && | pred, | ||
T && | new_value | ||
) |
Definition at line 657 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_replace_if | ( | C & | c, |
Pred && | pred, | ||
T && | new_value | ||
) |
Definition at line 631 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_reverse | ( | Sequence & | sequence | ) |
Definition at line 764 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_reverse_copy | ( | const C & | sequence, |
OutputIterator | result | ||
) |
Definition at line 774 of file abseil-cpp/absl/algorithm/container.h.
Iterator absl::c_rotate | ( | C & | sequence, |
Iterator | middle | ||
) |
Definition at line 787 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_rotate_copy | ( | const C & | sequence, |
container_algorithm_internal::ContainerIter< const C > | middle, | ||
OutputIterator | result | ||
) |
Definition at line 798 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence1 > absl::c_search | ( | Sequence1 & | sequence, |
Sequence2 & | subsequence | ||
) |
Definition at line 450 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence1 > absl::c_search | ( | Sequence1 & | sequence, |
Sequence2 & | subsequence, | ||
BinaryPredicate && | pred | ||
) |
Definition at line 461 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence > absl::c_search_n | ( | Sequence & | sequence, |
Size | count, | ||
T && | value | ||
) |
Definition at line 475 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence > absl::c_search_n | ( | Sequence & | sequence, |
Size | count, | ||
T && | value, | ||
BinaryPredicate && | pred | ||
) |
Definition at line 486 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_set_difference | ( | const C1 & | c1, |
const C2 & | c2, | ||
OutputIterator | output | ||
) |
Definition at line 1321 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_set_difference | ( | const C1 & | c1, |
const C2 & | c2, | ||
OutputIterator | output, | ||
LessThan && | comp | ||
) |
Definition at line 1338 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_set_intersection | ( | const C1 & | c1, |
const C2 & | c2, | ||
OutputIterator | output | ||
) |
Definition at line 1273 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_set_intersection | ( | const C1 & | c1, |
const C2 & | c2, | ||
OutputIterator | output, | ||
LessThan && | comp | ||
) |
Definition at line 1295 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_set_symmetric_difference | ( | const C1 & | c1, |
const C2 & | c2, | ||
OutputIterator | output | ||
) |
Definition at line 1359 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_set_symmetric_difference | ( | const C1 & | c1, |
const C2 & | c2, | ||
OutputIterator | output, | ||
LessThan && | comp | ||
) |
Definition at line 1377 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_set_union | ( | const C1 & | c1, |
const C2 & | c2, | ||
OutputIterator | output | ||
) |
Definition at line 1237 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_set_union | ( | const C1 & | c1, |
const C2 & | c2, | ||
OutputIterator | output, | ||
LessThan && | comp | ||
) |
Definition at line 1253 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_shuffle | ( | RandomAccessContainer & | c, |
UniformRandomBitGenerator && | gen | ||
) |
Definition at line 813 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_sort | ( | C & | c | ) |
Definition at line 901 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_sort | ( | C & | c, |
LessThan && | comp | ||
) |
Definition at line 909 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_sort_heap | ( | RandomAccessContainer & | sequence | ) |
Definition at line 1454 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_sort_heap | ( | RandomAccessContainer & | sequence, |
LessThan && | comp | ||
) |
Definition at line 1462 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< C > absl::c_stable_partition | ( | C & | c, |
Pred && | pred | ||
) |
Definition at line 856 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_stable_sort | ( | C & | c | ) |
Definition at line 921 of file abseil-cpp/absl/algorithm/container.h.
void absl::c_stable_sort | ( | C & | c, |
LessThan && | comp | ||
) |
Definition at line 929 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< C2 > absl::c_swap_ranges | ( | C1 & | c1, |
C2 & | c2 | ||
) |
Definition at line 566 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_transform | ( | const InputSequence & | input, |
OutputIterator | output, | ||
UnaryOp && | unary_op | ||
) |
Definition at line 586 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_transform | ( | const InputSequence1 & | input1, |
const InputSequence2 & | input2, | ||
OutputIterator | output, | ||
BinaryOp && | binary_op | ||
) |
Definition at line 598 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_unique_copy | ( | const C & | c, |
OutputIterator | result | ||
) |
Definition at line 744 of file abseil-cpp/absl/algorithm/container.h.
OutputIterator absl::c_unique_copy | ( | const C & | c, |
OutputIterator | result, | ||
BinaryPredicate && | pred | ||
) |
Definition at line 752 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence > absl::c_upper_bound | ( | Sequence & | sequence, |
T && | value | ||
) |
Definition at line 1089 of file abseil-cpp/absl/algorithm/container.h.
container_algorithm_internal::ContainerIter< Sequence > absl::c_upper_bound | ( | Sequence & | sequence, |
T && | value, | ||
LessThan && | comp | ||
) |
Definition at line 1099 of file abseil-cpp/absl/algorithm/container.h.
void absl::call_once | ( | absl::once_flag & | flag, |
Callable && | fn, | ||
Args &&... | args | ||
) |
Definition at line 206 of file abseil-cpp/absl/base/call_once.h.
|
inline |
Definition at line 887 of file third_party/abseil-cpp/absl/status/status.h.
Status absl::CancelledError | ( | absl::string_view | message | ) |
Definition at line 331 of file third_party/abseil-cpp/absl/status/status.cc.
Definition at line 515 of file abseil-cpp/absl/time/duration.cc.
std::string absl::CEscape | ( | absl::string_view | src | ) |
Definition at line 854 of file abseil-cpp/absl/strings/escaping.cc.
Definition at line 1891 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1903 of file abseil-cpp/absl/synchronization/mutex.cc.
std::string absl::CHexEscape | ( | absl::string_view | src | ) |
Definition at line 860 of file abseil-cpp/absl/strings/escaping.cc.
Definition at line 1749 of file abseil-cpp/absl/synchronization/mutex.cc.
|
inline |
Definition at line 693 of file abseil-cpp/absl/strings/string_view.h.
|
static |
Definition at line 185 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 2500 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 2518 of file abseil-cpp/absl/synchronization/mutex.cc.
|
inline |
Definition at line 46 of file abseil-cpp/absl/strings/strip.h.
|
inline |
Definition at line 62 of file abseil-cpp/absl/strings/strip.h.
TimeConversion absl::ConvertDateTime | ( | int64_t | year, |
int | mon, | ||
int | day, | ||
int | hour, | ||
int | min, | ||
int | sec, | ||
TimeZone | tz | ||
) |
Definition at line 402 of file third_party/abseil-cpp/absl/time/time.cc.
To absl::ConvertVariantTo | ( | Variant && | variant | ) |
Definition at line 858 of file abseil-cpp/absl/types/variant.h.
Definition at line 1013 of file abseil-cpp/absl/strings/cord.cc.
|
inlinestatic |
Definition at line 103 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 135 of file abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 289 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
|
inline |
Definition at line 43 of file abseil-cpp/absl/strings/cordz_test_helpers.h.
|
inlinenoexcept |
Definition at line 84 of file abseil-cpp/absl/numeric/bits.h.
|
inlinenoexcept |
Definition at line 77 of file abseil-cpp/absl/numeric/bits.h.
|
inlinenoexcept |
Definition at line 99 of file abseil-cpp/absl/numeric/bits.h.
|
inlinenoexcept |
Definition at line 92 of file abseil-cpp/absl/numeric/bits.h.
|
static |
Definition at line 540 of file abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 91 of file abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 213 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
SeedSeq absl::CreateSeedSeqFrom | ( | URBG * | urbg | ) |
Definition at line 80 of file abseil-cpp/absl/random/seed_sequences.h.
|
inline |
Definition at line 75 of file abseil-cpp/absl/strings/escaping.h.
ABSL_NAMESPACE_BEGIN bool absl::CUnescape | ( | absl::string_view | source, |
std::string * | dest, | ||
std::string * | error | ||
) |
Definition at line 849 of file abseil-cpp/absl/strings/escaping.cc.
Definition at line 1291 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1291 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Status absl::DataLossError | ( | absl::string_view | message | ) |
Definition at line 335 of file third_party/abseil-cpp/absl/status/status.cc.
Status absl::DeadlineExceededError | ( | absl::string_view | message | ) |
Definition at line 339 of file third_party/abseil-cpp/absl/status/status.cc.
|
static |
Definition at line 608 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 608 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
|
static |
Definition at line 1324 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1324 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1412 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1412 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 726 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 726 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
inlinestatic |
Definition at line 1241 of file abseil-cpp/absl/synchronization/mutex.cc.
|
inlinestatic |
Definition at line 1241 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1251 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1251 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
inlinestatic |
Definition at line 1261 of file abseil-cpp/absl/synchronization/mutex.cc.
|
inlinestatic |
Definition at line 1261 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
int absl::DefaultStackUnwinder | ( | void ** | pcs, |
int * | sizes, | ||
int | depth, | ||
int | skip, | ||
const void * | uc, | ||
int * | min_dropped_frames | ||
) |
Definition at line 118 of file abseil-cpp/absl/debugging/stacktrace.cc.
|
static |
Definition at line 360 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 360 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 145 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 1005 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 1005 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 1028 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 1028 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 2706 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 2741 of file abseil-cpp/absl/synchronization/mutex.cc.
|
inline |
Definition at line 145 of file abseil-cpp/absl/strings/str_join.h.
strings_internal::DereferenceFormatterImpl< Formatter > absl::DereferenceFormatter | ( | Formatter && | f | ) |
Definition at line 135 of file abseil-cpp/absl/strings/str_join.h.
void absl::DoIgnoreLeak | ( | const void * | ) |
Definition at line 65 of file abseil-cpp/absl/debugging/leak_check.cc.
|
static |
Definition at line 1214 of file abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 1830 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
Duration absl::DurationFromTimespec | ( | timespec | ts | ) |
Definition at line 524 of file abseil-cpp/absl/time/duration.cc.
Definition at line 532 of file abseil-cpp/absl/time/duration.cc.
void absl::EnableMutexInvariantDebugging | ( | bool | enabled | ) |
Definition at line 747 of file abseil-cpp/absl/synchronization/mutex.cc.
|
inlinenoexcept |
Definition at line 68 of file third_party/abseil-cpp/absl/strings/match.h.
|
noexcept |
Definition at line 36 of file abseil-cpp/absl/strings/match.cc.
|
static |
Definition at line 889 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 889 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 325 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 325 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
bool absl::equal | ( | InputIter1 | first1, |
InputIter1 | last1, | ||
InputIter2 | first2, | ||
InputIter2 | last2 | ||
) |
Definition at line 115 of file abseil-cpp/absl/algorithm/algorithm.h.
bool absl::equal | ( | InputIter1 | first1, |
InputIter1 | last1, | ||
InputIter2 | first2, | ||
InputIter2 | last2, | ||
Pred && | pred | ||
) |
Definition at line 104 of file abseil-cpp/absl/algorithm/algorithm.h.
|
noexcept |
Definition at line 22 of file abseil-cpp/absl/strings/match.cc.
void absl::erase_if | ( | btree_map< K, V, C, A > & | map, |
Pred | pred | ||
) |
Definition at line 447 of file bloaty/third_party/abseil-cpp/absl/container/btree_map.h.
btree_map<K, V, C, A>::size_type absl::erase_if | ( | btree_map< K, V, C, A > & | map, |
Pred | pred | ||
) |
Definition at line 483 of file abseil-cpp/absl/container/btree_map.h.
void absl::erase_if | ( | btree_multimap< K, V, C, A > & | map, |
Pred | pred | ||
) |
Definition at line 755 of file bloaty/third_party/abseil-cpp/absl/container/btree_map.h.
btree_multimap<K, V, C, A>::size_type absl::erase_if | ( | btree_multimap< K, V, C, A > & | map, |
Pred | pred | ||
) |
Definition at line 810 of file abseil-cpp/absl/container/btree_map.h.
void absl::erase_if | ( | btree_multiset< K, C, A > & | set, |
Pred | pred | ||
) |
Definition at line 670 of file bloaty/third_party/abseil-cpp/absl/container/btree_set.h.
btree_multiset<K, C, A>::size_type absl::erase_if | ( | btree_multiset< K, C, A > & | set, |
Pred | pred | ||
) |
Definition at line 725 of file abseil-cpp/absl/container/btree_set.h.
void absl::erase_if | ( | btree_set< K, C, A > & | set, |
Pred | pred | ||
) |
Definition at line 367 of file bloaty/third_party/abseil-cpp/absl/container/btree_set.h.
btree_set<K, C, A>::size_type absl::erase_if | ( | btree_set< K, C, A > & | set, |
Pred | pred | ||
) |
Definition at line 403 of file abseil-cpp/absl/container/btree_set.h.
void absl::erase_if | ( | flat_hash_map< K, V, H, E, A > & | c, |
Predicate | pred | ||
) |
Definition at line 546 of file bloaty/third_party/abseil-cpp/absl/container/flat_hash_map.h.
flat_hash_map<K, V, H, E, A>::size_type absl::erase_if | ( | flat_hash_map< K, V, H, E, A > & | c, |
Predicate | pred | ||
) |
Definition at line 552 of file abseil-cpp/absl/container/flat_hash_map.h.
void absl::erase_if | ( | flat_hash_set< T, H, E, A > & | c, |
Predicate | pred | ||
) |
Definition at line 447 of file bloaty/third_party/abseil-cpp/absl/container/flat_hash_set.h.
flat_hash_set<T, H, E, A>::size_type absl::erase_if | ( | flat_hash_set< T, H, E, A > & | c, |
Predicate | pred | ||
) |
Definition at line 452 of file abseil-cpp/absl/container/flat_hash_set.h.
void absl::erase_if | ( | node_hash_map< K, V, H, E, A > & | c, |
Predicate | pred | ||
) |
Definition at line 530 of file bloaty/third_party/abseil-cpp/absl/container/node_hash_map.h.
node_hash_map<K, V, H, E, A>::size_type absl::erase_if | ( | node_hash_map< K, V, H, E, A > & | c, |
Predicate | pred | ||
) |
Definition at line 536 of file abseil-cpp/absl/container/node_hash_map.h.
void absl::erase_if | ( | node_hash_set< T, H, E, A > & | c, |
Predicate | pred | ||
) |
Definition at line 437 of file bloaty/third_party/abseil-cpp/absl/container/node_hash_set.h.
node_hash_set<T, H, E, A>::size_type absl::erase_if | ( | node_hash_set< T, H, E, A > & | c, |
Predicate | pred | ||
) |
Definition at line 443 of file abseil-cpp/absl/container/node_hash_set.h.
Status absl::ErrnoToStatus | ( | int | error_number, |
absl::string_view | message | ||
) |
Definition at line 599 of file third_party/abseil-cpp/absl/status/status.cc.
absl::StatusCode absl::ErrnoToStatusCode | ( | int | error_number | ) |
Definition at line 451 of file third_party/abseil-cpp/absl/status/status.cc.
|
inlinestatic |
Definition at line 1774 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
inlinestatic |
Definition at line 1784 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1824 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1834 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1718 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1718 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 314 of file abseil-cpp/absl/utility/utility.h.
RealType absl::Exponential | ( | URBG && | urbg, |
RealType | lambda = 1 |
||
) |
Definition at line 300 of file abseil-cpp/absl/random/distributions.h.
|
static |
Definition at line 526 of file abseil-cpp/absl/strings/cord.cc.
|
static |
|
static |
Status absl::FailedPreconditionError | ( | absl::string_view | message | ) |
Definition at line 343 of file third_party/abseil-cpp/absl/status/status.cc.
Definition at line 484 of file abseil-cpp/absl/time/duration.cc.
Definition at line 73 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
bool absl::FindAndReportLeaks | ( | ) |
absl::CommandLineFlag * absl::FindCommandLineFlag | ( | absl::string_view | name | ) |
Definition at line 336 of file abseil-cpp/absl/flags/reflection.cc.
Definition at line 1091 of file third_party/abseil-cpp/absl/time/time.h.
|
static |
Definition at line 856 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 856 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 510 of file abseil-cpp/absl/time/duration.cc.
|
static |
Definition at line 198 of file abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 351 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 379 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 379 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
bool absl::Format | ( | FormatRawSink | raw_sink, |
const FormatSpec< Args... > & | format, | ||
const Args &... | args | ||
) |
Definition at line 504 of file abseil-cpp/absl/strings/str_format.h.
std::string absl::FormatCivilTime | ( | CivilSecond | c | ) |
Definition at line 98 of file abseil-cpp/absl/time/civil_time.cc.
std::string absl::FormatDuration | ( | Duration | d | ) |
Definition at line 768 of file abseil-cpp/absl/time/duration.cc.
str_format_internal::StreamedWrapper< T > absl::FormatStreamed | ( | const T & | v | ) |
Definition at line 123 of file abseil-cpp/absl/strings/str_format.h.
std::string absl::FormatTime | ( | absl::string_view | format, |
absl::Time | t, | ||
absl::TimeZone | tz | ||
) |
Definition at line 74 of file abseil-cpp/absl/time/format.cc.
std::string absl::FormatTime | ( | absl::Time | t | ) |
Definition at line 87 of file abseil-cpp/absl/time/format.cc.
std::string absl::FormatTime | ( | absl::Time | t, |
absl::TimeZone | tz | ||
) |
Definition at line 83 of file abseil-cpp/absl/time/format.cc.
|
inline |
Definition at line 561 of file abseil-cpp/absl/strings/str_format.h.
|
constexprnoexcept |
Definition at line 230 of file abseil-cpp/absl/utility/utility.h.
int absl::FPrintF | ( | std::FILE * | output, |
const FormatSpec< Args... > & | format, | ||
const Args &... | args | ||
) |
Definition at line 416 of file abseil-cpp/absl/strings/str_format.h.
absl::from_chars_result absl::from_chars | ( | const char * | first, |
const char * | last, | ||
double & | value, | ||
chars_format | fmt | ||
) |
Definition at line 679 of file abseil-cpp/absl/strings/charconv.cc.
absl::from_chars_result absl::from_chars | ( | const char * | first, |
const char * | last, | ||
float & | value, | ||
chars_format | fmt | ||
) |
Definition at line 684 of file abseil-cpp/absl/strings/charconv.cc.
Definition at line 1593 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1581 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1584 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1590 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1578 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1587 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 334 of file third_party/abseil-cpp/absl/time/time.cc.
|
inline |
Definition at line 1158 of file third_party/abseil-cpp/absl/time/time.h.
|
inline |
Definition at line 1225 of file third_party/abseil-cpp/absl/time/time.h.
|
constexpr |
Definition at line 1613 of file third_party/abseil-cpp/absl/time/time.h.
Time absl::FromTM | ( | const struct tm & | tm, |
absl::TimeZone | tz | ||
) |
Definition at line 434 of file third_party/abseil-cpp/absl/time/time.cc.
Time absl::FromUDate | ( | double | udate | ) |
Definition at line 235 of file third_party/abseil-cpp/absl/time/time.cc.
Definition at line 239 of file third_party/abseil-cpp/absl/time/time.cc.
Definition at line 1601 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1605 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1597 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1609 of file third_party/abseil-cpp/absl/time/time.h.
RealType absl::Gaussian | ( | URBG && | urbg, |
RealType | mean = 0 , |
||
RealType | stddev = 1 |
||
) |
Definition at line 331 of file abseil-cpp/absl/random/distributions.h.
Definition at line 60 of file abseil-cpp/absl/base/internal/endian.h.
Definition at line 47 of file abseil-cpp/absl/base/internal/endian.h.
|
inline |
Definition at line 30 of file abseil-cpp/absl/base/internal/endian.h.
ResultType absl::GenericCompare | ( | const Cord & | lhs, |
const RHS & | rhs, | ||
size_t | size_to_compare | ||
) |
Definition at line 934 of file abseil-cpp/absl/strings/cord.cc.
|
constexpr |
Definition at line 323 of file abseil-cpp/absl/types/variant.h.
|
constexpr |
Definition at line 353 of file abseil-cpp/absl/types/variant.h.
|
constexpr |
Definition at line 315 of file abseil-cpp/absl/types/variant.h.
|
constexpr |
Definition at line 345 of file abseil-cpp/absl/types/variant.h.
Definition at line 308 of file abseil-cpp/absl/types/variant.h.
|
constexpr |
Definition at line 338 of file abseil-cpp/absl/types/variant.h.
Definition at line 300 of file abseil-cpp/absl/types/variant.h.
|
constexpr |
Definition at line 330 of file abseil-cpp/absl/types/variant.h.
|
constexprnoexcept |
Definition at line 383 of file abseil-cpp/absl/types/variant.h.
|
constexprnoexcept |
Definition at line 400 of file abseil-cpp/absl/types/variant.h.
|
constexprnoexcept |
Definition at line 372 of file abseil-cpp/absl/types/variant.h.
|
constexprnoexcept |
Definition at line 393 of file abseil-cpp/absl/types/variant.h.
absl::flat_hash_map< absl::string_view, absl::CommandLineFlag * > absl::GetAllFlags | ( | ) |
Definition at line 345 of file abseil-cpp/absl/flags/reflection.cc.
|
inline |
Definition at line 36 of file abseil-cpp/absl/strings/cordz_test_helpers.h.
int64_t absl::GetCurrentTimeNanos | ( | ) |
Definition at line 78 of file abseil-cpp/absl/time/clock.cc.
ABSL_MUST_USE_RESULT T absl::GetFlag | ( | const absl::Flag< T > & | flag | ) |
Definition at line 98 of file abseil-cpp/absl/flags/flag.h.
const CommandLineFlag & absl::GetFlagReflectionHandle | ( | const absl::Flag< T > & | f | ) |
Definition at line 134 of file abseil-cpp/absl/flags/flag.h.
const CommandLineFlag & absl::GetFlagReflectionHandle | ( | const absl::Flag< U > & | f | ) |
Definition at line 1171 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1171 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1161 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1161 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
inlinestatic |
Definition at line 778 of file abseil-cpp/absl/synchronization/mutex.cc.
|
inlinestatic |
Definition at line 778 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
ABSL_NAMESPACE_BEGIN int absl::GetStackFrames | ( | void ** | result, |
int * | sizes, | ||
int | max_depth, | ||
int | skip_count | ||
) |
Definition at line 87 of file abseil-cpp/absl/debugging/stacktrace.cc.
int absl::GetStackFramesWithContext | ( | void ** | result, |
int * | sizes, | ||
int | max_depth, | ||
int | skip_count, | ||
const void * | uc, | ||
int * | min_dropped_frames | ||
) |
Definition at line 94 of file abseil-cpp/absl/debugging/stacktrace.cc.
Definition at line 101 of file abseil-cpp/absl/debugging/stacktrace.cc.
int absl::GetStackTraceWithContext | ( | void ** | result, |
int | max_depth, | ||
int | skip_count, | ||
const void * | uc, | ||
int * | min_dropped_frames | ||
) |
Definition at line 108 of file abseil-cpp/absl/debugging/stacktrace.cc.
|
static |
Definition at line 404 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 404 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
inline |
Definition at line 381 of file abseil-cpp/absl/time/civil_time.h.
|
inline |
Definition at line 433 of file abseil-cpp/absl/time/civil_time.h.
Definition at line 95 of file abseil-cpp/absl/base/internal/endian.h.
Definition at line 96 of file abseil-cpp/absl/base/internal/endian.h.
Definition at line 94 of file abseil-cpp/absl/base/internal/endian.h.
|
inlineconstexprnoexcept |
Definition at line 126 of file abseil-cpp/absl/numeric/bits.h.
size_t absl::HashOf | ( | const Types &... | values | ) |
Definition at line 264 of file abseil-cpp/absl/hash/hash.h.
ABSL_NAMESPACE_BEGIN bool absl::HaveLeakSanitizer | ( | ) |
Definition at line 63 of file abseil-cpp/absl/debugging/leak_check.cc.
std::string absl::HexStringToBytes | ( | absl::string_view | from | ) |
Definition at line 932 of file abseil-cpp/absl/strings/escaping.cc.
|
constexprnoexcept |
Definition at line 264 of file abseil-cpp/absl/types/variant.h.
Definition at line 1494 of file third_party/bloaty/third_party/abseil-cpp/absl/time/time.h.
|
constexpr |
Definition at line 427 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 471 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 285 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 92 of file abseil-cpp/absl/debugging/leak_check.h.
Definition at line 1763 of file abseil-cpp/absl/synchronization/mutex.cc.
|
constexpr |
Definition at line 93 of file abseil-cpp/absl/base/casts.h.
|
constexpr |
Definition at line 102 of file bloaty/third_party/abseil-cpp/absl/base/casts.h.
void absl::in_place_index | ( | utility_internal::InPlaceIndexTag< I > | ) |
Definition at line 211 of file abseil-cpp/absl/utility/utility.h.
void absl::in_place_type | ( | utility_internal::InPlaceTypeTag< T > | ) |
Definition at line 194 of file abseil-cpp/absl/utility/utility.h.
|
constexpr |
Definition at line 1573 of file third_party/abseil-cpp/absl/time/time.h.
|
constexpr |
Definition at line 760 of file third_party/abseil-cpp/absl/time/time.h.
|
constexpr |
Definition at line 768 of file third_party/abseil-cpp/absl/time/time.h.
ABSL_NAMESPACE_BEGIN void absl::InitializeSymbolizer | ( | const char * | argv0 | ) |
void absl::InstallFailureSignalHandler | ( | const FailureSignalHandlerOptions & | options | ) |
Definition at line 378 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 191 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 191 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
constexpr |
Definition at line 479 of file abseil-cpp/absl/numeric/int128.h.
|
constexpr |
Definition at line 484 of file abseil-cpp/absl/numeric/int128.h.
Status absl::InternalError | ( | absl::string_view | message | ) |
Definition at line 347 of file third_party/abseil-cpp/absl/status/status.cc.
Status absl::InvalidArgumentError | ( | absl::string_view | message | ) |
Definition at line 351 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsAborted | ( | const Status & | status | ) |
Definition at line 387 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsAlreadyExists | ( | const Status & | status | ) |
Definition at line 391 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsCancelled | ( | const Status & | status | ) |
Definition at line 395 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsDataLoss | ( | const Status & | status | ) |
Definition at line 399 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsDeadlineExceeded | ( | const Status & | status | ) |
Definition at line 403 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsFailedPrecondition | ( | const Status & | status | ) |
Definition at line 407 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsInternal | ( | const Status & | status | ) |
Definition at line 411 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsInvalidArgument | ( | const Status & | status | ) |
Definition at line 415 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsNotFound | ( | const Status & | status | ) |
Definition at line 419 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsOutOfRange | ( | const Status & | status | ) |
Definition at line 423 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsPermissionDenied | ( | const Status & | status | ) |
Definition at line 427 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsResourceExhausted | ( | const Status & | status | ) |
Definition at line 431 of file third_party/abseil-cpp/absl/status/status.cc.
|
inlinestatic |
Definition at line 108 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
ABSL_MUST_USE_RESULT bool absl::IsUnauthenticated | ( | const Status & | status | ) |
Definition at line 435 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsUnavailable | ( | const Status & | status | ) |
Definition at line 439 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsUnimplemented | ( | const Status & | status | ) |
Definition at line 443 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_MUST_USE_RESULT bool absl::IsUnknown | ( | const Status & | status | ) |
Definition at line 447 of file third_party/abseil-cpp/absl/status/status.cc.
|
static |
Definition at line 23 of file bloaty/third_party/abseil-cpp/absl/synchronization/blocking_counter.cc.
|
static |
Definition at line 24 of file abseil-cpp/absl/synchronization/barrier.cc.
|
static |
Definition at line 24 of file bloaty/third_party/abseil-cpp/absl/synchronization/barrier.cc.
bool absl::LeakCheckerIsActive | ( | ) |
Definition at line 64 of file abseil-cpp/absl/debugging/leak_check.cc.
|
inline |
Definition at line 80 of file abseil-cpp/absl/strings/cord_test_helpers.h.
bool absl::linear_search | ( | InputIterator | first, |
InputIterator | last, | ||
const EqualityComparable & | value | ||
) |
Definition at line 131 of file abseil-cpp/absl/algorithm/algorithm.h.
|
inline |
Definition at line 1075 of file third_party/abseil-cpp/absl/time/time.h.
|
inline |
Definition at line 1109 of file third_party/abseil-cpp/absl/time/time.h.
|
static |
Definition at line 1181 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 1181 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 1205 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 1205 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 528 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 528 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
constexpr |
Definition at line 80 of file abseil-cpp/absl/base/log_severity.h.
|
constexpr |
Definition at line 89 of file abseil-cpp/absl/base/log_severity.h.
IntType absl::LogUniform | ( | URBG && | urbg, |
IntType | lo, | ||
IntType | hi, | ||
IntType | base = 2 |
||
) |
Definition at line 374 of file abseil-cpp/absl/random/distributions.h.
Definition at line 442 of file abseil-cpp/absl/types/any.h.
any absl::make_any | ( | std::initializer_list< U > | il, |
Args &&... | args | ||
) |
Definition at line 448 of file abseil-cpp/absl/types/any.h.
|
constexpr |
Definition at line 340 of file abseil-cpp/absl/utility/utility.h.
|
constexpr |
Definition at line 577 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 582 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 572 of file abseil-cpp/absl/types/optional.h.
memory_internal::MakeUniqueResult< T >::scalar absl::make_unique | ( | Args &&... | args | ) |
Definition at line 168 of file third_party/abseil-cpp/absl/memory/memory.h.
|
delete |
memory_internal::MakeUniqueResult< T >::array absl::make_unique | ( | size_t | n | ) |
Definition at line 178 of file third_party/abseil-cpp/absl/memory/memory.h.
|
static |
Definition at line 194 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
absl::Cleanup< cleanup_internal::Tag, Callback > absl::MakeCleanup | ( | Callback | callback | ) |
Definition at line 127 of file abseil-cpp/absl/cleanup/cleanup.h.
|
constexprnoexcept |
Definition at line 717 of file abseil-cpp/absl/types/span.h.
|
constexprnoexcept |
Definition at line 722 of file abseil-cpp/absl/types/span.h.
|
noexcept |
Definition at line 712 of file abseil-cpp/absl/types/span.h.
|
constexprnoexcept |
Definition at line 707 of file abseil-cpp/absl/types/span.h.
Cord absl::MakeCordFromExternal | ( | absl::string_view | data, |
Releaser && | releaser | ||
) |
Definition at line 1087 of file abseil-cpp/absl/strings/cord.h.
Definition at line 103 of file abseil-cpp/absl/strings/cord_test_helpers.h.
|
inline |
Definition at line 115 of file abseil-cpp/absl/strings/cord_test_helpers.h.
Definition at line 1040 of file abseil-cpp/absl/numeric/int128.h.
SeedSeq absl::MakeSeedSeq | ( | ) |
Definition at line 22 of file abseil-cpp/absl/random/seed_sequences.cc.
|
constexprnoexcept |
Definition at line 672 of file abseil-cpp/absl/types/span.h.
|
noexcept |
Definition at line 666 of file abseil-cpp/absl/types/span.h.
|
constexprnoexcept |
Definition at line 661 of file abseil-cpp/absl/types/span.h.
|
constexprnoexcept |
Definition at line 678 of file abseil-cpp/absl/types/span.h.
|
constexpr |
Definition at line 542 of file abseil-cpp/absl/numeric/int128.h.
absl::MATCHER_P | ( | HasValidCordzInfoOf | , |
method | , | ||
"CordzInfo matches cord" | |||
) |
Definition at line 56 of file abseil-cpp/absl/strings/cordz_test_helpers.h.
absl::MATCHER_P2 | ( | CordzMethodCountEq | , |
method | , | ||
n | , | ||
absl::StrCat("CordzInfo method count equals ", n) | |||
) |
Definition at line 82 of file abseil-cpp/absl/strings/cordz_test_helpers.h.
|
inline |
Definition at line 294 of file abseil-cpp/absl/strings/str_split.h.
|
static |
Definition at line 182 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 182 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
Definition at line 1482 of file third_party/bloaty/third_party/abseil-cpp/absl/time/time.h.
|
constexpr |
Definition at line 411 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 445 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1485 of file third_party/bloaty/third_party/abseil-cpp/absl/time/time.h.
|
constexpr |
Definition at line 415 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 449 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1491 of file third_party/bloaty/third_party/abseil-cpp/absl/time/time.h.
|
constexpr |
Definition at line 423 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 467 of file third_party/abseil-cpp/absl/time/time.h.
|
constexprnoexcept |
Definition at line 221 of file abseil-cpp/absl/utility/utility.h.
|
static |
Definition at line 771 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 771 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 282 of file abseil-cpp/absl/strings/numbers.cc.
|
static |
Definition at line 282 of file bloaty/third_party/abseil-cpp/absl/strings/numbers.cc.
Definition at line 1479 of file third_party/bloaty/third_party/abseil-cpp/absl/time/time.h.
|
constexpr |
Definition at line 407 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 441 of file third_party/abseil-cpp/absl/time/time.h.
|
static |
Definition at line 101 of file abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 963 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 269 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 114 of file abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 238 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
Definition at line 415 of file abseil-cpp/absl/time/civil_time.h.
|
constexpr |
Definition at line 103 of file abseil-cpp/absl/base/log_severity.h.
|
constexpr |
Definition at line 108 of file abseil-cpp/absl/base/log_severity.h.
Status absl::NotFoundError | ( | absl::string_view | message | ) |
Definition at line 355 of file third_party/abseil-cpp/absl/status/status.cc.
ABSL_NAMESPACE_BEGIN absl::Time absl::Now | ( | ) |
Definition at line 39 of file abseil-cpp/absl/time/clock.cc.
|
constexpr |
Definition at line 704 of file abseil-cpp/absl/strings/string_view.h.
|
inline |
Definition at line 882 of file third_party/abseil-cpp/absl/status/status.h.
Definition at line 838 of file abseil-cpp/absl/numeric/int128.h.
|
inline |
Definition at line 1613 of file abseil-cpp/absl/strings/cord.h.
bool absl::operator!= | ( | const absl::InlinedVector< T, N, A > & | a, |
const absl::InlinedVector< T, N, A > & | b | ||
) |
Definition at line 805 of file abseil-cpp/absl/container/inlined_vector.h.
|
inline |
Definition at line 1612 of file abseil-cpp/absl/strings/cord.h.
Definition at line 1590 of file abseil-cpp/absl/strings/cord.h.
|
constexpr |
Definition at line 614 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 713 of file abseil-cpp/absl/types/optional.h.
|
constexprnoexcept |
Definition at line 657 of file abseil-cpp/absl/types/optional.h.
Definition at line 817 of file third_party/abseil-cpp/absl/status/status.h.
bool absl::operator!= | ( | const StatusOr< T > & | lhs, |
const StatusOr< T > & | rhs | ||
) |
Definition at line 635 of file abseil-cpp/absl/status/statusor.h.
bool absl::operator!= | ( | const U & | a, |
Span< T > | b | ||
) |
Definition at line 510 of file abseil-cpp/absl/types/span.h.
|
constexpr |
Definition at line 718 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 756 of file abseil-cpp/absl/types/variant.h.
|
constexpr |
Definition at line 230 of file third_party/abseil-cpp/absl/time/time.h.
|
constexpr |
|
constexprnoexcept |
Definition at line 453 of file abseil-cpp/absl/types/variant.h.
|
constexprnoexcept |
Definition at line 661 of file abseil-cpp/absl/types/optional.h.
bool absl::operator!= | ( | Span< T > | a, |
const U & | b | ||
) |
Definition at line 516 of file abseil-cpp/absl/types/span.h.
Definition at line 496 of file abseil-cpp/absl/types/span.h.
|
constexprnoexcept |
Definition at line 655 of file abseil-cpp/absl/strings/string_view.h.
|
constexpr |
Definition at line 733 of file third_party/abseil-cpp/absl/time/time.h.
|
inlineconstexpr |
Definition at line 799 of file abseil-cpp/absl/numeric/int128.h.
Definition at line 255 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 274 of file abseil-cpp/absl/numeric/int128.cc.
Definition at line 149 of file abseil-cpp/absl/numeric/int128.cc.
|
inlineconstexpr |
Definition at line 89 of file abseil-cpp/absl/strings/charconv.h.
|
inlineconstexpr |
Definition at line 304 of file third_party/abseil-cpp/absl/status/status.h.
Definition at line 866 of file abseil-cpp/absl/numeric/int128.h.
|
inline |
Definition at line 104 of file abseil-cpp/absl/strings/charconv.h.
|
inline |
Definition at line 322 of file third_party/abseil-cpp/absl/status/status.h.
Definition at line 240 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 244 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 977 of file abseil-cpp/absl/numeric/int128.h.
Definition at line 234 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 737 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 824 of file abseil-cpp/absl/numeric/int128.h.
Definition at line 736 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 942 of file abseil-cpp/absl/numeric/int128.h.
Definition at line 820 of file abseil-cpp/absl/numeric/int128.h.
Definition at line 1547 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 235 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 738 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 739 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 965 of file abseil-cpp/absl/numeric/int128.h.
Definition at line 828 of file abseil-cpp/absl/numeric/int128.h.
Definition at line 251 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 248 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 262 of file abseil-cpp/absl/numeric/int128.cc.
Definition at line 142 of file abseil-cpp/absl/numeric/int128.cc.
|
inline |
Definition at line 1617 of file abseil-cpp/absl/strings/cord.h.
bool absl::operator< | ( | const absl::InlinedVector< T, N, A > & | a, |
const absl::InlinedVector< T, N, A > & | b | ||
) |
Definition at line 815 of file abseil-cpp/absl/container/inlined_vector.h.
|
inline |
Definition at line 1614 of file abseil-cpp/absl/strings/cord.h.
Definition at line 1591 of file abseil-cpp/absl/strings/cord.h.
|
constexprnoexcept |
Definition at line 665 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 623 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 723 of file abseil-cpp/absl/types/optional.h.
bool absl::operator< | ( | const U & | a, |
Span< T > | b | ||
) |
Definition at line 536 of file abseil-cpp/absl/types/span.h.
|
constexpr |
Definition at line 728 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 765 of file abseil-cpp/absl/types/variant.h.
Definition at line 1533 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 448 of file abseil-cpp/absl/types/variant.h.
|
constexprnoexcept |
Definition at line 669 of file abseil-cpp/absl/types/optional.h.
bool absl::operator< | ( | Span< T > | a, |
const U & | b | ||
) |
Definition at line 542 of file abseil-cpp/absl/types/span.h.
Definition at line 522 of file abseil-cpp/absl/types/span.h.
|
constexprnoexcept |
Definition at line 659 of file abseil-cpp/absl/strings/string_view.h.
Definition at line 728 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 801 of file abseil-cpp/absl/numeric/int128.h.
std::basic_ostream< CharT, Traits > & absl::operator<< | ( | std::basic_ostream< CharT, Traits > & | os, |
const bernoulli_distribution & | x | ||
) |
Definition at line 108 of file abseil-cpp/absl/random/bernoulli_distribution.h.
std::basic_ostream< CharT, Traits > & absl::operator<< | ( | std::basic_ostream< CharT, Traits > & | os, |
const beta_distribution< RealType > & | x | ||
) |
Definition at line 397 of file abseil-cpp/absl/random/beta_distribution.h.
std::basic_ostream< CharT, Traits > & absl::operator<< | ( | std::basic_ostream< CharT, Traits > & | os, |
const discrete_distribution< IntType > & | x | ||
) |
Definition at line 206 of file abseil-cpp/absl/random/discrete_distribution.h.
std::basic_ostream< CharT, Traits > & absl::operator<< | ( | std::basic_ostream< CharT, Traits > & | os, |
const exponential_distribution< RealType > & | x | ||
) |
Definition at line 137 of file abseil-cpp/absl/random/exponential_distribution.h.
std::basic_ostream< CharT, Traits > & absl::operator<< | ( | std::basic_ostream< CharT, Traits > & | os, |
const gaussian_distribution< RealType > & | x | ||
) |
Definition at line 182 of file abseil-cpp/absl/random/gaussian_distribution.h.
std::basic_ostream< CharT, Traits > & absl::operator<< | ( | std::basic_ostream< CharT, Traits > & | os, |
const log_uniform_int_distribution< IntType > & | x | ||
) |
Definition at line 217 of file abseil-cpp/absl/random/log_uniform_int_distribution.h.
std::basic_ostream< CharT, Traits > & absl::operator<< | ( | std::basic_ostream< CharT, Traits > & | os, |
const poisson_distribution< IntType > & | x | ||
) |
Definition at line 235 of file abseil-cpp/absl/random/poisson_distribution.h.
std::basic_ostream< CharT, Traits > & absl::operator<< | ( | std::basic_ostream< CharT, Traits > & | os, |
const uniform_int_distribution< IntType > & | x | ||
) |
Definition at line 161 of file abseil-cpp/absl/random/uniform_int_distribution.h.
std::basic_ostream< CharT, Traits > & absl::operator<< | ( | std::basic_ostream< CharT, Traits > & | os, |
const uniform_real_distribution< RealType > & | x | ||
) |
Definition at line 175 of file abseil-cpp/absl/random/uniform_real_distribution.h.
std::basic_ostream< CharT, Traits > & absl::operator<< | ( | std::basic_ostream< CharT, Traits > & | os, |
const zipf_distribution< IntType > & | x | ||
) |
Definition at line 237 of file abseil-cpp/absl/random/zipf_distribution.h.
std::ostream & absl::operator<< | ( | std::ostream & | o, |
string_view | piece | ||
) |
Definition at line 60 of file abseil-cpp/absl/strings/string_view.cc.
std::ostream & absl::operator<< | ( | std::ostream & | os, |
absl::LogSeverity | s | ||
) |
Definition at line 24 of file abseil-cpp/absl/base/log_severity.cc.
std::ostream & absl::operator<< | ( | std::ostream & | os, |
absl::LogSeverityAtLeast | s | ||
) |
Definition at line 29 of file abseil-cpp/absl/base/log_severity.cc.
std::ostream & absl::operator<< | ( | std::ostream & | os, |
absl::LogSeverityAtMost | s | ||
) |
Definition at line 42 of file abseil-cpp/absl/base/log_severity.cc.
Definition at line 318 of file third_party/abseil-cpp/absl/status/status.cc.
|
inline |
Definition at line 567 of file third_party/abseil-cpp/absl/time/time.h.
std::ostream & absl::operator<< | ( | std::ostream & | os, |
int128 | v | ||
) |
Definition at line 287 of file abseil-cpp/absl/numeric/int128.cc.
std::ostream & absl::operator<< | ( | std::ostream & | os, |
StatusCode | code | ||
) |
Definition at line 74 of file third_party/abseil-cpp/absl/status/status.cc.
|
inline |
Definition at line 1317 of file third_party/abseil-cpp/absl/time/time.h.
std::ostream & absl::operator<< | ( | std::ostream & | os, |
uint128 | v | ||
) |
Definition at line 205 of file abseil-cpp/absl/numeric/int128.cc.
ABSL_NAMESPACE_BEGIN std::ostream & absl::operator<< | ( | std::ostream & | out, |
const Cord & | cord | ||
) |
Definition at line 1303 of file abseil-cpp/absl/strings/cord.cc.
|
inline |
Definition at line 83 of file abseil-cpp/absl/strings/cord_test_helpers.h.
Definition at line 903 of file abseil-cpp/absl/numeric/int128.h.
|
inline |
Definition at line 1623 of file abseil-cpp/absl/strings/cord.h.
bool absl::operator<= | ( | const absl::InlinedVector< T, N, A > & | a, |
const absl::InlinedVector< T, N, A > & | b | ||
) |
Definition at line 838 of file abseil-cpp/absl/container/inlined_vector.h.
|
inline |
Definition at line 1622 of file abseil-cpp/absl/strings/cord.h.
Definition at line 1593 of file abseil-cpp/absl/strings/cord.h.
|
constexpr |
Definition at line 635 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 733 of file abseil-cpp/absl/types/optional.h.
|
constexprnoexcept |
Definition at line 673 of file abseil-cpp/absl/types/optional.h.
bool absl::operator<= | ( | const U & | a, |
Span< T > | b | ||
) |
Definition at line 588 of file abseil-cpp/absl/types/span.h.
|
constexpr |
Definition at line 738 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 786 of file abseil-cpp/absl/types/variant.h.
Definition at line 228 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 450 of file abseil-cpp/absl/types/variant.h.
|
constexprnoexcept |
Definition at line 677 of file abseil-cpp/absl/types/optional.h.
bool absl::operator<= | ( | Span< T > | a, |
const U & | b | ||
) |
Definition at line 594 of file abseil-cpp/absl/types/span.h.
Definition at line 574 of file abseil-cpp/absl/types/span.h.
|
constexprnoexcept |
Definition at line 667 of file abseil-cpp/absl/strings/string_view.h.
Definition at line 731 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 814 of file abseil-cpp/absl/numeric/int128.h.
|
inline |
Definition at line 1611 of file abseil-cpp/absl/strings/cord.h.
bool absl::operator== | ( | const absl::InlinedVector< T, N, A > & | a, |
const absl::InlinedVector< T, N, A > & | b | ||
) |
Definition at line 794 of file abseil-cpp/absl/container/inlined_vector.h.
|
inline |
Definition at line 1604 of file abseil-cpp/absl/strings/cord.h.
Definition at line 1583 of file abseil-cpp/absl/strings/cord.h.
|
constexpr |
Definition at line 603 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 703 of file abseil-cpp/absl/types/optional.h.
|
constexprnoexcept |
Definition at line 649 of file abseil-cpp/absl/types/optional.h.
Definition at line 813 of file third_party/abseil-cpp/absl/status/status.h.
bool absl::operator== | ( | const StatusOr< T > & | lhs, |
const StatusOr< T > & | rhs | ||
) |
Definition at line 626 of file abseil-cpp/absl/status/statusor.h.
bool absl::operator== | ( | const U & | a, |
Span< T > | b | ||
) |
Definition at line 484 of file abseil-cpp/absl/types/span.h.
|
constexpr |
Definition at line 708 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 747 of file abseil-cpp/absl/types/variant.h.
Definition at line 1542 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 452 of file abseil-cpp/absl/types/variant.h.
|
constexprnoexcept |
Definition at line 653 of file abseil-cpp/absl/types/optional.h.
bool absl::operator== | ( | Span< T > | a, |
const U & | b | ||
) |
Definition at line 490 of file abseil-cpp/absl/types/span.h.
Definition at line 470 of file abseil-cpp/absl/types/span.h.
|
constexprnoexcept |
Definition at line 649 of file abseil-cpp/absl/strings/string_view.h.
Definition at line 732 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 789 of file abseil-cpp/absl/numeric/int128.h.
|
inline |
Definition at line 1621 of file abseil-cpp/absl/strings/cord.h.
bool absl::operator> | ( | const absl::InlinedVector< T, N, A > & | a, |
const absl::InlinedVector< T, N, A > & | b | ||
) |
Definition at line 828 of file abseil-cpp/absl/container/inlined_vector.h.
|
inline |
Definition at line 1620 of file abseil-cpp/absl/strings/cord.h.
Definition at line 1592 of file abseil-cpp/absl/strings/cord.h.
|
constexpr |
Definition at line 629 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 743 of file abseil-cpp/absl/types/optional.h.
|
constexprnoexcept |
Definition at line 681 of file abseil-cpp/absl/types/optional.h.
bool absl::operator> | ( | const U & | a, |
Span< T > | b | ||
) |
Definition at line 562 of file abseil-cpp/absl/types/span.h.
|
constexpr |
Definition at line 748 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 775 of file abseil-cpp/absl/types/variant.h.
Definition at line 226 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 449 of file abseil-cpp/absl/types/variant.h.
|
constexprnoexcept |
Definition at line 685 of file abseil-cpp/absl/types/optional.h.
bool absl::operator> | ( | Span< T > | a, |
const U & | b | ||
) |
Definition at line 568 of file abseil-cpp/absl/types/span.h.
Definition at line 548 of file abseil-cpp/absl/types/span.h.
|
constexprnoexcept |
Definition at line 663 of file abseil-cpp/absl/strings/string_view.h.
Definition at line 729 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 812 of file abseil-cpp/absl/numeric/int128.h.
|
inline |
Definition at line 1625 of file abseil-cpp/absl/strings/cord.h.
bool absl::operator>= | ( | const absl::InlinedVector< T, N, A > & | a, |
const absl::InlinedVector< T, N, A > & | b | ||
) |
Definition at line 848 of file abseil-cpp/absl/container/inlined_vector.h.
|
inline |
Definition at line 1624 of file abseil-cpp/absl/strings/cord.h.
Definition at line 1596 of file abseil-cpp/absl/strings/cord.h.
|
constexprnoexcept |
Definition at line 689 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 641 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 753 of file abseil-cpp/absl/types/optional.h.
bool absl::operator>= | ( | const U & | a, |
Span< T > | b | ||
) |
Definition at line 614 of file abseil-cpp/absl/types/span.h.
|
constexpr |
Definition at line 758 of file abseil-cpp/absl/types/optional.h.
|
constexpr |
Definition at line 798 of file abseil-cpp/absl/types/variant.h.
Definition at line 227 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 451 of file abseil-cpp/absl/types/variant.h.
|
constexprnoexcept |
Definition at line 693 of file abseil-cpp/absl/types/optional.h.
bool absl::operator>= | ( | Span< T > | a, |
const U & | b | ||
) |
Definition at line 620 of file abseil-cpp/absl/types/span.h.
Definition at line 600 of file abseil-cpp/absl/types/span.h.
|
constexprnoexcept |
Definition at line 671 of file abseil-cpp/absl/strings/string_view.h.
Definition at line 730 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 816 of file abseil-cpp/absl/numeric/int128.h.
std::basic_istream< CharT, Traits > & absl::operator>> | ( | std::basic_istream< CharT, Traits > & | is, |
bernoulli_distribution & | x | ||
) |
Definition at line 118 of file abseil-cpp/absl/random/bernoulli_distribution.h.
std::basic_istream< CharT, Traits > & absl::operator>> | ( | std::basic_istream< CharT, Traits > & | is, |
beta_distribution< RealType > & | x | ||
) |
Definition at line 407 of file abseil-cpp/absl/random/beta_distribution.h.
std::basic_istream< CharT, Traits > & absl::operator>> | ( | std::basic_istream< CharT, Traits > & | is, |
discrete_distribution< IntType > & | x | ||
) |
Definition at line 221 of file abseil-cpp/absl/random/discrete_distribution.h.
std::basic_istream< CharT, Traits > & absl::operator>> | ( | std::basic_istream< CharT, Traits > & | is, |
exponential_distribution< RealType > & | x | ||
) |
Definition at line 147 of file abseil-cpp/absl/random/exponential_distribution.h.
std::basic_istream< CharT, Traits > & absl::operator>> | ( | std::basic_istream< CharT, Traits > & | is, |
gaussian_distribution< RealType > & | x | ||
) |
Definition at line 192 of file abseil-cpp/absl/random/gaussian_distribution.h.
std::basic_istream< CharT, Traits > & absl::operator>> | ( | std::basic_istream< CharT, Traits > & | is, |
log_uniform_int_distribution< IntType > & | x | ||
) |
Definition at line 230 of file abseil-cpp/absl/random/log_uniform_int_distribution.h.
std::basic_istream< CharT, Traits > & absl::operator>> | ( | std::basic_istream< CharT, Traits > & | is, |
poisson_distribution< IntType > & | x | ||
) |
Definition at line 245 of file abseil-cpp/absl/random/poisson_distribution.h.
std::basic_istream< CharT, Traits > & absl::operator>> | ( | std::basic_istream< CharT, Traits > & | is, |
uniform_int_distribution< IntType > & | x | ||
) |
Definition at line 173 of file abseil-cpp/absl/random/uniform_int_distribution.h.
std::basic_istream< CharT, Traits > & absl::operator>> | ( | std::basic_istream< CharT, Traits > & | is, |
uniform_real_distribution< RealType > & | x | ||
) |
Definition at line 185 of file abseil-cpp/absl/random/uniform_real_distribution.h.
std::basic_istream< CharT, Traits > & absl::operator>> | ( | std::basic_istream< CharT, Traits > & | is, |
zipf_distribution< IntType > & | x | ||
) |
Definition at line 250 of file abseil-cpp/absl/random/zipf_distribution.h.
Definition at line 917 of file abseil-cpp/absl/numeric/int128.h.
|
inlineconstexpr |
Definition at line 97 of file abseil-cpp/absl/strings/charconv.h.
|
inlineconstexpr |
Definition at line 314 of file third_party/abseil-cpp/absl/status/status.h.
Definition at line 876 of file abseil-cpp/absl/numeric/int128.h.
|
inline |
Definition at line 112 of file abseil-cpp/absl/strings/charconv.h.
|
inline |
Definition at line 332 of file third_party/abseil-cpp/absl/status/status.h.
|
inlineconstexpr |
Definition at line 93 of file abseil-cpp/absl/strings/charconv.h.
|
constexpr |
Definition at line 726 of file abseil-cpp/absl/strings/str_format.h.
|
inlineconstexpr |
Definition at line 309 of file third_party/abseil-cpp/absl/status/status.h.
Definition at line 856 of file abseil-cpp/absl/numeric/int128.h.
|
inline |
Definition at line 108 of file abseil-cpp/absl/strings/charconv.h.
|
inline |
Definition at line 327 of file third_party/abseil-cpp/absl/status/status.h.
|
inlineconstexpr |
Definition at line 101 of file abseil-cpp/absl/strings/charconv.h.
|
inlineconstexpr |
Definition at line 319 of file third_party/abseil-cpp/absl/status/status.h.
Definition at line 848 of file abseil-cpp/absl/numeric/int128.h.
Status absl::OutOfRangeError | ( | absl::string_view | message | ) |
Definition at line 359 of file third_party/abseil-cpp/absl/status/status.cc.
|
inline |
Definition at line 124 of file abseil-cpp/absl/strings/str_join.h.
|
inline |
Definition at line 114 of file abseil-cpp/absl/strings/str_join.h.
bool absl::ParseCivilTime | ( | string_view | s, |
CivilSecond * | c | ||
) |
Definition at line 111 of file abseil-cpp/absl/time/civil_time.cc.
ABSL_NAMESPACE_BEGIN std::vector< char * > absl::ParseCommandLine | ( | int | argc, |
char * | argv[] | ||
) |
Definition at line 815 of file abseil-cpp/absl/flags/parse.cc.
bool absl::ParseDuration | ( | absl::string_view | dur_sv, |
Duration * | d | ||
) |
Definition at line 902 of file abseil-cpp/absl/time/duration.cc.
|
inline |
Definition at line 328 of file abseil-cpp/absl/flags/marshalling.h.
|
inline |
Definition at line 328 of file abseil-cpp/absl/flags/marshalling.h.
bool absl::ParseFlag | ( | const std::string & | text, |
absl::Time * | t, | ||
std::string * | error | ||
) |
Definition at line 151 of file abseil-cpp/absl/time/format.cc.
Definition at line 948 of file abseil-cpp/absl/time/duration.cc.
bool absl::ParseLenientCivilTime | ( | string_view | s, |
CivilSecond * | c | ||
) |
Definition at line 130 of file abseil-cpp/absl/time/civil_time.cc.
bool absl::ParseTime | ( | absl::string_view | format, |
absl::string_view | input, | ||
absl::Time * | time, | ||
std::string * | err | ||
) |
Definition at line 91 of file abseil-cpp/absl/time/format.cc.
bool absl::ParseTime | ( | absl::string_view | format, |
absl::string_view | input, | ||
absl::TimeZone | tz, | ||
absl::Time * | time, | ||
std::string * | err | ||
) |
Definition at line 98 of file abseil-cpp/absl/time/format.cc.
Status absl::PermissionDeniedError | ( | absl::string_view | message | ) |
Definition at line 363 of file third_party/abseil-cpp/absl/status/status.cc.
IntType absl::Poisson | ( | URBG && | urbg, |
double | mean = 1.0 |
||
) |
Definition at line 404 of file abseil-cpp/absl/random/distributions.h.
|
inlinenoexcept |
Definition at line 107 of file abseil-cpp/absl/numeric/bits.h.
|
static |
Definition at line 290 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 291 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 421 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 421 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 325 of file bloaty/third_party/abseil-cpp/absl/strings/numbers.cc.
Definition at line 325 of file abseil-cpp/absl/strings/numbers.cc.
|
inlinestatic |
Definition at line 265 of file abseil-cpp/absl/strings/cord.cc.
|
inlinestatic |
Definition at line 428 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
Definition at line 418 of file abseil-cpp/absl/time/civil_time.h.
int absl::PrintF | ( | const FormatSpec< Args... > & | format, |
const Args &... | args | ||
) |
Definition at line 396 of file abseil-cpp/absl/strings/str_format.h.
absl::string_view absl::ProgramUsageMessage | ( | ) |
Definition at line 56 of file abseil-cpp/absl/flags/usage.cc.
|
static |
Definition at line 66 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 67 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 99 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 100 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 165 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
|
inline |
Definition at line 201 of file third_party/abseil-cpp/absl/memory/memory.h.
Definition at line 197 of file third_party/abseil-cpp/absl/memory/memory.h.
|
static |
Definition at line 1174 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
Definition at line 121 of file abseil-cpp/absl/synchronization/mutex.cc.
void absl::RegisterLivePointers | ( | const void * | , |
size_t | |||
) |
Definition at line 66 of file abseil-cpp/absl/debugging/leak_check.cc.
void absl::RegisterMutexProfiler | ( | void(*)(int64_t wait_cycles) | fn | ) |
Definition at line 112 of file abseil-cpp/absl/synchronization/mutex.cc.
void absl::RegisterMutexProfiler | ( | void(*)(int64_t wait_timestamp) | fn | ) |
Definition at line 112 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 116 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 125 of file abseil-cpp/absl/synchronization/mutex.cc.
void absl::RemoveExtraAsciiWhitespace | ( | std::string * | str | ) |
Definition at line 170 of file abseil-cpp/absl/strings/ascii.cc.
|
static |
Definition at line 827 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 868 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
Definition at line 513 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 1258 of file abseil-cpp/absl/strings/cord.cc.
|
static |
Definition at line 1885 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
Status absl::ResourceExhaustedError | ( | absl::string_view | message | ) |
Definition at line 367 of file third_party/abseil-cpp/absl/status/status.cc.
|
static |
Definition at line 223 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
ForwardIterator absl::rotate | ( | ForwardIterator | first, |
ForwardIterator | middle, | ||
ForwardIterator | last | ||
) |
Definition at line 148 of file abseil-cpp/absl/algorithm/algorithm.h.
|
constexprnoexcept |
Definition at line 58 of file abseil-cpp/absl/numeric/bits.h.
|
constexprnoexcept |
Definition at line 65 of file abseil-cpp/absl/numeric/bits.h.
|
static |
Definition at line 55 of file abseil-cpp/absl/synchronization/notification_test.cc.
|
static |
Definition at line 55 of file bloaty/third_party/abseil-cpp/absl/synchronization/notification_test.cc.
Definition at line 1488 of file third_party/bloaty/third_party/abseil-cpp/absl/time/time.h.
|
constexpr |
Definition at line 419 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 453 of file third_party/abseil-cpp/absl/time/time.h.
|
static |
Definition at line 153 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
void absl::SetFlag | ( | absl::Flag< T > * | flag, |
const T & | v | ||
) |
Definition at line 110 of file abseil-cpp/absl/flags/flag.h.
void absl::SetFlag | ( | absl::Flag< T > * | flag, |
const V & | v | ||
) |
Definition at line 118 of file abseil-cpp/absl/flags/flag.h.
void absl::SetFlagsUsageConfig | ( | FlagsUsageConfig | usage_config | ) |
Definition at line 138 of file abseil-cpp/absl/flags/usage_config.cc.
void absl::SetMutexDeadlockDetectionMode | ( | OnDeadlockCycle | mode | ) |
Definition at line 762 of file abseil-cpp/absl/synchronization/mutex.cc.
ABSL_NAMESPACE_BEGIN void absl::SetProgramUsageMessage | ( | absl::string_view | new_usage_message | ) |
Definition at line 41 of file abseil-cpp/absl/flags/usage.cc.
void absl::SetStackUnwinder | ( | int(*)(void **pcs, int *sizes, int max_depth, int skip_count, const void *uc, int *min_dropped_frames) | unwinder | ) |
void absl::SetStackUnwinder | ( | Unwinder | w | ) |
Definition at line 114 of file abseil-cpp/absl/debugging/stacktrace.cc.
|
static |
Definition at line 132 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 133 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
Definition at line 959 of file abseil-cpp/absl/strings/cord.cc.
std::shared_ptr< T > absl::ShareUniquePtr | ( | std::unique_ptr< T, D > && | ptr | ) |
Definition at line 227 of file third_party/abseil-cpp/absl/memory/memory.h.
ABSL_MUST_USE_RESULT bool absl::SimpleAtob | ( | absl::string_view | str, |
bool * | out | ||
) |
Definition at line 108 of file abseil-cpp/absl/strings/numbers.cc.
ABSL_MUST_USE_RESULT bool absl::SimpleAtod | ( | absl::string_view | str, |
double * | out | ||
) |
Definition at line 77 of file abseil-cpp/absl/strings/numbers.cc.
ABSL_MUST_USE_RESULT bool absl::SimpleAtof | ( | absl::string_view | str, |
float * | out | ||
) |
Definition at line 46 of file abseil-cpp/absl/strings/numbers.cc.
|
inline |
Definition at line 275 of file abseil-cpp/absl/strings/numbers.h.
|
inline |
Definition at line 280 of file abseil-cpp/absl/strings/numbers.h.
ABSL_NAMESPACE_BEGIN ABSL_MUST_USE_RESULT bool absl::SimpleAtoi | ( | absl::string_view | str, |
int_type * | out | ||
) |
Definition at line 271 of file abseil-cpp/absl/strings/numbers.h.
ABSL_MUST_USE_RESULT bool absl::SimpleAtoi | ( | absl::string_view | str, |
int_type * | out | ||
) |
Definition at line 271 of file abseil-cpp/absl/strings/numbers.h.
|
inline |
Definition at line 290 of file abseil-cpp/absl/strings/numbers.h.
|
inline |
Definition at line 295 of file abseil-cpp/absl/strings/numbers.h.
ABSL_MUST_USE_RESULT bool absl::SimpleHexAtoi | ( | absl::string_view | str, |
int_type * | out | ||
) |
Definition at line 286 of file abseil-cpp/absl/strings/numbers.h.
|
inline |
Definition at line 405 of file abseil-cpp/absl/strings/str_cat.h.
|
static |
Definition at line 837 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 837 of file abseil-cpp/absl/synchronization/mutex.cc.
|
inline |
Definition at line 70 of file abseil-cpp/absl/time/clock.h.
int absl::SNPrintF | ( | char * | output, |
std::size_t | size, | ||
const FormatSpec< Args... > & | format, | ||
const Args &... | args | ||
) |
Definition at line 445 of file abseil-cpp/absl/strings/str_format.h.
Definition at line 366 of file bloaty/third_party/abseil-cpp/absl/strings/numbers.cc.
Definition at line 366 of file abseil-cpp/absl/strings/numbers.cc.
|
static |
Definition at line 1270 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 1270 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
inlinenoexcept |
Definition at line 58 of file third_party/abseil-cpp/absl/strings/match.h.
|
noexcept |
Definition at line 30 of file abseil-cpp/absl/strings/match.cc.
std::string absl::StatusCodeToString | ( | StatusCode | code | ) |
Definition at line 33 of file third_party/abseil-cpp/absl/status/status.cc.
|
inline |
Definition at line 383 of file abseil-cpp/absl/strings/str_cat.h.
Definition at line 193 of file abseil-cpp/absl/strings/str_cat.cc.
Definition at line 198 of file abseil-cpp/absl/strings/str_cat.cc.
void absl::StrAppend | ( | std::string * | dest, |
const AlphaNum & | a, | ||
const AlphaNum & | b, | ||
const AlphaNum & | c | ||
) |
Definition at line 211 of file abseil-cpp/absl/strings/str_cat.cc.
void absl::StrAppend | ( | std::string * | dest, |
const AlphaNum & | a, | ||
const AlphaNum & | b, | ||
const AlphaNum & | c, | ||
const AlphaNum & | d | ||
) |
Definition at line 227 of file abseil-cpp/absl/strings/str_cat.cc.
|
inline |
Definition at line 393 of file abseil-cpp/absl/strings/str_cat.h.
std::string & absl::StrAppendFormat | ( | std::string * | dst, |
const FormatSpec< Args... > & | format, | ||
const Args &... | args | ||
) |
Definition at line 356 of file abseil-cpp/absl/strings/str_format.h.
|
inline |
Definition at line 334 of file abseil-cpp/absl/strings/str_cat.h.
|
inline |
Definition at line 336 of file abseil-cpp/absl/strings/str_cat.h.
ABSL_MUST_USE_RESULT std::string absl::StrCat | ( | const AlphaNum & | a, |
const AlphaNum & | b | ||
) |
Definition at line 98 of file abseil-cpp/absl/strings/str_cat.cc.
ABSL_MUST_USE_RESULT std::string absl::StrCat | ( | const AlphaNum & | a, |
const AlphaNum & | b, | ||
const AlphaNum & | c | ||
) |
Definition at line 110 of file abseil-cpp/absl/strings/str_cat.cc.
ABSL_MUST_USE_RESULT std::string absl::StrCat | ( | const AlphaNum & | a, |
const AlphaNum & | b, | ||
const AlphaNum & | c, | ||
const AlphaNum & | d | ||
) |
Definition at line 123 of file abseil-cpp/absl/strings/str_cat.cc.
|
inline |
Definition at line 348 of file abseil-cpp/absl/strings/str_cat.h.
|
inlinenoexcept |
Definition at line 46 of file third_party/abseil-cpp/absl/strings/match.h.
|
inlinenoexcept |
Definition at line 51 of file third_party/abseil-cpp/absl/strings/match.h.
ABSL_MUST_USE_RESULT str_format_internal::Streamable absl::StreamFormat | ( | const FormatSpec< Args... > & | format, |
const Args &... | args | ||
) |
Definition at line 375 of file abseil-cpp/absl/strings/str_format.h.
|
inline |
Definition at line 103 of file abseil-cpp/absl/strings/str_join.h.
ABSL_MUST_USE_RESULT std::string absl::StrFormat | ( | const FormatSpec< Args... > & | format, |
const Args &... | args | ||
) |
Definition at line 338 of file abseil-cpp/absl/strings/str_format.h.
|
inline |
Definition at line 225 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 231 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 197 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 204 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 73 of file abseil-cpp/absl/strings/strip.h.
|
inline |
Definition at line 84 of file abseil-cpp/absl/strings/strip.h.
|
inline |
Definition at line 211 of file abseil-cpp/absl/strings/ascii.h.
|
inline |
Definition at line 218 of file abseil-cpp/absl/strings/ascii.h.
std::string absl::StrJoin | ( | const Range & | range, |
absl::string_view | separator | ||
) |
Definition at line 268 of file abseil-cpp/absl/strings/str_join.h.
std::string absl::StrJoin | ( | const Range & | range, |
absl::string_view | separator, | ||
Formatter && | fmt | ||
) |
Definition at line 245 of file abseil-cpp/absl/strings/str_join.h.
std::string absl::StrJoin | ( | const std::tuple< T... > & | value, |
absl::string_view | separator | ||
) |
Definition at line 279 of file abseil-cpp/absl/strings/str_join.h.
std::string absl::StrJoin | ( | const std::tuple< T... > & | value, |
absl::string_view | separator, | ||
Formatter && | fmt | ||
) |
Definition at line 257 of file abseil-cpp/absl/strings/str_join.h.
std::string absl::StrJoin | ( | Iterator | start, |
Iterator | end, | ||
absl::string_view | sep, | ||
Formatter && | fmt | ||
) |
Definition at line 239 of file abseil-cpp/absl/strings/str_join.h.
std::string absl::StrJoin | ( | Iterator | start, |
Iterator | end, | ||
absl::string_view | separator | ||
) |
Definition at line 263 of file abseil-cpp/absl/strings/str_join.h.
std::string absl::StrJoin | ( | std::initializer_list< T > | il, |
absl::string_view | separator | ||
) |
Definition at line 273 of file abseil-cpp/absl/strings/str_join.h.
std::string absl::StrJoin | ( | std::initializer_list< T > | il, |
absl::string_view | separator, | ||
Formatter && | fmt | ||
) |
Definition at line 251 of file abseil-cpp/absl/strings/str_join.h.
std::string absl::StrReplaceAll | ( | absl::string_view | s, |
const StrToStrMapping & | replacements | ||
) |
Definition at line 194 of file abseil-cpp/absl/strings/str_replace.h.
ABSL_NAMESPACE_BEGIN ABSL_MUST_USE_RESULT std::string absl::StrReplaceAll | ( | absl::string_view | s, |
std::initializer_list< std::pair< absl::string_view, absl::string_view >> | replacements | ||
) |
std::string absl::StrReplaceAll | ( | absl::string_view | s, |
strings_internal::FixedMapping | replacements | ||
) |
Definition at line 71 of file abseil-cpp/absl/strings/str_replace.cc.
int absl::StrReplaceAll | ( | const StrToStrMapping & | replacements, |
std::string * | target | ||
) |
Definition at line 204 of file abseil-cpp/absl/strings/str_replace.h.
int absl::StrReplaceAll | ( | std::initializer_list< std::pair< absl::string_view, absl::string_view >> | replacements, |
std::string * | target | ||
) |
int absl::StrReplaceAll | ( | strings_internal::FixedMapping | replacements, |
std::string * | target | ||
) |
Definition at line 76 of file abseil-cpp/absl/strings/str_replace.cc.
strings_internal::Splitter< typename strings_internal::SelectDelimiter< Delimiter >::type, AllowEmpty, absl::string_view > absl::StrSplit | ( | strings_internal::ConvertibleToStringView | text, |
Delimiter | d | ||
) |
Definition at line 499 of file abseil-cpp/absl/strings/str_split.h.
strings_internal::Splitter< typename strings_internal::SelectDelimiter< Delimiter >::type, Predicate, absl::string_view > absl::StrSplit | ( | strings_internal::ConvertibleToStringView | text, |
Delimiter | d, | ||
Predicate | p | ||
) |
Definition at line 523 of file abseil-cpp/absl/strings/str_split.h.
strings_internal::Splitter< typename strings_internal::SelectDelimiter< Delimiter >::type, AllowEmpty, std::string > absl::StrSplit | ( | StringType && | text, |
Delimiter | d | ||
) |
Definition at line 512 of file abseil-cpp/absl/strings/str_split.h.
strings_internal::Splitter< typename strings_internal::SelectDelimiter< Delimiter >::type, Predicate, std::string > absl::StrSplit | ( | StringType && | text, |
Delimiter | d, | ||
Predicate | p | ||
) |
Definition at line 537 of file abseil-cpp/absl/strings/str_split.h.
|
inline |
Definition at line 506 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 512 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 519 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 527 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 535 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 544 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 553 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 563 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 573 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 584 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 595 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 248 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 252 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 259 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 267 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 276 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 287 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 299 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 312 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 327 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 340 of file abseil-cpp/absl/strings/substitute.h.
|
inline |
Definition at line 354 of file abseil-cpp/absl/strings/substitute.h.
|
noexcept |
Definition at line 785 of file abseil-cpp/absl/container/inlined_vector.h.
|
inline |
Definition at line 829 of file third_party/abseil-cpp/absl/status/status.h.
Definition at line 438 of file abseil-cpp/absl/types/any.h.
void absl::swap | ( | btree_map< K, V, C, A > & | x, |
btree_map< K, V, C, A > & | y | ||
) |
Definition at line 474 of file abseil-cpp/absl/container/btree_map.h.
void absl::swap | ( | btree_multimap< K, V, C, A > & | x, |
btree_multimap< K, V, C, A > & | y | ||
) |
Definition at line 801 of file abseil-cpp/absl/container/btree_map.h.
void absl::swap | ( | btree_multiset< K, C, A > & | x, |
btree_multiset< K, C, A > & | y | ||
) |
Definition at line 716 of file abseil-cpp/absl/container/btree_set.h.
void absl::swap | ( | btree_set< K, C, A > & | x, |
btree_set< K, C, A > & | y | ||
) |
Definition at line 394 of file abseil-cpp/absl/container/btree_set.h.
|
noexcept |
Definition at line 552 of file abseil-cpp/absl/types/optional.h.
|
noexcept |
Definition at line 141 of file abseil-cpp/absl/types/variant.h.
|
static |
|
static |
|
static |
Definition at line 553 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 553 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 537 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 537 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 542 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 542 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
absl::TEST | ( | NotificationTest | , |
SanityTest | |||
) |
Definition at line 126 of file abseil-cpp/absl/synchronization/notification_test.cc.
Time absl::TimeFromTimespec | ( | timespec | ts | ) |
Definition at line 288 of file third_party/abseil-cpp/absl/time/time.cc.
Definition at line 292 of file third_party/abseil-cpp/absl/time/time.cc.
std::chrono::hours absl::ToChronoHours | ( | Duration | d | ) |
Definition at line 678 of file abseil-cpp/absl/time/duration.cc.
std::chrono::microseconds absl::ToChronoMicroseconds | ( | Duration | d | ) |
Definition at line 666 of file abseil-cpp/absl/time/duration.cc.
std::chrono::milliseconds absl::ToChronoMilliseconds | ( | Duration | d | ) |
Definition at line 669 of file abseil-cpp/absl/time/duration.cc.
std::chrono::minutes absl::ToChronoMinutes | ( | Duration | d | ) |
Definition at line 675 of file abseil-cpp/absl/time/duration.cc.
std::chrono::nanoseconds absl::ToChronoNanoseconds | ( | Duration | d | ) |
Definition at line 663 of file abseil-cpp/absl/time/duration.cc.
std::chrono::seconds absl::ToChronoSeconds | ( | Duration | d | ) |
Definition at line 672 of file abseil-cpp/absl/time/duration.cc.
std::chrono::system_clock::time_point absl::ToChronoTime | ( | absl::Time | t | ) |
Definition at line 339 of file third_party/abseil-cpp/absl/time/time.cc.
Definition at line 1136 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1133 of file third_party/abseil-cpp/absl/time/time.h.
|
inline |
Definition at line 1130 of file third_party/abseil-cpp/absl/time/time.h.
|
inline |
Definition at line 1139 of file third_party/abseil-cpp/absl/time/time.h.
|
inline |
Definition at line 1127 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1142 of file third_party/abseil-cpp/absl/time/time.h.
ABSL_ATTRIBUTE_PURE_FUNCTION double absl::ToDoubleHours | ( | Duration | d | ) |
Definition at line 602 of file abseil-cpp/absl/time/duration.cc.
ABSL_ATTRIBUTE_PURE_FUNCTION double absl::ToDoubleMicroseconds | ( | Duration | d | ) |
Definition at line 590 of file abseil-cpp/absl/time/duration.cc.
ABSL_ATTRIBUTE_PURE_FUNCTION double absl::ToDoubleMilliseconds | ( | Duration | d | ) |
Definition at line 593 of file abseil-cpp/absl/time/duration.cc.
ABSL_ATTRIBUTE_PURE_FUNCTION double absl::ToDoubleMinutes | ( | Duration | d | ) |
Definition at line 599 of file abseil-cpp/absl/time/duration.cc.
ABSL_ATTRIBUTE_PURE_FUNCTION double absl::ToDoubleNanoseconds | ( | Duration | d | ) |
Definition at line 587 of file abseil-cpp/absl/time/duration.cc.
ABSL_ATTRIBUTE_PURE_FUNCTION double absl::ToDoubleSeconds | ( | Duration | d | ) |
Definition at line 596 of file abseil-cpp/absl/time/duration.cc.
ABSL_ATTRIBUTE_PURE_FUNCTION int64_t absl::ToInt64Hours | ( | Duration | d | ) |
Definition at line 580 of file abseil-cpp/absl/time/duration.cc.
ABSL_ATTRIBUTE_PURE_FUNCTION int64_t absl::ToInt64Microseconds | ( | Duration | d | ) |
Definition at line 552 of file abseil-cpp/absl/time/duration.cc.
ABSL_ATTRIBUTE_PURE_FUNCTION int64_t absl::ToInt64Milliseconds | ( | Duration | d | ) |
Definition at line 560 of file abseil-cpp/absl/time/duration.cc.
ABSL_ATTRIBUTE_PURE_FUNCTION int64_t absl::ToInt64Minutes | ( | Duration | d | ) |
Definition at line 574 of file abseil-cpp/absl/time/duration.cc.
ABSL_ATTRIBUTE_PURE_FUNCTION int64_t absl::ToInt64Nanoseconds | ( | Duration | d | ) |
Definition at line 544 of file abseil-cpp/absl/time/duration.cc.
ABSL_ATTRIBUTE_PURE_FUNCTION int64_t absl::ToInt64Seconds | ( | Duration | d | ) |
Definition at line 568 of file abseil-cpp/absl/time/duration.cc.
|
inline |
Definition at line 59 of file abseil-cpp/absl/strings/cord_test_helpers.h.
timespec absl::ToTimespec | ( | Duration | d | ) |
Definition at line 606 of file abseil-cpp/absl/time/duration.cc.
timespec absl::ToTimespec | ( | Time | t | ) |
Definition at line 296 of file third_party/abseil-cpp/absl/time/time.cc.
time_t absl::ToTimeT | ( | Time | t | ) |
Definition at line 277 of file third_party/abseil-cpp/absl/time/time.cc.
Definition at line 636 of file abseil-cpp/absl/time/duration.cc.
Definition at line 316 of file third_party/abseil-cpp/absl/time/time.cc.
struct tm absl::ToTM | ( | absl::Time | t, |
absl::TimeZone | tz | ||
) |
Definition at line 449 of file third_party/abseil-cpp/absl/time/time.cc.
double absl::ToUDate | ( | Time | t | ) |
Definition at line 279 of file third_party/abseil-cpp/absl/time/time.cc.
int64_t absl::ToUniversal | ( | absl::Time | t | ) |
Definition at line 284 of file third_party/abseil-cpp/absl/time/time.cc.
Definition at line 253 of file third_party/abseil-cpp/absl/time/time.cc.
Definition at line 263 of file third_party/abseil-cpp/absl/time/time.cc.
Definition at line 243 of file third_party/abseil-cpp/absl/time/time.cc.
Definition at line 273 of file third_party/abseil-cpp/absl/time/time.cc.
Definition at line 506 of file abseil-cpp/absl/time/duration.cc.
Definition at line 1454 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 1454 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 634 of file abseil-cpp/absl/numeric/int128.h.
Definition at line 632 of file abseil-cpp/absl/numeric/int128.h.
|
constexpr |
Definition at line 248 of file abseil-cpp/absl/numeric/int128.h.
Status absl::UnauthenticatedError | ( | absl::string_view | message | ) |
Definition at line 371 of file third_party/abseil-cpp/absl/status/status.cc.
Status absl::UnavailableError | ( | absl::string_view | message | ) |
Definition at line 375 of file third_party/abseil-cpp/absl/status/status.cc.
absl::enable_if_t< std::is_same< R, void >::value, random_internal::uniform_inferred_return_t< A, B > > absl::Uniform | ( | TagType | tag, |
URBG && | urbg, | ||
A | lo, | ||
B | hi | ||
) |
Definition at line 166 of file abseil-cpp/absl/random/distributions.h.
absl::enable_if_t<!std::is_same< R, void >::value, R > absl::Uniform | ( | TagType | tag, |
URBG && | urbg, | ||
R | lo, | ||
R | hi | ||
) |
Definition at line 123 of file abseil-cpp/absl/random/distributions.h.
absl::enable_if_t<!std::is_signed< R >::value, R > absl::Uniform | ( | URBG && | urbg | ) |
Definition at line 212 of file abseil-cpp/absl/random/distributions.h.
absl::enable_if_t< std::is_same< R, void >::value, random_internal::uniform_inferred_return_t< A, B > > absl::Uniform | ( | URBG && | urbg, |
A | lo, | ||
B | hi | ||
) |
Definition at line 190 of file abseil-cpp/absl/random/distributions.h.
absl::enable_if_t<!std::is_same< R, void >::value, R > absl::Uniform | ( | URBG && | urbg, |
R | lo, | ||
R | hi | ||
) |
Definition at line 143 of file abseil-cpp/absl/random/distributions.h.
Status absl::UnimplementedError | ( | absl::string_view | message | ) |
Definition at line 379 of file third_party/abseil-cpp/absl/status/status.cc.
|
constexpr |
Definition at line 750 of file third_party/abseil-cpp/absl/time/time.h.
|
constexpr |
Definition at line 744 of file third_party/abseil-cpp/absl/time/time.h.
Status absl::UnknownError | ( | absl::string_view | message | ) |
Definition at line 383 of file third_party/abseil-cpp/absl/status/status.cc.
std::string absl::UnparseFlag | ( | absl::Time | t | ) |
Definition at line 155 of file abseil-cpp/absl/time/format.cc.
Definition at line 342 of file abseil-cpp/absl/flags/marshalling.h.
std::string absl::UnparseFlag | ( | Duration | d | ) |
Definition at line 952 of file abseil-cpp/absl/time/duration.cc.
|
static |
Definition at line 365 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 365 of file abseil-cpp/absl/synchronization/mutex.cc.
void absl::UnRegisterLivePointers | ( | const void * | , |
size_t | |||
) |
Definition at line 67 of file abseil-cpp/absl/debugging/leak_check.cc.
Cord absl::UnsampledCord | ( | Args... | args | ) |
Definition at line 141 of file abseil-cpp/absl/strings/cordz_test_helpers.h.
|
inline |
Definition at line 1099 of file third_party/abseil-cpp/absl/time/time.h.
std::string absl::Utf8SafeCEscape | ( | absl::string_view | src | ) |
Definition at line 864 of file abseil-cpp/absl/strings/escaping.cc.
std::string absl::Utf8SafeCHexEscape | ( | absl::string_view | src | ) |
Definition at line 868 of file abseil-cpp/absl/strings/escaping.cc.
Definition at line 1265 of file abseil-cpp/absl/strings/cord.cc.
Definition at line 1892 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
|
inlinestatic |
Definition at line 75 of file abseil-cpp/absl/strings/cord.cc.
|
inlinestatic |
Definition at line 128 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
ABSL_NAMESPACE_BEGIN ABSL_MUST_USE_RESULT testing::AssertionResult absl::VerifyTypeImplementsAbslHashCorrectly | ( | const Container & | values | ) |
Definition at line 345 of file abseil-cpp/absl/hash/hash_testing.h.
ABSL_MUST_USE_RESULT testing::AssertionResult absl::VerifyTypeImplementsAbslHashCorrectly | ( | const Container & | values | ) |
Definition at line 345 of file abseil-cpp/absl/hash/hash_testing.h.
ABSL_MUST_USE_RESULT testing::AssertionResult absl::VerifyTypeImplementsAbslHashCorrectly | ( | const Container & | values, |
Eq | equals | ||
) |
Definition at line 353 of file abseil-cpp/absl/hash/hash_testing.h.
ABSL_MUST_USE_RESULT testing::AssertionResult absl::VerifyTypeImplementsAbslHashCorrectly | ( | std::initializer_list< T > | values | ) |
Definition at line 360 of file abseil-cpp/absl/hash/hash_testing.h.
ABSL_MUST_USE_RESULT testing::AssertionResult absl::VerifyTypeImplementsAbslHashCorrectly | ( | std::initializer_list< T > | values, |
Eq | equals | ||
) |
Definition at line 368 of file abseil-cpp/absl/hash/hash_testing.h.
variant_internal::VisitResult< Visitor, Variants... > absl::visit | ( | Visitor && | vis, |
Variants &&... | vars | ||
) |
Definition at line 430 of file abseil-cpp/absl/types/variant.h.
Definition at line 247 of file third_party/abseil-cpp/absl/memory/memory.h.
std::string absl::WebSafeBase64Escape | ( | absl::string_view | src | ) |
Definition at line 924 of file abseil-cpp/absl/strings/escaping.cc.
void absl::WebSafeBase64Escape | ( | absl::string_view | src, |
std::string * | dest | ||
) |
Definition at line 910 of file abseil-cpp/absl/strings/escaping.cc.
bool absl::WebSafeBase64Unescape | ( | absl::string_view | src, |
std::string * | dest | ||
) |
Definition at line 900 of file abseil-cpp/absl/strings/escaping.cc.
ABSL_NAMESPACE_BEGIN std::unique_ptr< T > absl::WrapUnique | ( | T * | ptr | ) |
Definition at line 72 of file third_party/abseil-cpp/absl/memory/memory.h.
|
static |
Definition at line 279 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 280 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 253 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 254 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
Definition at line 222 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
Definition at line 223 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 260 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 261 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 218 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 218 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
constexpr |
Definition at line 308 of file third_party/abseil-cpp/absl/time/time.h.
IntType absl::Zipf | ( | URBG && | urbg, |
IntType | hi = (std::numeric_limits<IntType>::max)() , |
||
double | q = 2.0 , |
||
double | v = 1.0 |
||
) |
Definition at line 435 of file abseil-cpp/absl/random/distributions.h.
struct absl::SynchWaitParams absl::ABSL_GUARDED_BY |
const { ... } absl::event_properties[] |
const { ... } absl::event_properties[] |
|
static |
Definition at line 85 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 86 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
int absl::flags |
Definition at line 271 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 62 of file abseil-cpp/absl/debugging/failure_signal_handler.cc.
|
static |
Definition at line 63 of file bloaty/third_party/abseil-cpp/absl/debugging/failure_signal_handler.cc.
Definition at line 1759 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 2428 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 2446 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 2430 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 2448 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 2427 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 2445 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 717 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 717 of file abseil-cpp/absl/synchronization/mutex.cc.
|
staticconstexpr |
Definition at line 24 of file abseil-cpp/absl/random/seed_gen_exception.cc.
|
staticconstexpr |
Definition at line 24 of file bloaty/third_party/abseil-cpp/absl/random/seed_gen_exception.cc.
|
static |
Definition at line 712 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 712 of file abseil-cpp/absl/synchronization/mutex.cc.
|
staticconstexpr |
Definition at line 56 of file abseil-cpp/absl/container/fixed_array.h.
|
staticconstexpr |
Definition at line 56 of file bloaty/third_party/abseil-cpp/absl/container/fixed_array.h.
|
static |
Definition at line 101 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
Definition at line 629 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 629 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 632 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 632 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 669 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 669 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 645 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 645 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 670 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 670 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 644 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 644 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 666 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 666 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 628 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 628 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 643 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 643 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 630 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 630 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 631 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 631 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 641 of file abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 641 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
staticconstexpr |
Definition at line 295 of file abseil-cpp/absl/synchronization/mutex.cc.
|
staticconstexpr |
Definition at line 295 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 525 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 525 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 711 of file abseil-cpp/absl/synchronization/mutex.cc.
|
static |
Definition at line 711 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.
Definition at line 32 of file abseil-cpp/absl/numeric/int128.cc.
|
staticconstexpr |
Definition at line 85 of file bloaty/third_party/abseil-cpp/absl/strings/cord.cc.
const char* absl::msg |
Definition at line 272 of file abseil-cpp/absl/synchronization/mutex.cc.
char * absl::out |
Definition at line 1048 of file abseil-cpp/absl/synchronization/mutex.h.
char int absl::out_size |
Definition at line 1048 of file abseil-cpp/absl/synchronization/mutex.h.
Definition at line 1268 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1269 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1261 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 1262 of file third_party/abseil-cpp/absl/time/time.h.
Definition at line 36 of file abseil-cpp/absl/status/internal/status_internal.h.
ABSL_NAMESPACE_BEGIN class ABSL_MUST_USE_RESULT absl::StatusOr |
Definition at line 29 of file abseil-cpp/absl/status/internal/statusor_internal.h.
Definition at line 1750 of file bloaty/third_party/abseil-cpp/absl/synchronization/mutex.cc.