YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/util/tostring.h
Line
Count
Source (jump to first uncovered line)
1
//
2
// Copyright (c) YugaByte, Inc.
3
//
4
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
// in compliance with the License.  You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software distributed under the License
10
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11
// or implied.  See the License for the specific language governing permissions and limitations
12
// under the License.
13
//
14
//
15
16
#ifndef YB_UTIL_TOSTRING_H
17
#define YB_UTIL_TOSTRING_H
18
19
#include <float.h>
20
21
#include <chrono>
22
#include <functional>
23
#include <sstream>
24
#include <string>
25
#include <type_traits>
26
27
#include <boost/mpl/and.hpp>
28
#include <boost/preprocessor/facilities/apply.hpp>
29
#include <boost/preprocessor/seq/for_each.hpp>
30
#include <boost/preprocessor/variadic/to_seq.hpp>
31
32
#include "yb/gutil/strings/numbers.h"
33
34
#include "yb/util/type_traits.h"
35
36
// We should use separate namespace for some checkers.
37
// Because there could be cases when operator<< is available in yb namespace, but
38
// unavailable to boost::lexical_cast.
39
// For instance MonoDelta is implicitly constructible from std::chrono::duration
40
// and has operator<<.
41
// So when we are trying to convert std::chrono::duration to string, SupportsOutputToStream
42
// reports true, but boost::lexical_cast cannot output std::chrono::duration to stream.
43
// Because such operator<< could not be found using ADL.
44
namespace yb_tostring {
45
46
template <class T>
47
struct SupportsOutputToStream {
48
  typedef int Yes;
49
  typedef struct { Yes array[2]; } No;
50
  typedef typename std::remove_cv<typename std::remove_reference<T>::type>::type CleanedT;
51
52
  template <class U>
53
  static auto Test(std::ostream* out, const U* u) -> decltype(*out << *u, Yes(0)) {}
54
  static No Test(...) {}
55
56
  static constexpr bool value =
57
      sizeof(Test(nullptr, static_cast<const CleanedT*>(nullptr))) == sizeof(Yes);
58
};
59
60
HAS_FREE_FUNCTION(to_string);
61
62
} // namespace yb_tostring
63
64
// This utility actively uses SFINAE (http://en.cppreference.com/w/cpp/language/sfinae)
65
// technique to route ToString to correct implementation.
66
namespace yb {
67
68
// If class has ToString member function - use it.
69
HAS_MEMBER_FUNCTION(ToString);
70
HAS_MEMBER_FUNCTION(to_string);
71
72
template <class T>
73
typename std::enable_if<HasMemberFunction_ToString<T>::value, std::string>::type
74
28.5M
ToString(const T& value) {
75
28.5M
  return value.ToString();
76
28.5M
}
_ZN2yb8ToStringINS_10HybridTimeEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
895k
ToString(const T& value) {
75
895k
  return value.ToString();
76
895k
}
_ZN2yb8ToStringINS_9MonoDeltaEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
19.3k
ToString(const T& value) {
75
19.3k
  return value.ToString();
76
19.3k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_14UnsignedIntSetIjEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringI12GStringPieceEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
1
ToString(const T& value) {
75
1
  return value.ToString();
76
1
}
_ZN2yb8ToStringINS_6client11YBTableNameEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
1.67k
ToString(const T& value) {
75
1.67k
  return value.ToString();
76
1.67k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_13DocHybridTimeEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
_ZN2yb8ToStringINS_8HostPortEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
14.0M
ToString(const T& value) {
75
14.0M
  return value.ToString();
76
14.0M
}
_ZN2yb8ToStringINS_6StatusEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
195k
ToString(const T& value) {
75
195k
  return value.ToString();
76
195k
}
Unexecuted instantiation: ql-dml-test.cc:_ZN2yb8ToStringINS_6client12_GLOBAL__N_16RowKeyEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
_ZN2yb8ToStringINS_4OpIdEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
5.31M
ToString(const T& value) {
75
5.31M
  return value.ToString();
76
5.31M
}
Unexecuted instantiation: _ZN2yb8ToStringIN7rocksdb16LiveFileMetaDataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_8CpuTimesEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb6DocKeyEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb9SubDocKeyEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6ResultINSt3__110shared_ptrINS_6client11YBqlWriteOpEEEEEEENS2_9enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS9_
Unexecuted instantiation: _ZN2yb8ToStringINS_6client11YBqlWriteOpEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
_ZN2yb8ToStringINS_17StronglyTypedUuidINS_17TransactionId_TagEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Line
Count
Source
74
1.70M
ToString(const T& value) {
75
1.70M
  return value.ToString();
76
1.70M
}
_ZN2yb8ToStringINS_8ColumnIdEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
710k
ToString(const T& value) {
75
710k
  return value.ToString();
76
710k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb15CollectedIntentEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_5itest14TServerDetailsEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: pg_on_conflict-test.cc:_ZN2yb8ToStringINS_9pgwrapper12_GLOBAL__N_19BatchInfoEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_11redisserver10RedisReplyEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_8MonoTimeEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
format-test.cc:_ZN2yb8ToStringINS_12_GLOBAL__N_16CustomEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
3
ToString(const T& value) {
75
3
  return value.ToString();
76
3
}
_ZN2yb8ToStringINS_10MemTrackerEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
11
ToString(const T& value) {
75
11
  return value.ToString();
76
11
}
_ZN2yb8ToStringINS_5SliceEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
3.23M
ToString(const T& value) {
75
3.23M
  return value.ToString();
76
3.23M
}
_ZN2yb8ToStringINS_9util_test12ToStringableEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
4
ToString(const T& value) {
75
4
  return value.ToString();
76
4
}
_ZN2yb8ToStringINS_9util_test17ToStringableChildEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
1
ToString(const T& value) {
75
1
  return value.ToString();
76
1
}
_ZN2yb8ToStringINS_9util_test25ToStringableAndOutputableEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
1
ToString(const T& value) {
75
1
  return value.ToString();
76
1
}
_ZN2yb8ToStringINS_4UuidEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
1
ToString(const T& value) {
75
1
  return value.ToString();
76
1
}
_ZN2yb8ToStringINS_7TestObjEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
8
ToString(const T& value) {
75
8
  return value.ToString();
76
8
}
_ZN2yb8ToStringINS_4util6VarIntEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
44
ToString(const T& value) {
75
44
  return value.ToString();
76
44
}
_ZN2yb8ToStringINS_3rpc10RpcRetrierEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
55.6k
ToString(const T& value) {
75
55.6k
  return value.ToString();
76
55.6k
}
_ZN2yb8ToStringINS_26RestartSafeCoarseTimePointEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
18.0k
ToString(const T& value) {
75
18.0k
  return value.ToString();
76
18.0k
}
_ZN2yb8ToStringINS_9consensus14ConsensusRoundEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
4
ToString(const T& value) {
75
4
  return value.ToString();
76
4
}
Unexecuted instantiation: retryable_requests.cc:_ZN2yb8ToStringINS_9consensus12_GLOBAL__N_123RunningRetryableRequestEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: retryable_requests.cc:_ZN2yb8ToStringINS_9consensus12_GLOBAL__N_131ReplicatedRetryableRequestRangeEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_17StronglyTypedUuidINS_12ClientId_TagEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
_ZN2yb8ToStringINS_6master12TSDescriptorEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
49.6k
ToString(const T& value) {
75
49.6k
  return value.ToString();
76
49.6k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_13BlockingQueueIPNS_3log13LogEntryBatchENS_18DefaultLogicalSizeEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeERKS9_
_ZN2yb8ToStringINS_6master10TabletInfoEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
212k
ToString(const T& value) {
75
212k
  return value.ToString();
76
212k
}
_ZN2yb8ToStringINS_6master9TableInfoEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
25.8k
ToString(const T& value) {
75
25.8k
  return value.ToString();
76
25.8k
}
_ZN2yb8ToStringINS_12ColumnSchemaEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
173
ToString(const T& value) {
75
173
  return value.ToString();
76
173
}
_ZN2yb8ToStringINS_6master13TabletReplicaEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
323k
ToString(const T& value) {
75
323k
  return value.ToString();
76
323k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6server13MonitoredTaskEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_6ResultImEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
1
ToString(const T& value) {
75
1
  return value.ToString();
76
1
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6master23TabletSnapshotOperationEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_17StronglyTypedUuidINS_17TxnSnapshotId_TagEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_6master25SnapshotScheduleOperationEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6ResultINS_6master13SysRowEntriesEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb14PrimitiveValueEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_17StronglyTypedUuidINS_28TxnSnapshotRestorationId_TagEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_6master16StateWithTablets10TabletDataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
_ZN2yb8ToStringINS_6SchemaEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
2.59k
ToString(const T& value) {
75
2.59k
  return value.ToString();
76
2.59k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_9TimestampEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
_ZN2yb8ToStringINS_6QLTypeEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
1
ToString(const T& value) {
75
1
  return value.ToString();
76
1
}
_ZN2yb8ToStringIN7rocksdb12FileMetaDataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
5
ToString(const T& value) {
75
5
  return value.ToString();
76
5
}
_ZN2yb8ToStringIN7rocksdb6DBImpl14CompactionTaskEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Line
Count
Source
74
96
ToString(const T& value) {
75
96
  return value.ToString();
76
96
}
_ZN2yb8ToStringIN7rocksdb12UserFrontierEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
2.82k
ToString(const T& value) {
75
2.82k
  return value.ToString();
76
2.82k
}
_ZN2yb8ToStringIN7rocksdb18FileBoundaryValuesINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEEENS3_9enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueES9_E4typeERKSC_
Line
Count
Source
74
190
ToString(const T& value) {
75
190
  return value.ToString();
76
190
}
_ZN2yb8ToStringIN7rocksdb18FileBoundaryValuesINS1_11InternalKeyEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Line
Count
Source
74
410
ToString(const T& value) {
75
410
  return value.ToString();
76
410
}
Unexecuted instantiation: _ZN2yb8ToStringIN7rocksdb14FileDescriptorEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_14ReadHybridTimeEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
42
ToString(const T& value) {
75
42
  return value.ToString();
76
42
}
Unexecuted instantiation: _ZN2yb8ToStringINS_13StatusRequestEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Unexecuted instantiation: _ZN2yb8ToStringINS_19TransactionMetadataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet22TransactionalBatchDataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_12OneWayBitmapEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Unexecuted instantiation: _ZN2yb8ToStringINS_6ResultINS_23TransactionStatusResultEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_23TransactionStatusResultEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
_ZN2yb8ToStringINS_9IndexInfoEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
235
ToString(const T& value) {
75
235
  return value.ToString();
76
235
}
_ZN2yb8ToStringINS_6tablet20FixedHybridTimeLeaseEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
5
ToString(const T& value) {
75
5
  return value.ToString();
76
5
}
_ZN2yb8ToStringINS_6tablet15TabletBootstrap5StatsEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Line
Count
Source
74
6.05k
ToString(const T& value) {
75
6.05k
  return value.ToString();
76
6.05k
}
Unexecuted instantiation: tablet_bootstrap.cc:_ZN2yb8ToStringINS_6tablet12_GLOBAL__N_114ReplayDecisionEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet5EntryEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
transaction_coordinator.cc:_ZN2yb8ToStringINS_6tablet12_GLOBAL__N_116TransactionState19InvolvedTabletStateEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Line
Count
Source
74
737k
ToString(const T& value) {
75
737k
  return value.ToString();
76
737k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet18UpdateTxnOperationEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
transaction_coordinator.cc:_ZN2yb8ToStringINS_6tablet12_GLOBAL__N_116TransactionStateEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Line
Count
Source
74
716k
ToString(const T& value) {
75
716k
  return value.ToString();
76
716k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet22TransactionCoordinator14ReplicatedDataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet22TransactionCoordinator11AbortedDataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: transaction_coordinator.cc:_ZN2yb8ToStringINS_6tablet12_GLOBAL__N_121ExpectedTabletBatchesEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb21ApplyTransactionStateEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet18RunningTransactionEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_6tablet20TransactionApplyDataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
4
ToString(const T& value) {
75
4
  return value.ToString();
76
4
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet22TransactionParticipant4Impl16RemoveQueueEntryEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
_ZN2yb8ToStringINS_6tablet9OperationEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
2.59k
ToString(const T& value) {
75
2.59k
  return value.ToString();
76
2.59k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet15OperationDriverEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet18SafeTimeWithSourceEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet11MvccManager9QueueItemEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet9TableInfoEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_10PgObjectIdEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
1.41k
ToString(const T& value) {
75
1.41k
  return value.ToString();
76
1.41k
}
_ZN2yb8ToStringINS_6ResultINS_10HybridTimeEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Line
Count
Source
74
1
ToString(const T& value) {
75
1
  return value.ToString();
76
1
}
_ZN2yb8ToStringINS_6tablet14SplitOperationEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
2
ToString(const T& value) {
75
2
  return value.ToString();
76
2
}
Unexecuted instantiation: _ZN2yb8ToStringINS_9consensus18StateChangeContextEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_6ResultIbEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
33
ToString(const T& value) {
75
33
  return value.ToString();
76
33
}
_ZN2yb8ToStringINS_2ql10CQLMessage5ValueEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Line
Count
Source
74
220
ToString(const T& value) {
75
220
  return value.ToString();
76
220
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6client9YBRedisOpEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: redis_service.cc:_ZN2yb8ToStringINS_11redisserver12_GLOBAL__N_19OperationEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: redis_service.cc:_ZN2yb8ToStringINS_11redisserver12_GLOBAL__N_15BlockEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: redis_service.cc:_ZN2yb8ToStringINS_11redisserver12_GLOBAL__N_19BlockDataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: redis_service.cc:_ZN2yb8ToStringINS_11redisserver12_GLOBAL__N_116TabletOperationsEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
_ZN2yb8ToStringINS_6client11YBOperationEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
5
ToString(const T& value) {
75
5
  return value.ToString();
76
5
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6ResultI13scoped_refptrINS_6client8internal12RemoteTabletEEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS8_12basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEE4typeERKSA_
_ZN2yb8ToStringINS_6client8internal12RemoteTabletEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Line
Count
Source
74
8.20k
ToString(const T& value) {
75
8.20k
  return value.ToString();
76
8.20k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6client8internal8AsyncRpcEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_6client8internal10InFlightOpEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
_ZN2yb8ToStringINS_6client8internal19ClientMasterRpcBaseEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Line
Count
Source
74
13.9k
ToString(const T& value) {
75
13.9k
  return value.ToString();
76
13.9k
}
_ZN2yb8ToStringINS_9PartitionEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
8.20k
ToString(const T& value) {
75
8.20k
  return value.ToString();
76
8.20k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6client8internal9LookupRpcEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_6client8internal14LookupByKeyRpcEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_6client8internal10LookupDataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_6client10YBqlReadOpEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_5QLRowEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
_ZN2yb8ToStringINS_6client8internal18RemoteTabletServerEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Line
Count
Source
74
181k
ToString(const T& value) {
75
181k
  return value.ToString();
76
181k
}
_ZN2yb8ToStringINS_6client8internal13TabletInvoker12FollowerDataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Line
Count
Source
74
1.49k
ToString(const T& value) {
75
1.49k
  return value.ToString();
76
1.49k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6client8internal16InFlightOpsGroupEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_6client13YBTransactionEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6client13YBTransaction4Impl11TabletStateEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
_ZN2yb8ToStringINS_13QLTableColumnEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
1
ToString(const T& value) {
75
1
  return value.ToString();
76
1
}
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb9KeyBoundsEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: conflict_resolution.cc:_ZN2yb8ToStringINS_5docdb12_GLOBAL__N_123TransactionConflictInfoEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINS_10ByteBufferILm64EEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: conflict_resolution.cc:_ZN2yb8ToStringINS_5docdb12_GLOBAL__N_110IntentDataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
_ZN2yb8ToStringINS_6ResultINS_17StronglyTypedUuidINS_17TransactionId_TagEEEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeERKS8_
Line
Count
Source
74
20
ToString(const T& value) {
75
20
  return value.ToString();
76
20
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6ResultIRKNS_12ColumnSchemaEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeERKS8_
Unexecuted instantiation: _ZN2yb8ToStringINS_10QLTableRowEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
_ZN2yb8ToStringINS_5docdb14LockBatchEntryEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
95
ToString(const T& value) {
75
95
  return value.ToString();
76
95
}
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb12DocOperationEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb13SliceKeyBoundEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb8KeyBytesEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb7DocPathEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb14ExpirationTimeEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb16LockedBatchEntryEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_13ResourceLimitEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
priority_thread_pool.cc:_ZN2yb8ToStringINS_12_GLOBAL__N_124PriorityThreadPoolWorkerEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
770
ToString(const T& value) {
75
770
  return value.ToString();
76
770
}
priority_thread_pool.cc:_ZN2yb8ToStringINS_12_GLOBAL__N_130PriorityThreadPoolInternalTaskEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
6
ToString(const T& value) {
75
6
  return value.ToString();
76
6
}
Unexecuted instantiation: _ZN2yb8ToStringINS_22PriorityThreadPoolTaskEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
_ZN2yb8ToStringINS_3rpc12OutboundDataEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
8
ToString(const T& value) {
75
8
  return value.ToString();
76
8
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6ResultINS_3rpc18ProcessCallsResultEEEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Unexecuted instantiation: _ZN2yb8ToStringINS_3rpc18ProcessCallsResultEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_3rpc11InboundCallEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
27
ToString(const T& value) {
75
27
  return value.ToString();
76
27
}
Unexecuted instantiation: _ZN2yb8ToStringINS_3rpc11DelayedTaskEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_3rpc12RemoteMethodEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
243
ToString(const T& value) {
75
243
  return value.ToString();
76
243
}
_ZN2yb8ToStringINS_3rpc12ConnectionIdEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
33
ToString(const T& value) {
75
33
  return value.ToString();
76
33
}
Unexecuted instantiation: _ZN2yb8ToStringINS_3rpc12OutboundCallEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_3rpc8ProtocolEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
9.34k
ToString(const T& value) {
75
9.34k
  return value.ToString();
76
9.34k
}
_ZN2yb8ToStringINS_3rpc11ReactorTaskEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
2
ToString(const T& value) {
75
2
  return value.ToString();
76
2
}
_ZN2yb8ToStringINS_3rpc10ConnectionEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
21
ToString(const T& value) {
75
21
  return value.ToString();
76
21
}
_ZN2yb8ToStringINS_14SourceLocationEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
74
2
ToString(const T& value) {
75
2
  return value.ToString();
76
2
}
_ZN2yb8ToStringINS_3rpc13StreamRefinerEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
189
ToString(const T& value) {
75
189
  return value.ToString();
76
189
}
_ZN2yb8ToStringINS_3rpc6StreamEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
189
ToString(const T& value) {
75
189
  return value.ToString();
76
189
}
_ZN2yb8ToStringINS_3rpc10RpcCommandEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
6.49k
ToString(const T& value) {
75
6.49k
  return value.ToString();
76
6.49k
}
_ZN2yb8ToStringINS_3rpc13YBInboundCallEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
1
ToString(const T& value) {
75
1
  return value.ToString();
76
1
}
_ZN2yb8ToStringINS_5tools17YsckTabletReplicaEEENSt3__19enable_ifIXsr26HasMemberFunction_ToStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
74
8
ToString(const T& value) {
75
8
  return value.ToString();
76
8
}
77
78
template <class T>
79
typename std::enable_if<HasMemberFunction_to_string<T>::value, std::string>::type
80
60.9k
ToString(const T& value) {
81
60.9k
  return value.to_string();
82
60.9k
}
_ZN2yb8ToStringIN5boost4asio2ip7addressEEENSt3__19enable_ifIXsr27HasMemberFunction_to_stringIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Line
Count
Source
80
60.9k
ToString(const T& value) {
81
60.9k
  return value.to_string();
82
60.9k
}
Unexecuted instantiation: _ZN2yb8ToStringIN5boost6system10error_codeEEENSt3__19enable_ifIXsr27HasMemberFunction_to_stringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringIN5boost4asio2ip10address_v4EEENSt3__19enable_ifIXsr27HasMemberFunction_to_stringIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Unexecuted instantiation: _ZN2yb8ToStringIN5boost4asio2ip10address_v6EEENSt3__19enable_ifIXsr27HasMemberFunction_to_stringIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
83
84
// If class has ShortDebugString member function - use it. For protobuf classes mostly.
85
HAS_MEMBER_FUNCTION(ShortDebugString);
86
87
template <class T>
88
typename std::enable_if<HasMemberFunction_ShortDebugString<T>::value, std::string>::type
89
4.12M
ToString(const T& value) {
90
4.12M
  return value.ShortDebugString();
91
4.12M
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6master22SnapshotScheduleInfoPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_6OpIdPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
89
334
ToString(const T& value) {
90
334
  return value.ShortDebugString();
91
334
}
Unexecuted instantiation: _ZN2yb8ToStringINS_19RedisWriteRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
_ZN2yb8ToStringINS_11IndexInfoPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
89
5.10k
ToString(const T& value) {
90
5.10k
  return value.ShortDebugString();
91
5.10k
}
_ZN2yb8ToStringINS_7tserver21SplitTabletResponsePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
1
ToString(const T& value) {
90
1
  return value.ShortDebugString();
91
1
}
_ZN2yb8ToStringINS_11PartitionPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
89
92
ToString(const T& value) {
90
92
  return value.ShortDebugString();
91
92
}
_ZN2yb8ToStringINS_8rpc_test23LightweightSubMessagePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
44
ToString(const T& value) {
90
44
  return value.ShortDebugString();
91
44
}
_ZN2yb8ToStringINS_8rpc_test22LWLightweightRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
2
ToString(const T& value) {
90
2
  return value.ShortDebugString();
91
2
}
Unexecuted instantiation: _ZN2yb8ToStringINS_9consensus12ReplicateMsgEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6master17TabletLocationsPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_6tablet14SnapshotFilePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
60
ToString(const T& value) {
90
60
  return value.ShortDebugString();
91
60
}
_ZN2yb8ToStringINS_9util_test20WithShortDebugStringEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
1
ToString(const T& value) {
90
1
  return value.ShortDebugString();
91
1
}
_ZN2yb8ToStringINS_9util_test25WithShortDebugStringChildEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
1
ToString(const T& value) {
90
1
  return value.ShortDebugString();
91
1
}
Unexecuted instantiation: _ZN2yb8ToStringINS_7tserver14WriteRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_3cdc19GetChangesRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_10HostPortPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
89
227k
ToString(const T& value) {
90
227k
  return value.ShortDebugString();
91
227k
}
_ZN2yb8ToStringINS_9consensus17ConsensusStatusPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
68.4k
ToString(const T& value) {
90
68.4k
  return value.ShortDebugString();
91
68.4k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_9consensus27UnsafeChangeConfigRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_9consensus12RaftConfigPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
139
ToString(const T& value) {
90
139
  return value.ShortDebugString();
91
139
}
Unexecuted instantiation: _ZN2yb8ToStringINS_9consensus18ConsensusRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_9consensus16ConsensusStatePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
3.52M
ToString(const T& value) {
90
3.52M
  return value.ShortDebugString();
91
3.52M
}
_ZN2yb8ToStringINS_14NodeInstancePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
89
45
ToString(const T& value) {
90
45
  return value.ShortDebugString();
91
45
}
Unexecuted instantiation: _ZN2yb8ToStringINS_9consensus24LeaderStepDownResponsePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_6master16TSRegistrationPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
49.7k
ToString(const T& value) {
90
49.7k
  return value.ShortDebugString();
91
49.7k
}
_ZN2yb8ToStringINS_7tserver19TabletServerErrorPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
5.79k
ToString(const T& value) {
90
5.79k
  return value.ShortDebugString();
91
5.79k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6master13BackfillJobPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_7tserver23BackfillIndexResponsePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
7
ToString(const T& value) {
90
7
  return value.ShortDebugString();
91
7
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6master17TableIdentifierPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_6master24GetTableSchemaResponsePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
1
ToString(const T& value) {
90
1
  return value.ShortDebugString();
91
1
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6master15PlacementInfoPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_6master16SysUDTypeEntryPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
138
ToString(const T& value) {
90
138
  return value.ShortDebugString();
91
138
}
_ZN2yb8ToStringINS_11CloudInfoPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
89
181k
ToString(const T& value) {
90
181k
  return value.ShortDebugString();
91
181k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6master24SnapshotScheduleFilterPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6master13SysRowEntriesEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6master25SnapshotScheduleOptionsPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6master23CreateSnapshotRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6master19SysNamespaceEntryPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_19PgsqlWriteRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Unexecuted instantiation: _ZN2yb8ToStringINS_6master21NamespaceIdentifierPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6master14SnapshotInfoPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringIN7rocksdb16BoundaryValuesPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_8rpc_test21LightweightResponsePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
2
ToString(const T& value) {
90
2
  return value.ShortDebugString();
91
2
}
_ZN2yb8ToStringINS_8rpc_test23LWLightweightResponsePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
2
ToString(const T& value) {
90
2
  return value.ShortDebugString();
91
2
}
_ZN2yb8ToStringINS_9QLValuePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
89
1
ToString(const T& value) {
90
1
  return value.ShortDebugString();
91
1
}
Unexecuted instantiation: _ZN2yb8ToStringINS_19PgsqlBackfillSpecPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Unexecuted instantiation: _ZN2yb8ToStringINS_12QLResponsePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Unexecuted instantiation: _ZN2yb8ToStringINS_16QLWriteRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Unexecuted instantiation: _ZN2yb8ToStringINS_15QLReadRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Unexecuted instantiation: _ZN2yb8ToStringINS_3log10LogEntryPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_6tablet18TransactionStatePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
1
ToString(const T& value) {
90
1
  return value.ShortDebugString();
91
1
}
_ZN2yb8ToStringINS_6tablet23ChangeMetadataRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
2.59k
ToString(const T& value) {
90
2.59k
  return value.ShortDebugString();
91
2.59k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet7WritePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_6master13MasterErrorPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
695
ToString(const T& value) {
90
695
  return value.ShortDebugString();
91
695
}
_ZN2yb8ToStringINS_6tablet6FilePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
4.38k
ToString(const T& value) {
90
4.38k
  return value.ShortDebugString();
91
4.38k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_7tserver8DataIdPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_7tserver21CreateTabletRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
1
ToString(const T& value) {
90
1
  return value.ShortDebugString();
91
1
}
Unexecuted instantiation: _ZN2yb8ToStringINS_7tserver25AddTableToTabletRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6master30GetLoadBalancerStateResponsePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6master21SplitTabletResponsePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_6master21DeleteTableResponsePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_15QLPagingStatePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
_ZN2yb8ToStringINS_7tserver26UpdateTransactionRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
55.0k
ToString(const T& value) {
90
55.0k
  return value.ShortDebugString();
91
55.0k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_7tserver29GetTransactionStatusRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_7tserver42GetTransactionStatusAtParticipantRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINS_7tserver25AbortTransactionRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
89
12
ToString(const T& value) {
90
12
  return value.ShortDebugString();
91
12
}
Unexecuted instantiation: _ZN2yb8ToStringINS_14QLExpressionPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
_ZN2yb8ToStringINS_15QLColumnValuePBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Line
Count
Source
89
1
ToString(const T& value) {
90
1
  return value.ShortDebugString();
91
1
}
Unexecuted instantiation: _ZN2yb8ToStringINS_5docdb14KeyValuePairPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINS_18PgsqlReadRequestPBEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
Unexecuted instantiation: _ZN2yb8ToStringINS_12RefCntPrefixEEENSt3__19enable_ifIXsr34HasMemberFunction_ShortDebugStringIT_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
92
93
// Various variants of integer types.
94
template <class Int>
95
typename std::enable_if<(sizeof(Int) > 4) && std::is_signed<Int>::value, char*>::type
96
16.6M
IntToBuffer(Int value, char* buffer) {
97
16.6M
  return FastInt64ToBufferLeft(value, buffer);
98
16.6M
}
_ZN2yb11IntToBufferIxEENSt3__19enable_ifIXaagtstT_Li4Esr3std9is_signedIS3_EE5valueEPcE4typeES3_S4_
Line
Count
Source
96
16.5M
IntToBuffer(Int value, char* buffer) {
97
16.5M
  return FastInt64ToBufferLeft(value, buffer);
98
16.5M
}
_ZN2yb11IntToBufferIlEENSt3__19enable_ifIXaagtstT_Li4Esr3std9is_signedIS3_EE5valueEPcE4typeES3_S4_
Line
Count
Source
96
137k
IntToBuffer(Int value, char* buffer) {
97
137k
  return FastInt64ToBufferLeft(value, buffer);
98
137k
}
99
100
template <class Int>
101
typename std::enable_if<(sizeof(Int) > 4) && !std::is_signed<Int>::value, char*>::type
102
59.7M
IntToBuffer(Int value, char* buffer) {
103
59.7M
  return FastUInt64ToBufferLeft(value, buffer);
104
59.7M
}
_ZN2yb11IntToBufferIyEENSt3__19enable_ifIXaagtstT_Li4Entsr3std9is_signedIS3_EE5valueEPcE4typeES3_S4_
Line
Count
Source
102
20.5M
IntToBuffer(Int value, char* buffer) {
103
20.5M
  return FastUInt64ToBufferLeft(value, buffer);
104
20.5M
}
_ZN2yb11IntToBufferImEENSt3__19enable_ifIXaagtstT_Li4Entsr3std9is_signedIS3_EE5valueEPcE4typeES3_S4_
Line
Count
Source
102
39.2M
IntToBuffer(Int value, char* buffer) {
103
39.2M
  return FastUInt64ToBufferLeft(value, buffer);
104
39.2M
}
105
106
template <class Int>
107
typename std::enable_if<(sizeof(Int) <= 4) && std::is_signed<Int>::value, char*>::type
108
107M
IntToBuffer(Int value, char* buffer) {
109
107M
  return FastInt32ToBufferLeft(value, buffer);
110
107M
}
_ZN2yb11IntToBufferIiEENSt3__19enable_ifIXaalestT_Li4Esr3std9is_signedIS3_EE5valueEPcE4typeES3_S4_
Line
Count
Source
108
107M
IntToBuffer(Int value, char* buffer) {
109
107M
  return FastInt32ToBufferLeft(value, buffer);
110
107M
}
_ZN2yb11IntToBufferIaEENSt3__19enable_ifIXaalestT_Li4Esr3std9is_signedIS3_EE5valueEPcE4typeES3_S4_
Line
Count
Source
108
12
IntToBuffer(Int value, char* buffer) {
109
12
  return FastInt32ToBufferLeft(value, buffer);
110
12
}
_ZN2yb11IntToBufferIsEENSt3__19enable_ifIXaalestT_Li4Esr3std9is_signedIS3_EE5valueEPcE4typeES3_S4_
Line
Count
Source
108
12
IntToBuffer(Int value, char* buffer) {
109
12
  return FastInt32ToBufferLeft(value, buffer);
110
12
}
Unexecuted instantiation: _ZN2yb11IntToBufferIcEENSt3__19enable_ifIXaalestT_Li4Esr3std9is_signedIS3_EE5valueEPcE4typeES3_S4_
111
112
template <class Int>
113
typename std::enable_if<(sizeof(Int) <= 4) && !std::is_signed<Int>::value, char*>::type
114
12.4M
IntToBuffer(Int value, char* buffer) {
115
12.4M
  return FastUInt32ToBufferLeft(value, buffer);
116
12.4M
}
_ZN2yb11IntToBufferIjEENSt3__19enable_ifIXaalestT_Li4Entsr3std9is_signedIS3_EE5valueEPcE4typeES3_S4_
Line
Count
Source
114
7.31M
IntToBuffer(Int value, char* buffer) {
115
7.31M
  return FastUInt32ToBufferLeft(value, buffer);
116
7.31M
}
_ZN2yb11IntToBufferItEENSt3__19enable_ifIXaalestT_Li4Entsr3std9is_signedIS3_EE5valueEPcE4typeES3_S4_
Line
Count
Source
114
14.9k
IntToBuffer(Int value, char* buffer) {
115
14.9k
  return FastUInt32ToBufferLeft(value, buffer);
116
14.9k
}
_ZN2yb11IntToBufferIbEENSt3__19enable_ifIXaalestT_Li4Entsr3std9is_signedIS3_EE5valueEPcE4typeES3_S4_
Line
Count
Source
114
5.08M
IntToBuffer(Int value, char* buffer) {
115
5.08M
  return FastUInt32ToBufferLeft(value, buffer);
116
5.08M
}
_ZN2yb11IntToBufferIhEENSt3__19enable_ifIXaalestT_Li4Entsr3std9is_signedIS3_EE5valueEPcE4typeES3_S4_
Line
Count
Source
114
26.6k
IntToBuffer(Int value, char* buffer) {
115
26.6k
  return FastUInt32ToBufferLeft(value, buffer);
116
26.6k
}
117
118
template <class Int>
119
typename std::enable_if<std::is_integral<typename std::remove_reference<Int>::type>::value,
120
78.9M
                        std::string>::type ToString(Int&& value) {
121
78.9M
  char buffer[kFastToBufferSize];
122
78.9M
  auto end = IntToBuffer(value, buffer);
123
78.9M
  return std::string(buffer, end);
124
78.9M
}
_ZN2yb8ToStringIRiEENSt3__19enable_ifIXsr3std11is_integralINS2_16remove_referenceIT_E4typeEEE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeEOS5_
Line
Count
Source
120
1.73M
                        std::string>::type ToString(Int&& value) {
121
1.73M
  char buffer[kFastToBufferSize];
122
1.73M
  auto end = IntToBuffer(value, buffer);
123
1.73M
  return std::string(buffer, end);
124
1.73M
}
_ZN2yb8ToStringIyEENSt3__19enable_ifIXsr3std11is_integralINS1_16remove_referenceIT_E4typeEEE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS4_
Line
Count
Source
120
1.49k
                        std::string>::type ToString(Int&& value) {
121
1.49k
  char buffer[kFastToBufferSize];
122
1.49k
  auto end = IntToBuffer(value, buffer);
123
1.49k
  return std::string(buffer, end);
124
1.49k
}
_ZN2yb8ToStringIRmEENSt3__19enable_ifIXsr3std11is_integralINS2_16remove_referenceIT_E4typeEEE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeEOS5_
Line
Count
Source
120
2.26M
                        std::string>::type ToString(Int&& value) {
121
2.26M
  char buffer[kFastToBufferSize];
122
2.26M
  auto end = IntToBuffer(value, buffer);
123
2.26M
  return std::string(buffer, end);
124
2.26M
}
_ZN2yb8ToStringIRyEENSt3__19enable_ifIXsr3std11is_integralINS2_16remove_referenceIT_E4typeEEE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeEOS5_
Line
Count
Source
120
300k
                        std::string>::type ToString(Int&& value) {
121
300k
  char buffer[kFastToBufferSize];
122
300k
  auto end = IntToBuffer(value, buffer);
123
300k
  return std::string(buffer, end);
124
300k
}
_ZN2yb8ToStringIxEENSt3__19enable_ifIXsr3std11is_integralINS1_16remove_referenceIT_E4typeEEE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS4_
Line
Count
Source
120
1
                        std::string>::type ToString(Int&& value) {
121
1
  char buffer[kFastToBufferSize];
122
1
  auto end = IntToBuffer(value, buffer);
123
1
  return std::string(buffer, end);
124
1
}
_ZN2yb8ToStringIiEENSt3__19enable_ifIXsr3std11is_integralINS1_16remove_referenceIT_E4typeEEE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS4_
Line
Count
Source
120
4.24M
                        std::string>::type ToString(Int&& value) {
121
4.24M
  char buffer[kFastToBufferSize];
122
4.24M
  auto end = IntToBuffer(value, buffer);
123
4.24M
  return std::string(buffer, end);
124
4.24M
}
_ZN2yb8ToStringImEENSt3__19enable_ifIXsr3std11is_integralINS1_16remove_referenceIT_E4typeEEE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS4_
Line
Count
Source
120
3.31M
                        std::string>::type ToString(Int&& value) {
121
3.31M
  char buffer[kFastToBufferSize];
122
3.31M
  auto end = IntToBuffer(value, buffer);
123
3.31M
  return std::string(buffer, end);
124
3.31M
}
_ZN2yb8ToStringItEENSt3__19enable_ifIXsr3std11is_integralINS1_16remove_referenceIT_E4typeEEE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS4_
Line
Count
Source
120
10.7k
                        std::string>::type ToString(Int&& value) {
121
10.7k
  char buffer[kFastToBufferSize];
122
10.7k
  auto end = IntToBuffer(value, buffer);
123
10.7k
  return std::string(buffer, end);
124
10.7k
}
_ZN2yb8ToStringIRKmEENSt3__19enable_ifIXsr3std11is_integralINS3_16remove_referenceIT_E4typeEEE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS6_
Line
Count
Source
120
18.1M
                        std::string>::type ToString(Int&& value) {
121
18.1M
  char buffer[kFastToBufferSize];
122
18.1M
  auto end = IntToBuffer(value, buffer);
123
18.1M
  return std::string(buffer, end);
124
18.1M
}
_ZN2yb8ToStringIRKiEENSt3__19enable_ifIXsr3std11is_integralINS3_16remove_referenceIT_E4typeEEE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS6_
Line
Count
Source
120
22.0M
                        std::string>::type ToString(Int&& value) {
121
22.0M
  char buffer[kFastToBufferSize];
122
22.0M
  auto end = IntToBuffer(value, buffer);
123
22.0M
  return std::string(buffer, end);
124
22.0M
}
_ZN2yb8ToStringIRKxEENSt3__19enable_ifIXsr3std11is_integralINS3_16remove_referenceIT_E4typeEEE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS6_
Line
Count
Source
120
6.23k
                        std::string>::type ToString(Int&& value) {
121
6.23k
  char buffer[kFastToBufferSize];
122
6.23k
  auto end = IntToBuffer(value, buffer);
123
6.23k
  return std::string(buffer, end);
124
6.23k
}
_ZN2yb8ToStringIRxEENSt3__19enable_ifIXsr3std11is_integralINS2_16remove_referenceIT_E4typeEEE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeEOS5_
Line
Count
Source
120
387k
                        std::string>::type ToString(Int&& value) {
121
387k
  char buffer[kFastToBufferSize];
122
387k
  auto end = IntToBuffer(value, buffer);
123
387k
  return std::string(buffer, end);
124
387k
}
_ZN2yb8ToStringIRbEENSt3__19enable_ifIXsr3std11is_integralINS2_16remove_referenceIT_E4typeEEE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeEOS5_
Line
Count
Source
120
10
                        std::string>::type ToString(Int&& value) {
121
10
  char buffer[kFastToBufferSize];
122
10
  auto end = IntToBuffer(value, buffer);
123
10
  return std::string(buffer, end);
124
10
}
_ZN2yb8ToStringIRjEENSt3__19enable_ifIXsr3std11is_integralINS2_16remove_referenceIT_E4typeEEE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeEOS5_
Line
Count
Source
120
215
                        std::string>::type ToString(Int&& value) {
121
215
  char buffer[kFastToBufferSize];
122
215
  auto end = IntToBuffer(value, buffer);
123
215
  return std::string(buffer, end);
124
215
}
_ZN2yb8ToStringIRKyEENSt3__19enable_ifIXsr3std11is_integralINS3_16remove_referenceIT_E4typeEEE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS6_
Line
Count
Source
120
19.4M
                        std::string>::type ToString(Int&& value) {
121
19.4M
  char buffer[kFastToBufferSize];
122
19.4M
  auto end = IntToBuffer(value, buffer);
123
19.4M
  return std::string(buffer, end);
124
19.4M
}
_ZN2yb8ToStringIRKjEENSt3__19enable_ifIXsr3std11is_integralINS3_16remove_referenceIT_E4typeEEE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS6_
Line
Count
Source
120
7.03M
                        std::string>::type ToString(Int&& value) {
121
7.03M
  char buffer[kFastToBufferSize];
122
7.03M
  auto end = IntToBuffer(value, buffer);
123
7.03M
  return std::string(buffer, end);
124
7.03M
}
_ZN2yb8ToStringIjEENSt3__19enable_ifIXsr3std11is_integralINS1_16remove_referenceIT_E4typeEEE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS4_
Line
Count
Source
120
3.12k
                        std::string>::type ToString(Int&& value) {
121
3.12k
  char buffer[kFastToBufferSize];
122
3.12k
  auto end = IntToBuffer(value, buffer);
123
3.12k
  return std::string(buffer, end);
124
3.12k
}
Unexecuted instantiation: _ZN2yb8ToStringIRKtEENSt3__19enable_ifIXsr3std11is_integralINS3_16remove_referenceIT_E4typeEEE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS6_
_ZN2yb8ToStringIRKhEENSt3__19enable_ifIXsr3std11is_integralINS3_16remove_referenceIT_E4typeEEE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS6_
Line
Count
Source
120
48
                        std::string>::type ToString(Int&& value) {
121
48
  char buffer[kFastToBufferSize];
122
48
  auto end = IntToBuffer(value, buffer);
123
48
  return std::string(buffer, end);
124
48
}
_ZN2yb8ToStringIRsEENSt3__19enable_ifIXsr3std11is_integralINS2_16remove_referenceIT_E4typeEEE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeEOS5_
Line
Count
Source
120
3
                        std::string>::type ToString(Int&& value) {
121
3
  char buffer[kFastToBufferSize];
122
3
  auto end = IntToBuffer(value, buffer);
123
3
  return std::string(buffer, end);
124
3
}
_ZN2yb8ToStringIRlEENSt3__19enable_ifIXsr3std11is_integralINS2_16remove_referenceIT_E4typeEEE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeEOS5_
Line
Count
Source
120
3
                        std::string>::type ToString(Int&& value) {
121
3
  char buffer[kFastToBufferSize];
122
3
  auto end = IntToBuffer(value, buffer);
123
3
  return std::string(buffer, end);
124
3
}
_ZN2yb8ToStringIRaEENSt3__19enable_ifIXsr3std11is_integralINS2_16remove_referenceIT_E4typeEEE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeEOS5_
Line
Count
Source
120
3
                        std::string>::type ToString(Int&& value) {
121
3
  char buffer[kFastToBufferSize];
122
3
  auto end = IntToBuffer(value, buffer);
123
3
  return std::string(buffer, end);
124
3
}
_ZN2yb8ToStringIRKbEENSt3__19enable_ifIXsr3std11is_integralINS3_16remove_referenceIT_E4typeEEE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS6_
Line
Count
Source
120
11.4k
                        std::string>::type ToString(Int&& value) {
121
11.4k
  char buffer[kFastToBufferSize];
122
11.4k
  auto end = IntToBuffer(value, buffer);
123
11.4k
  return std::string(buffer, end);
124
11.4k
}
Unexecuted instantiation: _ZN2yb8ToStringIbEENSt3__19enable_ifIXsr3std11is_integralINS1_16remove_referenceIT_E4typeEEE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS4_
125
126
template <class Float>
127
typename std::enable_if<std::is_floating_point<typename std::remove_reference<Float>::type>::value,
128
1.01M
                        std::string>::type ToString(Float&& value) {
129
1.01M
  char buffer[DBL_DIG + 10];
130
1.01M
  snprintf(buffer, sizeof (buffer), "%.*g", DBL_DIG, value);
131
1.01M
  return buffer;
132
1.01M
}
_ZN2yb8ToStringIRKdEENSt3__19enable_ifIXsr3std17is_floating_pointINS3_16remove_referenceIT_E4typeEEE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS6_
Line
Count
Source
128
1.01M
                        std::string>::type ToString(Float&& value) {
129
1.01M
  char buffer[DBL_DIG + 10];
130
1.01M
  snprintf(buffer, sizeof (buffer), "%.*g", DBL_DIG, value);
131
1.01M
  return buffer;
132
1.01M
}
_ZN2yb8ToStringIdEENSt3__19enable_ifIXsr3std17is_floating_pointINS1_16remove_referenceIT_E4typeEEE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS4_
Line
Count
Source
128
1.50k
                        std::string>::type ToString(Float&& value) {
129
1.50k
  char buffer[DBL_DIG + 10];
130
1.50k
  snprintf(buffer, sizeof (buffer), "%.*g", DBL_DIG, value);
131
1.50k
  return buffer;
132
1.50k
}
_ZN2yb8ToStringIfEENSt3__19enable_ifIXsr3std17is_floating_pointINS1_16remove_referenceIT_E4typeEEE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS4_
Line
Count
Source
128
1
                        std::string>::type ToString(Float&& value) {
129
1
  char buffer[DBL_DIG + 10];
130
1
  snprintf(buffer, sizeof (buffer), "%.*g", DBL_DIG, value);
131
1
  return buffer;
132
1
}
133
134
template <class Pointer>
135
class PointerToString {
136
 public:
137
  template<class P>
138
  static std::string Apply(P&& ptr);
139
};
140
141
template <>
142
class PointerToString<const void*> {
143
 public:
144
216k
  static std::string Apply(const void* ptr) {
145
216k
    if (ptr) {
146
216k
      char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x
147
216k
      buffer[0] = '0';
148
216k
      buffer[1] = 'x';
149
216k
      FastHex64ToBuffer(reinterpret_cast<size_t>(ptr), buffer + 2);
150
216k
      return buffer;
151
18.4E
    } else {
152
18.4E
      return "<NULL>";
153
18.4E
    }
154
216k
  }
155
};
156
157
template <>
158
class PointerToString<void*> {
159
 public:
160
0
  static std::string Apply(const void* ptr) {
161
0
    return PointerToString<const void*>::Apply(ptr);
162
0
  }
163
};
164
165
template <class Pointer>
166
typename std::enable_if<IsPointerLike<Pointer>::value, std::string>::type
167
1.63M
    ToString(Pointer&& value) {
168
1.63M
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
1.63M
  return PointerToString<CleanedT>::Apply(value);
170
1.63M
}
Unexecuted instantiation: _ZN2yb8ToStringIRKPNS_10HybridTimeEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS7_
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110shared_ptrINS_3rpc12OutboundDataEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110shared_ptrINS_6client11YBqlWriteOpEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110unique_ptrINS_5itest14TServerDetailsENS1_14default_deleteIS4_EEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOSB_
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110shared_ptrINS_9consensus12ReplicateMsgEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110shared_ptrINS_10MemTrackerEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS8_
_ZN2yb8ToStringIRKPNSt3__16vectorIiNS1_9allocatorIiEEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEE4typeEOSA_
Line
Count
Source
167
1
    ToString(Pointer&& value) {
168
1
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
1
  return PointerToString<CleanedT>::Apply(value);
170
1
}
_ZN2yb8ToStringIRKPNSt3__15dequeIiNS1_9allocatorIiEEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEE4typeEOSA_
Line
Count
Source
167
1
    ToString(Pointer&& value) {
168
1
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
1
  return PointerToString<CleanedT>::Apply(value);
170
1
}
_ZN2yb8ToStringIRKPNSt3__14listIiNS1_9allocatorIiEEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEE4typeEOSA_
Line
Count
Source
167
1
    ToString(Pointer&& value) {
168
1
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
1
  return PointerToString<CleanedT>::Apply(value);
170
1
}
_ZN2yb8ToStringIRKPiEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS6_
Line
Count
Source
167
2
    ToString(Pointer&& value) {
168
2
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
2
  return PointerToString<CleanedT>::Apply(value);
170
2
}
_ZN2yb8ToStringIRKNSt3__110unique_ptrIiNS1_14default_deleteIiEEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
1
    ToString(Pointer&& value) {
168
1
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
1
  return PointerToString<CleanedT>::Apply(value);
170
1
}
_ZN2yb8ToStringIRKNSt3__110shared_ptrIiEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS7_
Line
Count
Source
167
1
    ToString(Pointer&& value) {
168
1
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
1
  return PointerToString<CleanedT>::Apply(value);
170
1
}
_ZN2yb8ToStringIRK13scoped_refptrINS_9util_test12ToStringableEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
3
    ToString(Pointer&& value) {
168
3
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
3
  return PointerToString<CleanedT>::Apply(value);
170
3
}
_ZN2yb8ToStringIRK13scoped_refptrINS_9util_test17ToStringableChildEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
1
    ToString(Pointer&& value) {
168
1
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
1
  return PointerToString<CleanedT>::Apply(value);
170
1
}
_ZN2yb8ToStringIR13scoped_refptrINS_9util_test12ToStringableEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
167
1
    ToString(Pointer&& value) {
168
1
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
1
  return PointerToString<CleanedT>::Apply(value);
170
1
}
_ZN2yb8ToStringIRKNS_16TrackedSharedPtrINS_7TestObjEEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
167
3
    ToString(Pointer&& value) {
168
3
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
3
  return PointerToString<CleanedT>::Apply(value);
170
3
}
_ZN2yb8ToStringIRPNS_7TestObjEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS6_
Line
Count
Source
167
5
    ToString(Pointer&& value) {
168
5
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
5
  return PointerToString<CleanedT>::Apply(value);
170
5
}
Unexecuted instantiation: _ZN2yb8ToStringIRK13scoped_refptrINS_9consensus14ConsensusRoundEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
_ZN2yb8ToStringIRKNSt3__110shared_ptrINS_6master12TSDescriptorEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
11.3k
    ToString(Pointer&& value) {
168
11.3k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
11.3k
  return PointerToString<CleanedT>::Apply(value);
170
11.3k
}
_ZN2yb8ToStringIRKPKvEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS7_
Line
Count
Source
167
216k
    ToString(Pointer&& value) {
168
216k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
216k
  return PointerToString<CleanedT>::Apply(value);
170
216k
}
_ZN2yb8ToStringIRK13scoped_refptrINS_6master10TabletInfoEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
212k
    ToString(Pointer&& value) {
168
212k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
212k
  return PointerToString<CleanedT>::Apply(value);
170
212k
}
_ZN2yb8ToStringIRK13scoped_refptrINS_6master9TableInfoEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
452
    ToString(Pointer&& value) {
168
452
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
452
  return PointerToString<CleanedT>::Apply(value);
170
452
}
_ZN2yb8ToStringIR13scoped_refptrINS_6master10TabletInfoEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
167
1
    ToString(Pointer&& value) {
168
1
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
1
  return PointerToString<CleanedT>::Apply(value);
170
1
}
_ZN2yb8ToStringIR13scoped_refptrINS_6master9TableInfoEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
167
25.3k
    ToString(Pointer&& value) {
168
25.3k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
25.3k
  return PointerToString<CleanedT>::Apply(value);
170
25.3k
}
Unexecuted instantiation: _ZN2yb8ToStringIRPNS_6master10TabletInfoEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS7_
Unexecuted instantiation: _ZN2yb8ToStringIRPNS_9consensus16ConsensusStatePBEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS7_
_ZN2yb8ToStringIRPNS_6master12TSDescriptorEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS7_
Line
Count
Source
167
67.0k
    ToString(Pointer&& value) {
168
67.0k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
67.0k
  return PointerToString<CleanedT>::Apply(value);
170
67.0k
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110shared_ptrINS_6server13MonitoredTaskEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKPKNS_6master23CreateSnapshotRequestPBEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRPKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueES7_E4typeEOSC_
_ZN2yb8ToStringIRKPN7rocksdb12FileMetaDataEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
167
5
    ToString(Pointer&& value) {
168
5
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
5
  return PointerToString<CleanedT>::Apply(value);
170
5
}
_ZN2yb8ToStringIRKPN7rocksdb6DBImpl14CompactionTaskEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
96
    ToString(Pointer&& value) {
168
96
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
96
  return PointerToString<CleanedT>::Apply(value);
170
96
}
Unexecuted instantiation: _ZN2yb8ToStringIRPN7rocksdb6DBImpl14CompactionTaskEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
_ZN2yb8ToStringIRKNS_9clone_ptrIN7rocksdb12UserFrontierEEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
600
    ToString(Pointer&& value) {
168
600
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
600
  return PointerToString<CleanedT>::Apply(value);
170
600
}
_ZN2yb8ToStringIRNS_9clone_ptrIN7rocksdb12UserFrontierEEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
167
342k
    ToString(Pointer&& value) {
168
342k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
342k
  return PointerToString<CleanedT>::Apply(value);
170
342k
}
Unexecuted instantiation: _ZN2yb8ToStringIRPN7rocksdb12UserFrontierEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS7_
Unexecuted instantiation: _ZN2yb8ToStringIRKN5boost8optionalIRKNS_9QLValuePBEEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS9_12basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEE4typeEOSB_
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110unique_ptrINS_3log10LogEntryPBENS1_14default_deleteIS4_EEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOSB_
_ZN2yb8ToStringIRKPNS_6tablet18UpdateTxnOperationEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
167
716k
    ToString(Pointer&& value) {
168
716k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
716k
  return PointerToString<CleanedT>::Apply(value);
170
716k
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110unique_ptrINS_6tablet18UpdateTxnOperationENS1_14default_deleteIS4_EEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOSB_
Unexecuted instantiation: _ZN2yb8ToStringIRPNS_6tablet18UpdateTxnOperationEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS7_
_ZN2yb8ToStringIRKPKNS_5docdb21ApplyTransactionStateEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
4
    ToString(Pointer&& value) {
168
4
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
4
  return PointerToString<CleanedT>::Apply(value);
170
4
}
_ZN2yb8ToStringIRKPKNS_6tablet9OperationEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
2.59k
    ToString(Pointer&& value) {
168
2.59k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
2.59k
  return PointerToString<CleanedT>::Apply(value);
170
2.59k
}
_ZN2yb8ToStringIRKPKNS_9consensus14ConsensusRoundEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
4
    ToString(Pointer&& value) {
168
4
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
4
  return PointerToString<CleanedT>::Apply(value);
170
4
}
_ZN2yb8ToStringIRKPKNS_6SchemaEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
167
2.59k
    ToString(Pointer&& value) {
168
2.59k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
2.59k
  return PointerToString<CleanedT>::Apply(value);
170
2.59k
}
_ZN2yb8ToStringIRKPKNS_6tablet23ChangeMetadataRequestPBEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
2.59k
    ToString(Pointer&& value) {
168
2.59k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
2.59k
  return PointerToString<CleanedT>::Apply(value);
170
2.59k
}
Unexecuted instantiation: _ZN2yb8ToStringIPNS_6tablet15OperationDriverEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS6_
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110shared_ptrINS_6tablet9TableInfoEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRNSt3__110shared_ptrINS_6tablet9TableInfoEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKPNS_6tablet15OperationDriverEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRPKNS_7tserver14WriteRequestPBEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIPNS_12QLResponsePBEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS5_
Unexecuted instantiation: _ZN2yb8ToStringIRNSt3__110shared_ptrINS_6client11YBqlWriteOpEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRNSt3__110shared_ptrIKNS1_6vectorINS3_INS_8HostPortENS1_9allocatorIS4_EEEENS5_IS7_EEEEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeEOSE_
_ZN2yb8ToStringIRKNSt3__110shared_ptrIKNS1_6vectorINS3_INS_8HostPortENS1_9allocatorIS4_EEEENS5_IS7_EEEEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeEOSF_
Line
Count
Source
167
1.98k
    ToString(Pointer&& value) {
168
1.98k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
1.98k
  return PointerToString<CleanedT>::Apply(value);
170
1.98k
}
_ZN2yb8ToStringINSt3__110shared_ptrIKNS1_6vectorINS3_INS_8HostPortENS1_9allocatorIS4_EEEENS5_IS7_EEEEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeEOSD_
Line
Count
Source
167
135
    ToString(Pointer&& value) {
168
135
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
135
  return PointerToString<CleanedT>::Apply(value);
170
135
}
_ZN2yb8ToStringIRNSt3__110shared_ptrINS1_6vectorINS3_INS_8HostPortENS1_9allocatorIS4_EEEENS5_IS7_EEEEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeEOSD_
Line
Count
Source
167
135
    ToString(Pointer&& value) {
168
135
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
135
  return PointerToString<CleanedT>::Apply(value);
170
135
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110shared_ptrINS_8IndexMapEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRNSt3__110shared_ptrINS_9consensus18StateChangeContextEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110shared_ptrINS_6client9YBRedisOpEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: redis_service.cc:_ZN2yb8ToStringIRKPNS_11redisserver12_GLOBAL__N_19OperationEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: redis_service.cc:_ZN2yb8ToStringIRKNSt3__110shared_ptrINS_11redisserver12_GLOBAL__N_15BlockEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOSA_
_ZN2yb8ToStringIRKNSt3__110shared_ptrINS_6client11YBOperationEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
5
    ToString(Pointer&& value) {
168
5
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
5
  return PointerToString<CleanedT>::Apply(value);
170
5
}
_ZN2yb8ToStringIRK13scoped_refptrINS_6client8internal12RemoteTabletEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS8_12basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEE4typeEOSA_
Line
Count
Source
167
8.20k
    ToString(Pointer&& value) {
168
8.20k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
8.20k
  return PointerToString<CleanedT>::Apply(value);
170
8.20k
}
_ZN2yb8ToStringIPKNS_6client8internal19ClientMasterRpcBaseEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
167
13.8k
    ToString(Pointer&& value) {
168
13.8k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
13.8k
  return PointerToString<CleanedT>::Apply(value);
170
13.8k
}
Unexecuted instantiation: _ZN2yb8ToStringIRPNS_6client8internal9LookupRpcEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRNSt3__110shared_ptrINS_6client8internal14LookupByKeyRpcEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIR13scoped_refptrINS_6client8internal12RemoteTabletEEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKPNS_6client8internal10LookupDataEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110shared_ptrIKNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueES8_E4typeEOSE_
Unexecuted instantiation: _ZN2yb8ToStringIRPKNS_15QLPagingStatePBEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS7_
Unexecuted instantiation: _ZN2yb8ToStringIRPNS_6client8internal18RemoteTabletServerEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
_ZN2yb8ToStringIRKPNS_6client8internal18RemoteTabletServerEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
2.08k
    ToString(Pointer&& value) {
168
2.08k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
2.08k
  return PointerToString<CleanedT>::Apply(value);
170
2.08k
}
Unexecuted instantiation: _ZN2yb8ToStringIRPKNS_7tserver19TabletServerErrorPBEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRNSt3__110shared_ptrINS_6client13YBTransactionEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRPKNS_5docdb9KeyBoundsEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110unique_ptrINS_5docdb12DocOperationENS1_14default_deleteIS4_EEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOSB_
Unexecuted instantiation: _ZN2yb8ToStringIRKPKNS_5docdb13SliceKeyBoundEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRPNS_13DocHybridTimeEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS6_
Unexecuted instantiation: _ZN2yb8ToStringIRPNS_5SliceEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS6_
Unexecuted instantiation: _ZN2yb8ToStringIRKPNS_5docdb16LockedBatchEntryEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
priority_thread_pool.cc:_ZN2yb8ToStringIRKPNS_12_GLOBAL__N_124PriorityThreadPoolWorkerEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
167
905
    ToString(Pointer&& value) {
168
905
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
905
  return PointerToString<CleanedT>::Apply(value);
170
905
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110unique_ptrINS_22PriorityThreadPoolTaskENS1_14default_deleteIS3_EEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOSA_
_ZN2yb8ToStringIRPNS_10MemTrackerEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS6_
Line
Count
Source
167
11
    ToString(Pointer&& value) {
168
11
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
11
  return PointerToString<CleanedT>::Apply(value);
170
11
}
_ZN2yb8ToStringIRNSt3__110shared_ptrINS_3rpc12OutboundDataEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
167
1
    ToString(Pointer&& value) {
168
1
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
1
  return PointerToString<CleanedT>::Apply(value);
170
1
}
_ZN2yb8ToStringIRKPKNS_3rpc11InboundCallEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
27
    ToString(Pointer&& value) {
168
27
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
27
  return PointerToString<CleanedT>::Apply(value);
170
27
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110shared_ptrINS_3rpc11DelayedTaskEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKPKNS_3rpc12OutboundCallEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
_ZN2yb8ToStringIRKPKNS_3rpc8ProtocolEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
9.34k
    ToString(Pointer&& value) {
168
9.34k
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
9.34k
  return PointerToString<CleanedT>::Apply(value);
170
9.34k
}
_ZN2yb8ToStringIRKNSt3__110shared_ptrINS_3rpc11ReactorTaskEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
2
    ToString(Pointer&& value) {
168
2
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
2
  return PointerToString<CleanedT>::Apply(value);
170
2
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110shared_ptrINS_3rpc12OutboundCallEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
_ZN2yb8ToStringIRKNSt3__110shared_ptrINS_3rpc10ConnectionEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
21
    ToString(Pointer&& value) {
168
21
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
21
  return PointerToString<CleanedT>::Apply(value);
170
21
}
_ZN2yb8ToStringIRKPNS_3rpc10RpcCommandEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
167
84
    ToString(Pointer&& value) {
168
84
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
84
  return PointerToString<CleanedT>::Apply(value);
170
84
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__110shared_ptrINS_3rpc10RpcCommandEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKPNS_3rpc11InboundCallEEENSt3__19enable_ifIXsr13IsPointerLikeIT_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOS8_
_ZN2yb8ToStringIRKNSt3__110shared_ptrINS_5tools17YsckTabletReplicaEEEEENS1_9enable_ifIXsr13IsPointerLikeIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
167
8
    ToString(Pointer&& value) {
168
8
  typedef typename std::remove_cv<typename std::remove_reference<Pointer>::type>::type CleanedT;
169
8
  return PointerToString<CleanedT>::Apply(value);
170
8
}
171
172
90.2M
inline const std::string& ToString(const std::string& str) { return str; }
173
1
inline std::string ToString(const char* str) { return str; }
174
175
template <class First, class Second>
176
std::string ToString(const std::pair<First, Second>& pair);
177
178
template <class Collection>
179
std::string CollectionToString(const Collection& collection);
180
181
template <class Collection, class Transform>
182
std::string CollectionToString(const Collection& collection, const Transform& transform);
183
184
template <class T>
185
typename std::enable_if<yb_tostring::HasFreeFunction_to_string<T>::value,
186
1
                        std::string>::type ToString(const T& value) {
187
1
  return to_string(value);
188
1
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16atomicImEEEENS1_9enable_ifIXsr11yb_tostring25HasFreeFunction_to_stringIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringIN5boost5uuids4uuidEEENSt3__19enable_ifIXsr11yb_tostring25HasFreeFunction_to_stringIT_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Line
Count
Source
186
1
                        std::string>::type ToString(const T& value) {
187
1
  return to_string(value);
188
1
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16atomicIbEEEENS1_9enable_ifIXsr11yb_tostring25HasFreeFunction_to_stringIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16atomicIiEEEENS1_9enable_ifIXsr11yb_tostring25HasFreeFunction_to_stringIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16atomicIxEEEENS1_9enable_ifIXsr11yb_tostring25HasFreeFunction_to_stringIT_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeERKS5_
189
190
template <class T>
191
typename std::enable_if<IsCollection<T>::value &&
192
                            !yb_tostring::HasFreeFunction_to_string<T>::value &&
193
                            !HasMemberFunction_ToString<T>::value,
194
17.4M
                        std::string>::type ToString(const T& value) {
195
17.4M
  return CollectionToString(value);
196
17.4M
}
_ZN2yb8ToStringINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISC_EE5valuentsr26HasMemberFunction_ToStringISC_EE5valueES8_E4typeERKSC_
Line
Count
Source
194
35.8k
                        std::string>::type ToString(const T& value) {
195
35.8k
  return CollectionToString(value);
196
35.8k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_10EnumBitSetINS_19TransactionLoadFlagEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS6_EE5valuentsr26HasMemberFunction_ToStringIS6_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS_6client11YBTableNameENS1_9allocatorIS4_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
_ZN2yb8ToStringINSt3__16vectorImNS1_9allocatorImEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEE4typeERKS7_
Line
Count
Source
194
11
                        std::string>::type ToString(const T& value) {
195
11
  return CollectionToString(value);
196
11
}
_ZN2yb8ToStringINSt3__16vectorINS_4OpIdENS1_9allocatorIS3_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS8_EE5valuentsr26HasMemberFunction_ToStringIS8_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEE4typeERKS8_
Line
Count
Source
194
3
                        std::string>::type ToString(const T& value) {
195
3
  return CollectionToString(value);
196
3
}
_ZN2yb8ToStringINSt3__16vectorIiNS1_9allocatorIiEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEE4typeERKS7_
Line
Count
Source
194
8.21k
                        std::string>::type ToString(const T& value) {
195
8.21k
  return CollectionToString(value);
196
8.21k
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__15arrayINS1_6atomicImEELm20EEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeERKS7_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorIN7rocksdb16LiveFileMetaDataENS1_9allocatorIS4_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__13mapIiiNS1_4lessIiEENS1_9allocatorINS1_4pairIKiiEEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISC_EE5valuentsr26HasMemberFunction_ToStringISC_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKSC_
Unexecuted instantiation: _ZN2yb8ToStringIN6google8protobuf16RepeatedPtrFieldINS_6master22SnapshotScheduleInfoPBEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeERKS9_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_setINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEEN5boost4hashIS5_EENS1_8equal_toIS5_EENS1_9allocatorIS5_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISF_EE5valuentsr26HasMemberFunction_ToStringISF_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEEE4typeERKSF_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__15arrayIiLm4EEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS5_EE5valuentsr26HasMemberFunction_ToStringIS5_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeERKS5_
Unexecuted instantiation: _ZN2yb8ToStringIN5boost9container12small_vectorImLm8EvvEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__13setINS_5docdb9SubDocKeyENS1_4lessIS4_EENS1_9allocatorIS4_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS_5docdb9SubDocKeyENS1_9allocatorIS4_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS_5docdb15CollectedIntentENS1_9allocatorIS4_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
Unexecuted instantiation: doc_operation-test.cc:_ZN2yb8ToStringINSt3__16vectorINS_5docdb12_GLOBAL__N_113RowDataWithHtENS1_9allocatorIS5_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISA_EE5valuentsr26HasMemberFunction_ToStringISA_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEEE4typeERKSA_
_ZN2yb8ToStringINS_10EnumBitSetINS_5docdb10IntentTypeEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Line
Count
Source
194
96
                        std::string>::type ToString(const T& value) {
195
96
  return CollectionToString(value);
196
96
}
_ZN2yb8ToStringIN5boost14iterator_rangeINSt3__111__wrap_iterIPNS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEEEEENS3_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISF_EE5valuentsr26HasMemberFunction_ToStringISF_EE5valueESA_E4typeERKSF_
Line
Count
Source
194
3
                        std::string>::type ToString(const T& value) {
195
3
  return CollectionToString(value);
196
3
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS_9MonoDeltaENS1_9allocatorIS3_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS8_EE5valuentsr26HasMemberFunction_ToStringIS8_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEE4typeERKS8_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10unique_ptrINS_5itest14TServerDetailsENS1_14default_deleteISB_EEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SE_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISP_EE5valuentsr26HasMemberFunction_ToStringISP_EE5valueES8_E4typeERKSP_
_ZN2yb8ToStringINSt3__113unordered_setINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_IS8_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISG_EE5valuentsr26HasMemberFunction_ToStringISG_EE5valueES8_E4typeERKSG_
Line
Count
Source
194
22
                        std::string>::type ToString(const T& value) {
195
22
  return CollectionToString(value);
196
22
}
_ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiNS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_iEEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISJ_EE5valuentsr26HasMemberFunction_ToStringISJ_EE5valueES8_E4typeERKSJ_
Line
Count
Source
194
5
                        std::string>::type ToString(const T& value) {
195
5
  return CollectionToString(value);
196
5
}
_ZN2yb8ToStringINSt3__13setINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4lessIS8_EENS6_IS8_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISE_EE5valuentsr26HasMemberFunction_ToStringISE_EE5valueES8_E4typeERKSE_
Line
Count
Source
194
16.0k
                        std::string>::type ToString(const T& value) {
195
16.0k
  return CollectionToString(value);
196
16.0k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_10EnumBitSetINS_9pgwrapper14IndexStateFlagEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Unexecuted instantiation: pg_on_conflict-test.cc:_ZN2yb8ToStringINS_9pgwrapper12_GLOBAL__N_115TransactionInfoEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS6_EE5valuentsr26HasMemberFunction_ToStringIS6_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS_11redisserver10RedisReplyENS1_9allocatorIS4_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
_ZN2yb8ToStringINSt3__16vectorIyNS1_9allocatorIyEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEE4typeERKS7_
Line
Count
Source
194
96.3k
                        std::string>::type ToString(const T& value) {
195
96.3k
  return CollectionToString(value);
196
96.3k
}
_ZN2yb8ToStringINSt3__13setIyNS1_4lessIyEENS1_9allocatorIyEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
Line
Count
Source
194
96.3k
                        std::string>::type ToString(const T& value) {
195
96.3k
  return CollectionToString(value);
196
96.3k
}
_ZN2yb8ToStringINSt3__16vectorIjNS1_9allocatorIjEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEE4typeERKS7_
Line
Count
Source
194
3
                        std::string>::type ToString(const T& value) {
195
3
  return CollectionToString(value);
196
3
}
_ZN2yb8ToStringIN6google8protobuf13RepeatedFieldIjEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Line
Count
Source
194
8
                        std::string>::type ToString(const T& value) {
195
8
  return CollectionToString(value);
196
8
}
_ZN2yb8ToStringIN6google8protobuf16RepeatedPtrFieldINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEEEENS4_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISD_EE5valuentsr26HasMemberFunction_ToStringISD_EE5valueESA_E4typeERKSD_
Line
Count
Source
194
6
                        std::string>::type ToString(const T& value) {
195
6
  return CollectionToString(value);
196
6
}
_ZN2yb8ToStringIN6google8protobuf13RepeatedFieldIiEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Line
Count
Source
194
2
                        std::string>::type ToString(const T& value) {
195
2
  return CollectionToString(value);
196
2
}
_ZN2yb8ToStringIN6google8protobuf16RepeatedPtrFieldINS_8rpc_test23LightweightSubMessagePBEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeERKS9_
Line
Count
Source
194
8
                        std::string>::type ToString(const T& value) {
195
8
  return CollectionToString(value);
196
8
}
_ZN2yb8ToStringIN6google8protobuf13RepeatedFieldIyEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Line
Count
Source
194
1.43k
                        std::string>::type ToString(const T& value) {
195
1.43k
  return CollectionToString(value);
196
1.43k
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS1_4pairINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_EENS7_ISA_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISE_EE5valuentsr26HasMemberFunction_ToStringISE_EE5valueES9_E4typeERKSE_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS1_10shared_ptrINS_9consensus12ReplicateMsgEEENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__13setINS_4OpIdENS1_4lessIS3_EENS1_9allocatorIS3_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISA_EE5valuentsr26HasMemberFunction_ToStringISA_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEEE4typeERKSA_
Unexecuted instantiation: _ZN2yb8ToStringINS_11RangeObjectImEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS5_EE5valuentsr26HasMemberFunction_ToStringIS5_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
_ZN2yb8ToStringINSt3__13setIiNS1_4lessIiEENS1_9allocatorIiEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
Line
Count
Source
194
80
                        std::string>::type ToString(const T& value) {
195
80
  return CollectionToString(value);
196
80
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__13setIxNS1_4lessIxEENS1_9allocatorIxEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
Unexecuted instantiation: _ZN2yb8ToStringINS_20ContainerRangeObjectINS_11RangeObjectImEENSt3__16vectorIiNS4_9allocatorIiEEEEEEEENS4_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS6_IcEEEEE4typeERKSB_
_ZN2yb8ToStringINSt3__16vectorINS_8HostPortENS1_9allocatorIS3_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS8_EE5valuentsr26HasMemberFunction_ToStringIS8_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEE4typeERKS8_
Line
Count
Source
194
3.47M
                        std::string>::type ToString(const T& value) {
195
3.47M
  return CollectionToString(value);
196
3.47M
}
_ZN2yb8ToStringIN6google8protobuf16RepeatedPtrFieldINS_6tablet14SnapshotFilePBEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeERKS9_
Line
Count
Source
194
1.43k
                        std::string>::type ToString(const T& value) {
195
1.43k
  return CollectionToString(value);
196
1.43k
}
_ZN2yb8ToStringINSt3__113unordered_mapIiNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4hashIiEENS1_8equal_toIiEENS6_INS1_4pairIKiS8_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISJ_EE5valuentsr26HasMemberFunction_ToStringISJ_EE5valueES8_E4typeERKSJ_
Line
Count
Source
194
7
                        std::string>::type ToString(const T& value) {
195
7
  return CollectionToString(value);
196
7
}
_ZN2yb8ToStringINS_8LRUCacheIiEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS5_EE5valuentsr26HasMemberFunction_ToStringIS5_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKS5_
Line
Count
Source
194
2
                        std::string>::type ToString(const T& value) {
195
2
  return CollectionToString(value);
196
2
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS1_10shared_ptrINS_10MemTrackerEEENS1_9allocatorIS5_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISA_EE5valuentsr26HasMemberFunction_ToStringISA_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEEE4typeERKSA_
_ZN2yb8ToStringINSt3__16vectorIN5boost4asio2ip7addressENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Line
Count
Source
194
3
                        std::string>::type ToString(const T& value) {
195
3
  return CollectionToString(value);
196
3
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__13mapIhiNS1_4lessIhEENS1_9allocatorINS1_4pairIKhiEEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISC_EE5valuentsr26HasMemberFunction_ToStringISC_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKSC_
_ZN2yb8ToStringINSt3__15dequeIiNS1_9allocatorIiEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEE4typeERKS7_
Line
Count
Source
194
3
                        std::string>::type ToString(const T& value) {
195
3
  return CollectionToString(value);
196
3
}
_ZN2yb8ToStringINSt3__14listIiNS1_9allocatorIiEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEE4typeERKS7_
Line
Count
Source
194
2
                        std::string>::type ToString(const T& value) {
195
2
  return CollectionToString(value);
196
2
}
_ZN2yb8ToStringINSt3__13mapIiNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4lessIiEENS6_INS1_4pairIKiS8_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISH_EE5valuentsr26HasMemberFunction_ToStringISH_EE5valueES8_E4typeERKSH_
Line
Count
Source
194
1
                        std::string>::type ToString(const T& value) {
195
1
  return CollectionToString(value);
196
1
}
_ZN2yb8ToStringINSt3__16vectorINS1_4pairIiNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS7_ISA_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISE_EE5valuentsr26HasMemberFunction_ToStringISE_EE5valueES9_E4typeERKSE_
Line
Count
Source
194
6
                        std::string>::type ToString(const T& value) {
195
6
  return CollectionToString(value);
196
6
}
_ZN2yb8ToStringINSt3__16vectorI13scoped_refptrINS_9util_test12ToStringableEENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Line
Count
Source
194
1
                        std::string>::type ToString(const T& value) {
195
1
  return CollectionToString(value);
196
1
}
_ZN2yb8ToStringINSt3__16vectorINS_9util_test24ToStringableNonIntrusiveENS1_9allocatorIS4_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
Line
Count
Source
194
1
                        std::string>::type ToString(const T& value) {
195
1
  return CollectionToString(value);
196
1
}
_ZN2yb8ToStringINSt3__16vectorINS_9util_test10OutputableENS1_9allocatorIS4_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
Line
Count
Source
194
1
                        std::string>::type ToString(const T& value) {
195
1
  return CollectionToString(value);
196
1
}
_ZN2yb8ToStringINSt3__16vectorIN5boost5uuids4uuidENS1_9allocatorIS5_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISA_EE5valuentsr26HasMemberFunction_ToStringISA_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEEE4typeERKSA_
Line
Count
Source
194
1
                        std::string>::type ToString(const T& value) {
195
1
  return CollectionToString(value);
196
1
}
_ZN2yb8ToStringIN6google8protobuf16RepeatedPtrFieldINS_10HostPortPBEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS8_EE5valuentsr26HasMemberFunction_ToStringIS8_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeERKS8_
Line
Count
Source
194
274k
                        std::string>::type ToString(const T& value) {
195
274k
  return CollectionToString(value);
196
274k
}
Unexecuted instantiation: _ZN2yb8ToStringIN6google8protobuf16RepeatedPtrFieldINS_9consensus12ReplicateMsgEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeERKS9_
Unexecuted instantiation: _ZN2yb8ToStringIN5boost9container12small_vectorINSt3__16chrono10time_pointINS_15CoarseMonoClockENS5_8durationIxNS4_5ratioILl1ELl1000000000EEEEEEELm5EvvEEEENS4_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISF_EE5valuentsr26HasMemberFunction_ToStringISF_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKSF_
_ZN2yb8ToStringIN5boost9container12small_vectorIyLm5EvvEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Line
Count
Source
194
1
                        std::string>::type ToString(const T& value) {
195
1
  return CollectionToString(value);
196
1
}
Unexecuted instantiation: _ZN2yb8ToStringIN5boost9container12small_vectorINS_4OpIdELm5EvvEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS8_EE5valuentsr26HasMemberFunction_ToStringIS8_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeERKS8_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__15dequeI13scoped_refptrINS_9consensus14ConsensusRoundEENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Unexecuted instantiation: retryable_requests.cc:_ZN2yb8ToStringIN5boost11multi_index6detail12hashed_indexINS2_6memberINS_9consensus12_GLOBAL__N_123RunningRetryableRequestExXadL_ZNS8_10request_idEEEEENS1_4hashIxEENSt3__18equal_toIxEENS3_9nth_layerILi1ES8_NS2_10indexed_byINS2_13hashed_uniqueINS2_3tagINS7_14RequestIdIndexEN4mpl_2naESL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_EES9_SL_SL_EESL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_EENSC_9allocatorIS8_EEEENS1_3mpl6v_itemISJ_NSS_7vector0ISL_EELi0EEENS3_17hashed_unique_tagEEEEENSC_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS10_EE5valuentsr26HasMemberFunction_ToStringIS10_EE5valueENSC_12basic_stringIcNSC_11char_traitsIcEENSP_IcEEEEE4typeERKS10_
Unexecuted instantiation: retryable_requests.cc:_ZN2yb8ToStringIN5boost11multi_index21multi_index_containerINS_9consensus12_GLOBAL__N_131ReplicatedRetryableRequestRangeENS2_10indexed_byINS2_14ordered_uniqueINS2_3tagINS5_11LastIdIndexEN4mpl_2naESC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_EENS2_6memberIS6_xXadL_ZNS6_7last_idEEEEESC_EENS8_INS9_INS5_9OpIdIndexESC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_EENSE_IS6_NS_4OpIdEXadL_ZNS6_9min_op_idEEEEESC_EESC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_EENSt3__19allocatorIS6_EEEEEENSN_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISS_EE5valuentsr26HasMemberFunction_ToStringISS_EE5valueENSN_12basic_stringIcNSN_11char_traitsIcEENSO_IcEEEEE4typeERKSS_
_ZN2yb8ToStringINSt3__16vectorINS1_10shared_ptrINS_6master12TSDescriptorEEENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Line
Count
Source
194
70
                        std::string>::type ToString(const T& value) {
195
70
  return CollectionToString(value);
196
70
}
_ZN2yb8ToStringINSt3__16vectorIxNS1_9allocatorIxEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEE4typeERKS7_
Line
Count
Source
194
41
                        std::string>::type ToString(const T& value) {
195
41
  return CollectionToString(value);
196
41
}
_ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_16IndexPermissionsENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_S9_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISK_EE5valuentsr26HasMemberFunction_ToStringISK_EE5valueES8_E4typeERKSK_
Line
Count
Source
194
422
                        std::string>::type ToString(const T& value) {
195
422
  return CollectionToString(value);
196
422
}
_ZN2yb8ToStringINSt3__16vectorINS_11IndexInfoPBENS1_9allocatorIS3_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS8_EE5valuentsr26HasMemberFunction_ToStringIS8_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEE4typeERKS8_
Line
Count
Source
194
453
                        std::string>::type ToString(const T& value) {
195
453
  return CollectionToString(value);
196
453
}
_ZN2yb8ToStringINSt3__16vectorI13scoped_refptrINS_6master10TabletInfoEENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Line
Count
Source
194
50.7k
                        std::string>::type ToString(const T& value) {
195
50.7k
  return CollectionToString(value);
196
50.7k
}
Unexecuted instantiation: _ZN2yb8ToStringIN6google8protobuf16RepeatedPtrFieldINS_11IndexInfoPBEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS8_EE5valuentsr26HasMemberFunction_ToStringIS8_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeERKS8_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__15arrayINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEELm2EEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueES8_E4typeERKSB_
_ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master13TabletReplicaENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SA_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISL_EE5valuentsr26HasMemberFunction_ToStringISL_EE5valueES8_E4typeERKSL_
Line
Count
Source
194
11.2M
                        std::string>::type ToString(const T& value) {
195
11.2M
  return CollectionToString(value);
196
11.2M
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_setINS1_10shared_ptrINS_6server13MonitoredTaskEEENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISF_EE5valuentsr26HasMemberFunction_ToStringISF_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEEE4typeERKSF_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__13mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE13scoped_refptrINS_6master9TableInfoEENS1_4lessIS8_EENS6_INS1_4pairIKS8_SC_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISL_EE5valuentsr26HasMemberFunction_ToStringISL_EE5valueES8_E4typeERKSL_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_setINS_11CloudInfoPBENS_6master10cloud_hashENS4_14cloud_equal_toENS1_9allocatorIS3_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_8MonoTimeENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_S9_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISK_EE5valuentsr26HasMemberFunction_ToStringISK_EE5valueES8_E4typeERKSK_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS_6master23TabletSnapshotOperationENS1_9allocatorIS4_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
_ZN2yb8ToStringINSt3__16vectorINS_5docdb14PrimitiveValueENS1_9allocatorIS4_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
Line
Count
Source
194
1
                        std::string>::type ToString(const T& value) {
195
1
  return CollectionToString(value);
196
1
}
Unexecuted instantiation: _ZN2yb8ToStringIN5boost11multi_index21multi_index_containerINS_6master16StateWithTablets10TabletDataENS2_10indexed_byINS2_13hashed_uniqueINS2_6memberIS6_NSt3__112basic_stringIcNSA_11char_traitsIcEENSA_9allocatorIcEEEEXadL_ZNS6_2idEEEEEN4mpl_2naESJ_SJ_EENS2_18ordered_non_uniqueINS2_3tagINS5_10RunningTagESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENS9_IS6_bXadL_ZNS6_7runningEEEEESJ_EESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENSE_IS6_EEEEEENSA_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISV_EE5valuentsr26HasMemberFunction_ToStringISV_EE5valueESG_E4typeERKSV_
_ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10shared_ptrINS_6master12TSDescriptorEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISN_EE5valuentsr26HasMemberFunction_ToStringISN_EE5valueES8_E4typeERKSN_
Line
Count
Source
194
5.53k
                        std::string>::type ToString(const T& value) {
195
5.53k
  return CollectionToString(value);
196
5.53k
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS_8ColumnIdENS1_9allocatorIS3_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS8_EE5valuentsr26HasMemberFunction_ToStringIS8_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEE4typeERKS8_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master15SysRowEntryTypeENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SA_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISL_EE5valuentsr26HasMemberFunction_ToStringISL_EE5valueES8_E4typeERKSL_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_mapINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEENS_10HybridTimeEN5boost4hashIS5_EENS1_8equal_toIS5_EENS1_9allocatorINS1_4pairIKS5_S6_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISJ_EE5valuentsr26HasMemberFunction_ToStringISJ_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENSC_IcEEEEE4typeERKSJ_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master19SysNamespaceEntryPBENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SA_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISL_EE5valuentsr26HasMemberFunction_ToStringISL_EE5valueES8_E4typeERKSL_
Unexecuted instantiation: _ZN2yb8ToStringIN6google8protobuf16RepeatedPtrFieldINS_6master14SnapshotInfoPBEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeERKS9_
_ZN2yb8ToStringIN5boost5uuids4uuidEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS6_EE5valuentsr26HasMemberFunction_ToStringIS6_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKS6_
Line
Count
Source
194
3
                        std::string>::type ToString(const T& value) {
195
3
  return CollectionToString(value);
196
3
}
_ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES8_NS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_S8_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISJ_EE5valuentsr26HasMemberFunction_ToStringISJ_EE5valueES8_E4typeERKSJ_
Line
Count
Source
194
656k
                        std::string>::type ToString(const T& value) {
195
656k
  return CollectionToString(value);
196
656k
}
_ZN2yb8ToStringINSt3__113unordered_setIPN7rocksdb6DBImpl14CompactionTaskENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISF_EE5valuentsr26HasMemberFunction_ToStringISF_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEEE4typeERKSF_
Line
Count
Source
194
1.70k
                        std::string>::type ToString(const T& value) {
195
1.70k
  return CollectionToString(value);
196
1.70k
}
Unexecuted instantiation: _ZN2yb8ToStringIN5boost9container12small_vectorIyLm1EvvEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeERKS7_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__118unordered_multisetIyNS1_4hashIyEENS1_8equal_toIyEENS1_9allocatorIyEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorIN5boost4asio2ip14basic_endpointINS5_3tcpEEENS1_9allocatorIS8_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISD_EE5valuentsr26HasMemberFunction_ToStringISD_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS9_IcEEEEE4typeERKSD_
_ZN2yb8ToStringINSt3__16vectorINS_9IndexInfoENS1_9allocatorIS3_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS8_EE5valuentsr26HasMemberFunction_ToStringIS8_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEE4typeERKS8_
Line
Count
Source
194
235
                        std::string>::type ToString(const T& value) {
195
235
  return CollectionToString(value);
196
235
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__13mapIxNS_6tablet5EntryENS1_4lessIxEENS1_9allocatorINS1_4pairIKxS4_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISE_EE5valuentsr26HasMemberFunction_ToStringISE_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSE_
transaction_coordinator.cc:_ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6tablet12_GLOBAL__N_116TransactionState19InvolvedTabletStateENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISN_EE5valuentsr26HasMemberFunction_ToStringISN_EE5valueES8_E4typeERKSN_
Line
Count
Source
194
716k
                        std::string>::type ToString(const T& value) {
195
716k
  return CollectionToString(value);
196
716k
}
_ZN2yb8ToStringINSt3__15dequeINS1_10unique_ptrINS_6tablet18UpdateTxnOperationENS1_14default_deleteIS5_EEEENS1_9allocatorIS8_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISD_EE5valuentsr26HasMemberFunction_ToStringISD_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS9_IcEEEEE4typeERKSD_
Line
Count
Source
194
716k
                        std::string>::type ToString(const T& value) {
195
716k
  return CollectionToString(value);
196
716k
}
Unexecuted instantiation: transaction_coordinator.cc:_ZN2yb8ToStringINSt3__16vectorINS_6tablet12_GLOBAL__N_121ExpectedTabletBatchesENS1_9allocatorIS5_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISA_EE5valuentsr26HasMemberFunction_ToStringISA_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEEE4typeERKSA_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__15dequeIxNS1_9allocatorIxEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS7_EE5valuentsr26HasMemberFunction_ToStringIS7_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEE4typeERKS7_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_5dequeINS_17StronglyTypedUuidINS_17TransactionId_TagEEENS6_ISC_EEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SE_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISP_EE5valuentsr26HasMemberFunction_ToStringISP_EE5valueES8_E4typeERKSP_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__15dequeINS_17StronglyTypedUuidINS_17TransactionId_TagEEENS1_9allocatorIS5_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISA_EE5valuentsr26HasMemberFunction_ToStringISA_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEEE4typeERKSA_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__15dequeINS_6tablet11MvccManager9QueueItemENS1_9allocatorIS5_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISA_EE5valuentsr26HasMemberFunction_ToStringISA_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEEE4typeERKSA_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10shared_ptrINS_6tablet9TableInfoEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISN_EE5valuentsr26HasMemberFunction_ToStringISN_EE5valueES8_E4typeERKSN_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEENS1_9allocatorIS5_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISA_EE5valuentsr26HasMemberFunction_ToStringISA_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEEE4typeERKSA_
Unexecuted instantiation: _ZN2yb8ToStringIN5boost14iterator_rangeINSt3__111__wrap_iterIPPNS_6tablet15OperationDriverEEEEEEENS3_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISC_EE5valuentsr26HasMemberFunction_ToStringISC_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKSC_
_ZN2yb8ToStringINSt3__16vectorINS2_INS_8HostPortENS1_9allocatorIS3_EEEENS4_IS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISA_EE5valuentsr26HasMemberFunction_ToStringISA_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEE4typeERKSA_
Line
Count
Source
194
2.25k
                        std::string>::type ToString(const T& value) {
195
2.25k
  return CollectionToString(value);
196
2.25k
}
_ZN2yb8ToStringIN5boost14iterator_rangeINSt3__121__tree_const_iteratorINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS3_11__tree_nodeISA_PvEElEEEEEENS3_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISI_EE5valuentsr26HasMemberFunction_ToStringISI_EE5valueESA_E4typeERKSI_
Line
Count
Source
194
18.5k
                        std::string>::type ToString(const T& value) {
195
18.5k
  return CollectionToString(value);
196
18.5k
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS_6StatusENS1_9allocatorIS3_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS8_EE5valuentsr26HasMemberFunction_ToStringIS8_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEE4typeERKS8_
_ZN2yb8ToStringIN6google8protobuf16RepeatedPtrFieldINS_6tablet6FilePBEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeERKS9_
Line
Count
Source
194
1.43k
                        std::string>::type ToString(const T& value) {
195
1.43k
  return CollectionToString(value);
196
1.43k
}
Unexecuted instantiation: _ZN2yb8ToStringINS_8IndexMapEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS4_EE5valuentsr26HasMemberFunction_ToStringIS4_EE5valueENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEE4typeERKS4_
_ZN2yb8ToStringINSt3__16vectorINS_2ql10CQLMessage5ValueENS1_9allocatorIS5_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISA_EE5valuentsr26HasMemberFunction_ToStringISA_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEEE4typeERKSA_
Line
Count
Source
194
110
                        std::string>::type ToString(const T& value) {
195
110
  return CollectionToString(value);
196
110
}
Unexecuted instantiation: _ZN2yb8ToStringIN5boost9container12small_vectorINS_5SliceELm8EvvEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS8_EE5valuentsr26HasMemberFunction_ToStringIS8_EE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeERKS8_
Unexecuted instantiation: redis_service.cc:_ZN2yb8ToStringINSt3__16vectorIPNS_11redisserver12_GLOBAL__N_19OperationENS_8internal18ArenaAllocatorBaseIS6_NS7_11ArenaTraitsEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISD_EE5valuentsr26HasMemberFunction_ToStringISD_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeERKSD_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_setINS_5SliceENS3_4HashENS1_8equal_toIS3_EENS_8internal18ArenaAllocatorBaseIS3_NS7_11ArenaTraitsEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISD_EE5valuentsr26HasMemberFunction_ToStringISD_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeERKSD_
Unexecuted instantiation: redis_service.cc:_ZN2yb8ToStringINSt3__113unordered_mapINS_5SliceENS_11redisserver12_GLOBAL__N_116TabletOperationsENS3_4HashENS1_8equal_toIS3_EENS_8internal18ArenaAllocatorBaseINS1_4pairIKS3_S6_EENSA_11ArenaTraitsEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISJ_EE5valuentsr26HasMemberFunction_ToStringISJ_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeERKSJ_
Unexecuted instantiation: _ZN2yb8ToStringIN5boost14iterator_rangeINSt3__111__wrap_iterIPNS_6client8internal10InFlightOpEEEEEEENS3_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISC_EE5valuentsr26HasMemberFunction_ToStringISC_EE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeERKSC_
Unexecuted instantiation: _ZN2yb8ToStringIN6google8protobuf16RepeatedPtrFieldINS_6master17TabletLocationsPBEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeERKS9_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorIPNS_6client8internal10LookupDataENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS_5QLRowENS1_9allocatorIS3_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS8_EE5valuentsr26HasMemberFunction_ToStringIS8_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEE4typeERKS8_
_ZN2yb8ToStringINSt3__16vectorIPNS_6client8internal18RemoteTabletServerENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Line
Count
Source
194
576
                        std::string>::type ToString(const T& value) {
195
576
  return CollectionToString(value);
196
576
}
_ZN2yb8ToStringINSt3__113unordered_mapIPNS_6client8internal18RemoteTabletServerENS4_13TabletInvoker12FollowerDataENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorINS1_4pairIKS6_S8_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISK_EE5valuentsr26HasMemberFunction_ToStringISK_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENSD_IcEEEEE4typeERKSK_
Line
Count
Source
194
576
                        std::string>::type ToString(const T& value) {
195
576
  return CollectionToString(value);
196
576
}
Unexecuted instantiation: _ZN2yb8ToStringIN5boost9container12small_vectorINS_6client8internal16InFlightOpsGroupELm40EvvEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISA_EE5valuentsr26HasMemberFunction_ToStringISA_EE5valueENS8_12basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEE4typeERKSA_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6client13YBTransaction4Impl11TabletStateENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISN_EE5valuentsr26HasMemberFunction_ToStringISN_EE5valueES8_E4typeERKSN_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_mapI12GStringPiecemNS1_4hashIS3_EENS1_8equal_toIS3_EENS_20STLCountingAllocatorINS1_4pairIKS3_mEENS1_9allocatorISB_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISH_EE5valuentsr26HasMemberFunction_ToStringISH_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENSC_IcEEEEE4typeERKSH_
Unexecuted instantiation: conflict_resolution.cc:_ZN2yb8ToStringINSt3__113unordered_mapINS_17StronglyTypedUuidINS_17TransactionId_TagEEENS_5docdb12_GLOBAL__N_123TransactionConflictInfoEN5boost4hashIS5_EENS1_8equal_toIS5_EENS1_9allocatorINS1_4pairIKS5_S8_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISL_EE5valuentsr26HasMemberFunction_ToStringISL_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENSE_IcEEEEE4typeERKSL_
Unexecuted instantiation: conflict_resolution.cc:_ZN2yb8ToStringINSt3__13mapINS_10ByteBufferILm64EEENS_5docdb12_GLOBAL__N_110IntentDataENS1_4lessIS4_EENS1_9allocatorINS1_4pairIKS4_S7_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISH_EE5valuentsr26HasMemberFunction_ToStringISH_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENSA_IcEEEEE4typeERKSH_
_ZN2yb8ToStringINSt3__16vectorINS_5docdb14LockBatchEntryENS1_9allocatorIS4_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEE4typeERKS9_
Line
Count
Source
194
47
                        std::string>::type ToString(const T& value) {
195
47
  return CollectionToString(value);
196
47
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS1_10unique_ptrINS_5docdb12DocOperationENS1_14default_deleteIS5_EEEENS1_9allocatorIS8_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISD_EE5valuentsr26HasMemberFunction_ToStringISD_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS9_IcEEEEE4typeERKSD_
Unexecuted instantiation: _ZN2yb8ToStringIN6google8protobuf16RepeatedPtrFieldINS_5docdb14KeyValuePairPBEEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeERKS9_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_mapINS_12RefCntPrefixEPNS_5docdb16LockedBatchEntryENS_16RefCntPrefixHashENS1_8equal_toIS3_EENS1_9allocatorINS1_4pairIKS3_S6_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISH_EE5valuentsr26HasMemberFunction_ToStringISH_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENSA_IcEEEEE4typeERKSH_
priority_thread_pool.cc:_ZN2yb8ToStringIN5boost11multi_index21multi_index_containerINS_12_GLOBAL__N_130PriorityThreadPoolInternalTaskENS2_10indexed_byINS2_13ranked_uniqueINS2_3tagINS_18PriorityThreadPool4Impl11PriorityTagEN4mpl_2naESD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_EENS2_8identityIS5_EENS4_22PriorityTaskComparatorEEENS2_14ordered_uniqueINS8_INSA_19StateAndPriorityTagESD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_EESG_NS4_30StateAndPriorityTaskComparatorEEENS2_13hashed_uniqueINS8_INSA_11SerialNoTagESD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_EENS2_13const_mem_funIS5_mXadL_ZNKS5_9serial_noEvEEEESD_SD_EESD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_EENSt3__19allocatorIS5_EEEEEENSV_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS10_EE5valuentsr26HasMemberFunction_ToStringIS10_EE5valueENSV_12basic_stringIcNSV_11char_traitsIcEENSW_IcEEEEE4typeERKS10_
Line
Count
Source
194
1
                        std::string>::type ToString(const T& value) {
195
1
  return CollectionToString(value);
196
1
}
Unexecuted instantiation: priority_thread_pool.cc:_ZN2yb8ToStringIN5boost9container13stable_vectorINS_12_GLOBAL__N_124PriorityThreadPoolWorkerEvEEEENSt3__19enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS9_EE5valuentsr26HasMemberFunction_ToStringIS9_EE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeERKS9_
priority_thread_pool.cc:_ZN2yb8ToStringINSt3__16vectorIPNS_12_GLOBAL__N_124PriorityThreadPoolWorkerENS1_9allocatorIS5_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISA_EE5valuentsr26HasMemberFunction_ToStringISA_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEEE4typeERKSA_
Line
Count
Source
194
1
                        std::string>::type ToString(const T& value) {
195
1
  return CollectionToString(value);
196
1
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS1_10unique_ptrINS_22PriorityThreadPoolTaskENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISC_EE5valuentsr26HasMemberFunction_ToStringISC_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS8_IcEEEEE4typeERKSC_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_mapIxNS1_10shared_ptrINS_3rpc11DelayedTaskEEENS1_4hashIxEENS1_8equal_toIxEENS1_9allocatorINS1_4pairIKxS6_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISI_EE5valuentsr26HasMemberFunction_ToStringISI_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEEE4typeERKSI_
_ZN2yb8ToStringINSt3__16vectorINS1_10shared_ptrINS_3rpc11ReactorTaskEEENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Line
Count
Source
194
2
                        std::string>::type ToString(const T& value) {
195
2
  return CollectionToString(value);
196
2
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__16vectorINS1_10shared_ptrINS_3rpc12OutboundCallEEENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_setINS1_10shared_ptrINS_3rpc10ConnectionEEENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISF_EE5valuentsr26HasMemberFunction_ToStringISF_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEEE4typeERKSF_
Unexecuted instantiation: _ZN2yb8ToStringIN5boost9container13stable_vectorINSt3__110shared_ptrINS_3rpc10RpcCommandEEEvEEEENS4_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeERKSB_
Unexecuted instantiation: _ZN2yb8ToStringINSt3__113unordered_mapIyPNS_3rpc11InboundCallENS1_4hashIyEENS1_8equal_toIyEENS1_9allocatorINS1_4pairIKyS5_EEEEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISH_EE5valuentsr26HasMemberFunction_ToStringISH_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENSA_IcEEEEE4typeERKSH_
_ZN2yb8ToStringINSt3__16vectorINS1_10shared_ptrINS_5tools17YsckTabletReplicaEEENS1_9allocatorIS6_EEEEEENS1_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISB_EE5valuentsr26HasMemberFunction_ToStringISB_EE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEE4typeERKSB_
Line
Count
Source
194
8
                        std::string>::type ToString(const T& value) {
195
8
  return CollectionToString(value);
196
8
}
197
198
template <class T, class Transform>
199
typename std::enable_if<IsCollection<T>::value &&
200
                            !yb_tostring::HasFreeFunction_to_string<T>::value &&
201
                            !HasMemberFunction_ToString<T>::value,
202
2.74k
                        std::string>::type ToString(const T& value, const Transform& transform) {
203
2.74k
  return CollectionToString(value, transform);
204
2.74k
}
_ZN2yb8ToStringIN6google8protobuf16RepeatedPtrFieldINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEEPFNS_4UuidERKNS_5SliceEEEENS4_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringISJ_EE5valuentsr26HasMemberFunction_ToStringISJ_EE5valueESA_E4typeERKSJ_RKT0_
Line
Count
Source
202
2.74k
                        std::string>::type ToString(const T& value, const Transform& transform) {
203
2.74k
  return CollectionToString(value, transform);
204
2.74k
}
Unexecuted instantiation: _ZN2yb8ToStringIN5boost11multi_index21multi_index_containerINSt3__110shared_ptrINS_6tablet18RunningTransactionEEENS2_10indexed_byINS2_13hashed_uniqueINS2_13const_mem_funIS7_RKNS_17StronglyTypedUuidINS_17TransactionId_TagEEEXadL_ZNKS7_2idEvEEEEN4mpl_2naESJ_SJ_EENS2_18ordered_non_uniqueINS2_3tagINS6_22TransactionParticipant4Impl12StartTimeTagESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENSB_IS7_NS_10HybridTimeEXadL_ZNKS7_8start_htEvEEEESJ_EENSL_INSM_INSO_17AbortCheckTimeTagESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENSB_IS7_SR_XadL_ZNKS7_14abort_check_htEvEEEESJ_EESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENS4_9allocatorIS8_EEEEZNSO_30TEST_GetNumRunningTransactionsEvEUlRKS8_E_EENS4_9enable_ifIXaaaasr12IsCollectionIT_EE5valuentsr11yb_tostring25HasFreeFunction_to_stringIS16_EE5valuentsr26HasMemberFunction_ToStringIS16_EE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENSZ_IcEEEEE4typeERKS16_RKT0_
205
206
template <class T>
207
typename std::enable_if<
208
    boost::mpl::and_<
209
        boost::mpl::bool_<yb_tostring::SupportsOutputToStream<T>::value>,
210
        boost::mpl::bool_<!
211
            (IsPointerLike<T>::value ||
212
             std::is_integral<typename std::remove_reference<T>::type>::value ||
213
             std::is_floating_point<typename std::remove_reference<T>::type>::value ||
214
             IsCollection<T>::value ||
215
             HasMemberFunction_ToString<T>::value ||
216
             HasMemberFunction_to_string<T>::value)>
217
    >::value,
218
    std::string>::type
219
215k
ToString(T&& value) {
220
215k
  std::ostringstream out;
221
215k
  out << value;
222
215k
  return out.str();
223
215k
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_17TransactionStatusEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_11YQLDatabaseEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKN5boost5uuids4uuid12version_typeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENSA_IXntoooooooooosr13IsPointerLikeISB_EE5valuesr3std11is_integralINS7_16remove_referenceISB_E4typeEEE5valuesr3std17is_floating_pointISF_EE5valuesr12IsCollectionISB_EE5valuesr26HasMemberFunction_ToStringISB_EE5valuesr27HasMemberFunction_to_stringISB_EE5valueEEEEE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOSB_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_17StronglyTypedBoolINS_5docdb14FullDocKey_TagEEEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENSA_IXntoooooooooosr13IsPointerLikeISB_EE5valuesr3std11is_integralINS7_16remove_referenceISB_E4typeEEE5valuesr3std17is_floating_pointISF_EE5valuesr12IsCollectionISB_EE5valuesr26HasMemberFunction_ToStringISB_EE5valuesr27HasMemberFunction_to_stringISB_EE5valueEEEEE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOSB_
Unexecuted instantiation: doc_operation-test.cc:_ZN2yb8ToStringIRNS_5docdb12_GLOBAL__N_113RowDataWithHtEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: doc_operation-test.cc:_ZN2yb8ToStringIRKNS_5docdb12_GLOBAL__N_113RowDataWithHtEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS9_IXntoooooooooosr13IsPointerLikeISA_EE5valuesr3std11is_integralINS6_16remove_referenceISA_E4typeEEE5valuesr3std17is_floating_pointISE_EE5valuesr12IsCollectionISA_EE5valuesr26HasMemberFunction_ToStringISA_EE5valuesr27HasMemberFunction_to_stringISA_EE5valueEEEEE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOSA_
_ZN2yb8ToStringIRN5boost4asio2ip14basic_endpointINS3_3tcpEEEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENSB_IXntoooooooooosr13IsPointerLikeISC_EE5valuesr3std11is_integralINS8_16remove_referenceISC_E4typeEEE5valuesr3std17is_floating_pointISG_EE5valuesr12IsCollectionISC_EE5valuesr26HasMemberFunction_ToStringISC_EE5valuesr27HasMemberFunction_to_stringISC_EE5valueEEEEE5valueENS8_12basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEE4typeEOSC_
Line
Count
Source
219
30
ToString(T&& value) {
220
30
  std::ostringstream out;
221
30
  out << value;
222
30
  return out.str();
223
30
}
_ZN2yb8ToStringIRKN5boost4asio2ip14basic_endpointINS3_3tcpEEEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENSC_IXntoooooooooosr13IsPointerLikeISD_EE5valuesr3std11is_integralINS9_16remove_referenceISD_E4typeEEE5valuesr3std17is_floating_pointISH_EE5valuesr12IsCollectionISD_EE5valuesr26HasMemberFunction_ToStringISD_EE5valuesr27HasMemberFunction_to_stringISD_EE5valueEEEEE5valueENS9_12basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEE4typeEOSD_
Line
Count
Source
219
75.7k
ToString(T&& value) {
220
75.7k
  std::ostringstream out;
221
75.7k
  out << value;
222
75.7k
  return out.str();
223
75.7k
}
_ZN2yb8ToStringIN5boost4asio2ip14basic_endpointINS3_3tcpEEEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENSA_IXntoooooooooosr13IsPointerLikeISB_EE5valuesr3std11is_integralINS7_16remove_referenceISB_E4typeEEE5valuesr3std17is_floating_pointISF_EE5valuesr12IsCollectionISB_EE5valuesr26HasMemberFunction_ToStringISB_EE5valuesr27HasMemberFunction_to_stringISB_EE5valueEEEEE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOSB_
Line
Count
Source
219
103
ToString(T&& value) {
220
103
  std::ostringstream out;
221
103
  out << value;
222
103
  return out.str();
223
103
}
_ZN2yb8ToStringIRKNS_6master15SysRowEntryTypeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
219
740
ToString(T&& value) {
220
740
  std::ostringstream out;
221
740
  out << value;
222
740
  return out.str();
223
740
}
Unexecuted instantiation: geo_transactions-test.cc:_ZN2yb8ToStringIRNS_17StronglyTypedBoolINS_6client12_GLOBAL__N_134SetGlobalTransactionSessionVar_TagEEEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENSA_IXntoooooooooosr13IsPointerLikeISB_EE5valuesr3std11is_integralINS7_16remove_referenceISB_E4typeEEE5valuesr3std17is_floating_pointISF_EE5valuesr12IsCollectionISB_EE5valuesr26HasMemberFunction_ToStringISB_EE5valuesr27HasMemberFunction_to_stringISB_EE5valueEEEEE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOSB_
Unexecuted instantiation: _ZN2yb8ToStringIRKN9rapidjson14ParseErrorCodeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
_ZN2yb8ToStringIRNS_9util_test10OutputableEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
219
1
ToString(T&& value) {
220
1
  std::ostringstream out;
221
1
  out << value;
222
1
  return out.str();
223
1
}
_ZN2yb8ToStringIRKNS_9util_test10OutputableEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
219
2
ToString(T&& value) {
220
2
  std::ostringstream out;
221
2
  out << value;
222
2
  return out.str();
223
2
}
_ZN2yb8ToStringIRKNS_9consensus12ReplicaState5StateEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS9_IXntoooooooooosr13IsPointerLikeISA_EE5valuesr3std11is_integralINS6_16remove_referenceISA_E4typeEEE5valuesr3std17is_floating_pointISE_EE5valuesr12IsCollectionISA_EE5valuesr26HasMemberFunction_ToStringISA_EE5valuesr27HasMemberFunction_to_stringISA_EE5valueEEEEE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOSA_
Line
Count
Source
219
128k
ToString(T&& value) {
220
128k
  std::ostringstream out;
221
128k
  out << value;
222
128k
  return out.str();
223
128k
}
_ZN2yb8ToStringIRKNS_8PeerRoleEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
219
1
ToString(T&& value) {
220
1
  std::ostringstream out;
221
1
  out << value;
222
1
  return out.str();
223
1
}
_ZN2yb8ToStringIRKNS_17StronglyTypedBoolINS_5itest19MustBeCommitted_TagEEEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENSA_IXntoooooooooosr13IsPointerLikeISB_EE5valuesr3std11is_integralINS7_16remove_referenceISB_E4typeEEE5valuesr3std17is_floating_pointISF_EE5valuesr12IsCollectionISB_EE5valuesr26HasMemberFunction_ToStringISB_EE5valuesr27HasMemberFunction_to_stringISB_EE5valueEEEEE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOSB_
Line
Count
Source
219
1
ToString(T&& value) {
220
1
  std::ostringstream out;
221
1
  out << value;
222
1
  return out.str();
223
1
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_3log14LogEntryTypePBEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_3log13LogEntryBatch13LogEntryStateEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS9_IXntoooooooooosr13IsPointerLikeISA_EE5valuesr3std11is_integralINS6_16remove_referenceISA_E4typeEEE5valuesr3std17is_floating_pointISE_EE5valuesr12IsCollectionISA_EE5valuesr26HasMemberFunction_ToStringISA_EE5valuesr27HasMemberFunction_to_stringISA_EE5valueEEEEE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOSA_
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__16atomicINS_18TaskStreamRunStateEEEEENS1_9enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS9_IXntoooooooooosr13IsPointerLikeISA_EE5valuesr3std11is_integralINS1_16remove_referenceISA_E4typeEEE5valuesr3std17is_floating_pointISE_EE5valuesr12IsCollectionISA_EE5valuesr26HasMemberFunction_ToStringISA_EE5valuesr27HasMemberFunction_to_stringISA_EE5valueEEEEE5valueENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE4typeEOSA_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_3log3Log8LogStateEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS9_IXntoooooooooosr13IsPointerLikeISA_EE5valuesr3std11is_integralINS6_16remove_referenceISA_E4typeEEE5valuesr3std17is_floating_pointISE_EE5valuesr12IsCollectionISA_EE5valuesr26HasMemberFunction_ToStringISA_EE5valuesr27HasMemberFunction_to_stringISA_EE5valueEEEEE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOSA_
_ZN2yb8ToStringIRKNS_16IndexPermissionsEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Line
Count
Source
219
433
ToString(T&& value) {
220
433
  std::ostringstream out;
221
433
  out << value;
222
433
  return out.str();
223
433
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_9TableTypeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
_ZN2yb8ToStringIRKNS_6master25SysNamespaceEntryPB_StateEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
219
2
ToString(T&& value) {
220
2
  std::ostringstream out;
221
2
  out << value;
222
2
  return out.str();
223
2
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_6master24SysSnapshotEntryPB_StateEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_9QLValuePB9ValueCaseEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
_ZN2yb8ToStringIRKNS_6master23SysTabletsEntryPB_StateEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
219
4
ToString(T&& value) {
220
4
  std::ostringstream out;
221
4
  out << value;
222
4
  return out.str();
223
4
}
Unexecuted instantiation: _ZN2yb8ToStringIRK14ExecStatusTypeEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRK14ConnStatusTypeEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_6client11WriteOpTypeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKN5boost8optionalINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEEENS3_9enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENSF_IXntoooooooooosr13IsPointerLikeISG_EE5valuesr3std11is_integralINS3_16remove_referenceISG_E4typeEEE5valuesr3std17is_floating_pointISK_EE5valuesr12IsCollectionISG_EE5valuesr26HasMemberFunction_ToStringISG_EE5valuesr27HasMemberFunction_to_stringISG_EE5valueEEEEE5valueES9_E4typeEOSG_
Unexecuted instantiation: _ZN2yb8ToStringIRKN7rocksdb11WalFileTypeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
_ZN2yb8ToStringIRKN7rocksdb12ChecksumTypeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
219
3
ToString(T&& value) {
220
3
  std::ostringstream out;
221
3
  out << value;
222
3
  return out.str();
223
3
}
Unexecuted instantiation: _ZN2yb8ToStringIRN7rocksdb9WriteTypeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_6server13MonitoredTask4TypeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS9_IXntoooooooooosr13IsPointerLikeISA_EE5valuesr3std11is_integralINS6_16remove_referenceISA_E4typeEEE5valuesr3std17is_floating_pointISE_EE5valuesr12IsCollectionISA_EE5valuesr26HasMemberFunction_ToStringISA_EE5valuesr27HasMemberFunction_to_stringISA_EE5valueEEEEE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOSA_
Unexecuted instantiation: _ZN2yb8ToStringINS_6tablet16RaftGroupStatePBEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS6_IXntoooooooooosr13IsPointerLikeIS7_EE5valuesr3std11is_integralINS3_16remove_referenceIS7_E4typeEEE5valuesr3std17is_floating_pointISB_EE5valuesr12IsCollectionIS7_EE5valuesr26HasMemberFunction_ToStringIS7_EE5valuesr27HasMemberFunction_to_stringIS7_EE5valueEEEEE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS7_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_7tserver24TabletServerErrorPB_CodeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_21AppStatusPB_ErrorCodeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_6tablet6Tablet5StateEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS9_IXntoooooooooosr13IsPointerLikeISA_EE5valuesr3std11is_integralINS6_16remove_referenceISA_E4typeEEE5valuesr3std17is_floating_pointISE_EE5valuesr12IsCollectionISA_EE5valuesr26HasMemberFunction_ToStringISA_EE5valuesr27HasMemberFunction_to_stringISA_EE5valueEEEEE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOSA_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_17StronglyTypedBoolINS_6tablet29AlreadyAppliedToRegularDB_TagEEEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENSA_IXntoooooooooosr13IsPointerLikeISB_EE5valuesr3std11is_integralINS7_16remove_referenceISB_E4typeEEE5valuesr3std17is_floating_pointISF_EE5valuesr12IsCollectionISB_EE5valuesr26HasMemberFunction_ToStringISB_EE5valuesr27HasMemberFunction_to_stringISB_EE5valueEEEEE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOSB_
_ZN2yb8ToStringIRKNS_9consensus13OperationTypeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Line
Count
Source
219
1.24k
ToString(T&& value) {
220
1.24k
  std::ostringstream out;
221
1.24k
  out << value;
222
1.24k
  return out.str();
223
1.24k
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_14IsolationLevelEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_6tablet15TabletDataStateEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_7tserver22TSTabletManagerStatePBEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_6master12RelationTypeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_6master38ImportSnapshotMetaResponsePB_TableTypeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
cql_processor.cc:_ZN2yb8ToStringIRKNS_9cqlserver12_GLOBAL__N_19LDAPErrorEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS9_IXntoooooooooosr13IsPointerLikeISA_EE5valuesr3std11is_integralINS6_16remove_referenceISA_E4typeEEE5valuesr3std17is_floating_pointISE_EE5valuesr12IsCollectionISA_EE5valuesr26HasMemberFunction_ToStringISA_EE5valuesr27HasMemberFunction_to_stringISA_EE5valueEEEEE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOSA_
Line
Count
Source
219
6
ToString(T&& value) {
220
6
  std::ostringstream out;
221
6
  out << value;
222
6
  return out.str();
223
6
}
Unexecuted instantiation: _ZN2yb8ToStringINS_11redisserver15RedisClientModeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS6_IXntoooooooooosr13IsPointerLikeIS7_EE5valuesr3std11is_integralINS3_16remove_referenceIS7_E4typeEEE5valuesr3std17is_floating_pointISB_EE5valuesr12IsCollectionIS7_EE5valuesr26HasMemberFunction_ToStringIS7_EE5valuesr27HasMemberFunction_to_stringIS7_EE5valueEEEEE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS7_
_ZN2yb8ToStringIRKN5boost8optionalIjEEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS9_IXntoooooooooosr13IsPointerLikeISA_EE5valuesr3std11is_integralINS6_16remove_referenceISA_E4typeEEE5valuesr3std17is_floating_pointISE_EE5valuesr12IsCollectionISA_EE5valuesr26HasMemberFunction_ToStringISA_EE5valuesr27HasMemberFunction_to_stringISA_EE5valueEEEEE5valueENS6_12basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEE4typeEOSA_
Line
Count
Source
219
8.21k
ToString(T&& value) {
220
8.21k
  std::ostringstream out;
221
8.21k
  out << value;
222
8.21k
  return out.str();
223
8.21k
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_17StronglyTypedBoolINS_6client12SealOnly_TagEEEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENSA_IXntoooooooooosr13IsPointerLikeISB_EE5valuesr3std11is_integralINS7_16remove_referenceISB_E4typeEEE5valuesr3std17is_floating_pointISF_EE5valuesr12IsCollectionISB_EE5valuesr26HasMemberFunction_ToStringISB_EE5valuesr27HasMemberFunction_to_stringISB_EE5valueEEEEE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOSB_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_18YBConsistencyLevelEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_10WaitPolicyEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRNS_10WaitPolicyEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS6_IXntoooooooooosr13IsPointerLikeIS7_EE5valuesr3std11is_integralINS3_16remove_referenceIS7_E4typeEEE5valuesr3std17is_floating_pointISB_EE5valuesr12IsCollectionIS7_EE5valuesr26HasMemberFunction_ToStringIS7_EE5valuesr27HasMemberFunction_to_stringIS7_EE5valueEEEEE5valueENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEE4typeEOS7_
Unexecuted instantiation: _ZN2yb8ToStringIRNS_5docdb9DirectionEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_17PgsqlExpressionPB8ExprCaseEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_5docdb10ExpiryModeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRNS_5docdb19ResolvedIntentStateEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKN5boost6none_tEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_19RedisWriteRequestPB11RequestCaseEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_18RedisReadRequestPB11RequestCaseEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS8_IXntoooooooooosr13IsPointerLikeIS9_EE5valuesr3std11is_integralINS5_16remove_referenceIS9_E4typeEEE5valuesr3std17is_floating_pointISD_EE5valuesr12IsCollectionIS9_EE5valuesr26HasMemberFunction_ToStringIS9_EE5valuesr27HasMemberFunction_to_stringIS9_EE5valueEEEEE5valueENS5_12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEE4typeEOS9_
Unexecuted instantiation: _ZN2yb8ToStringIRNS_5docdb7KeyTypeEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRKNS_17StronglyTypedBoolINS_6pggate15RequestSent_TagEEEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENSA_IXntoooooooooosr13IsPointerLikeISB_EE5valuesr3std11is_integralINS7_16remove_referenceISB_E4typeEEE5valuesr3std17is_floating_pointISF_EE5valuesr12IsCollectionISB_EE5valuesr26HasMemberFunction_ToStringISB_EE5valuesr27HasMemberFunction_to_stringISB_EE5valueEEEEE5valueENS7_12basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEE4typeEOSB_
Unexecuted instantiation: _ZN2yb8ToStringIRNS_6pggate16PgIsolationLevelEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
Unexecuted instantiation: _ZN2yb8ToStringIRNS_3rpc13TransferStateEEENSt3__19enable_ifIXsr5boost3mpl4and_IN4mpl_5bool_IXsr11yb_tostring22SupportsOutputToStreamIT_EE5valueEEENS7_IXntoooooooooosr13IsPointerLikeIS8_EE5valuesr3std11is_integralINS4_16remove_referenceIS8_E4typeEEE5valuesr3std17is_floating_pointISC_EE5valuesr12IsCollectionIS8_EE5valuesr26HasMemberFunction_ToStringIS8_EE5valuesr27HasMemberFunction_to_stringIS8_EE5valueEEEEE5valueENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEE4typeEOS8_
224
225
// Definition of functions that use ToString chaining should be declared after all declarations.
226
template <class Pointer>
227
template <class P>
228
1.42M
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
1.42M
  if (ptr) {
230
335k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
335k
    buffer[0] = '0';
232
335k
    buffer[1] = 'x';
233
335k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
335k
    char* end = buffer + strlen(buffer);
235
335k
    memcpy(end, " -> ", 5);
236
335k
    return buffer + ToString(*ptr);
237
1.08M
  } else {
238
1.08M
    return "<NULL>";
239
1.08M
  }
240
1.42M
}
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_10HybridTimeEE5ApplyIRKS2_EENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_3rpc12OutboundDataEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_6client11YBqlWriteOpEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110unique_ptrINS_5itest14TServerDetailsENS1_14default_deleteIS4_EEEEE5ApplyIRKS7_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_9consensus12ReplicateMsgEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_10MemTrackerEEEE5ApplyIRKS4_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringIPNSt3__16vectorIiNS1_9allocatorIiEEEEE5ApplyIRKS6_EENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEOT_
Line
Count
Source
228
1
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
1
  if (ptr) {
230
1
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
1
    buffer[0] = '0';
232
1
    buffer[1] = 'x';
233
1
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
1
    char* end = buffer + strlen(buffer);
235
1
    memcpy(end, " -> ", 5);
236
1
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
1
}
_ZN2yb15PointerToStringIPNSt3__15dequeIiNS1_9allocatorIiEEEEE5ApplyIRKS6_EENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEOT_
Line
Count
Source
228
1
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
1
  if (ptr) {
230
1
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
1
    buffer[0] = '0';
232
1
    buffer[1] = 'x';
233
1
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
1
    char* end = buffer + strlen(buffer);
235
1
    memcpy(end, " -> ", 5);
236
1
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
1
}
_ZN2yb15PointerToStringIPNSt3__14listIiNS1_9allocatorIiEEEEE5ApplyIRKS6_EENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEOT_
Line
Count
Source
228
1
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
1
  if (ptr) {
230
1
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
1
    buffer[0] = '0';
232
1
    buffer[1] = 'x';
233
1
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
1
    char* end = buffer + strlen(buffer);
235
1
    memcpy(end, " -> ", 5);
236
1
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
1
}
_ZN2yb15PointerToStringIPiE5ApplyIRKS1_EENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEOT_
Line
Count
Source
228
2
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
2
  if (ptr) {
230
1
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
1
    buffer[0] = '0';
232
1
    buffer[1] = 'x';
233
1
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
1
    char* end = buffer + strlen(buffer);
235
1
    memcpy(end, " -> ", 5);
236
1
    return buffer + ToString(*ptr);
237
1
  } else {
238
1
    return "<NULL>";
239
1
  }
240
2
}
_ZN2yb15PointerToStringINSt3__110unique_ptrIiNS1_14default_deleteIiEEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Line
Count
Source
228
1
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
1
  if (ptr) {
230
1
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
1
    buffer[0] = '0';
232
1
    buffer[1] = 'x';
233
1
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
1
    char* end = buffer + strlen(buffer);
235
1
    memcpy(end, " -> ", 5);
236
1
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
1
}
_ZN2yb15PointerToStringINSt3__110shared_ptrIiEEE5ApplyIRKS3_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Line
Count
Source
228
1
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
1
  if (ptr) {
230
1
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
1
    buffer[0] = '0';
232
1
    buffer[1] = 'x';
233
1
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
1
    char* end = buffer + strlen(buffer);
235
1
    memcpy(end, " -> ", 5);
236
1
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
1
}
_ZN2yb15PointerToStringI13scoped_refptrINS_9util_test12ToStringableEEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
3
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
3
  if (ptr) {
230
2
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
2
    buffer[0] = '0';
232
2
    buffer[1] = 'x';
233
2
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
2
    char* end = buffer + strlen(buffer);
235
2
    memcpy(end, " -> ", 5);
236
2
    return buffer + ToString(*ptr);
237
1
  } else {
238
1
    return "<NULL>";
239
1
  }
240
3
}
_ZN2yb15PointerToStringI13scoped_refptrINS_9util_test17ToStringableChildEEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
1
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
1
  if (ptr) {
230
1
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
1
    buffer[0] = '0';
232
1
    buffer[1] = 'x';
233
1
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
1
    char* end = buffer + strlen(buffer);
235
1
    memcpy(end, " -> ", 5);
236
1
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
1
}
_ZN2yb15PointerToStringI13scoped_refptrINS_9util_test12ToStringableEEE5ApplyIRS4_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Line
Count
Source
228
1
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
1
  if (ptr) {
230
1
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
1
    buffer[0] = '0';
232
1
    buffer[1] = 'x';
233
1
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
1
    char* end = buffer + strlen(buffer);
235
1
    memcpy(end, " -> ", 5);
236
1
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
1
}
_ZN2yb15PointerToStringINS_16TrackedSharedPtrINS_7TestObjEEEE5ApplyIRKS3_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Line
Count
Source
228
3
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
3
  if (ptr) {
230
3
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
3
    buffer[0] = '0';
232
3
    buffer[1] = 'x';
233
3
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
3
    char* end = buffer + strlen(buffer);
235
3
    memcpy(end, " -> ", 5);
236
3
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
3
}
_ZN2yb15PointerToStringIPNS_7TestObjEE5ApplyIRS2_EENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEOT_
Line
Count
Source
228
5
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
5
  if (ptr) {
230
5
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
5
    buffer[0] = '0';
232
5
    buffer[1] = 'x';
233
5
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
5
    char* end = buffer + strlen(buffer);
235
5
    memcpy(end, " -> ", 5);
236
5
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
5
}
Unexecuted instantiation: _ZN2yb15PointerToStringI13scoped_refptrINS_9consensus14ConsensusRoundEEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringINSt3__110shared_ptrINS_6master12TSDescriptorEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Line
Count
Source
228
11.3k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
11.3k
  if (ptr) {
230
11.3k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
11.3k
    buffer[0] = '0';
232
11.3k
    buffer[1] = 'x';
233
11.3k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
11.3k
    char* end = buffer + strlen(buffer);
235
11.3k
    memcpy(end, " -> ", 5);
236
11.3k
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
11.3k
}
_ZN2yb15PointerToStringI13scoped_refptrINS_6master10TabletInfoEEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
212k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
212k
  if (ptr) {
230
212k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
212k
    buffer[0] = '0';
232
212k
    buffer[1] = 'x';
233
212k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
212k
    char* end = buffer + strlen(buffer);
235
212k
    memcpy(end, " -> ", 5);
236
212k
    return buffer + ToString(*ptr);
237
18.4E
  } else {
238
18.4E
    return "<NULL>";
239
18.4E
  }
240
212k
}
_ZN2yb15PointerToStringI13scoped_refptrINS_6master9TableInfoEEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
452
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
452
  if (ptr) {
230
452
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
452
    buffer[0] = '0';
232
452
    buffer[1] = 'x';
233
452
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
452
    char* end = buffer + strlen(buffer);
235
452
    memcpy(end, " -> ", 5);
236
452
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
452
}
_ZN2yb15PointerToStringI13scoped_refptrINS_6master10TabletInfoEEE5ApplyIRS4_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Line
Count
Source
228
1
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
1
  if (ptr) {
230
1
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
1
    buffer[0] = '0';
232
1
    buffer[1] = 'x';
233
1
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
1
    char* end = buffer + strlen(buffer);
235
1
    memcpy(end, " -> ", 5);
236
1
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
1
}
_ZN2yb15PointerToStringI13scoped_refptrINS_6master9TableInfoEEE5ApplyIRS4_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Line
Count
Source
228
25.3k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
25.3k
  if (ptr) {
230
25.3k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
25.3k
    buffer[0] = '0';
232
25.3k
    buffer[1] = 'x';
233
25.3k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
25.3k
    char* end = buffer + strlen(buffer);
235
25.3k
    memcpy(end, " -> ", 5);
236
25.3k
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
25.3k
}
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_6master10TabletInfoEE5ApplyIRS3_EENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_9consensus16ConsensusStatePBEE5ApplyIRS3_EENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringIPNS_6master12TSDescriptorEE5ApplyIRS3_EENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEOT_
Line
Count
Source
228
67.0k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
67.0k
  if (ptr) {
230
38.3k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
38.3k
    buffer[0] = '0';
232
38.3k
    buffer[1] = 'x';
233
38.3k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
38.3k
    char* end = buffer + strlen(buffer);
235
38.3k
    memcpy(end, " -> ", 5);
236
38.3k
    return buffer + ToString(*ptr);
237
28.6k
  } else {
238
28.6k
    return "<NULL>";
239
28.6k
  }
240
67.0k
}
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_6server13MonitoredTaskEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPKNS_6master23CreateSnapshotRequestPBEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE5ApplyIRS9_EES7_OT_
_ZN2yb15PointerToStringIPN7rocksdb12FileMetaDataEE5ApplyIRKS3_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Line
Count
Source
228
5
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
5
  if (ptr) {
230
5
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
5
    buffer[0] = '0';
232
5
    buffer[1] = 'x';
233
5
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
5
    char* end = buffer + strlen(buffer);
235
5
    memcpy(end, " -> ", 5);
236
5
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
5
}
_ZN2yb15PointerToStringIPN7rocksdb6DBImpl14CompactionTaskEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
96
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
96
  if (ptr) {
230
96
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
96
    buffer[0] = '0';
232
96
    buffer[1] = 'x';
233
96
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
96
    char* end = buffer + strlen(buffer);
235
96
    memcpy(end, " -> ", 5);
236
96
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
96
}
Unexecuted instantiation: _ZN2yb15PointerToStringIPN7rocksdb6DBImpl14CompactionTaskEE5ApplyIRS4_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringINS_9clone_ptrIN7rocksdb12UserFrontierEEEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
600
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
600
  if (ptr) {
230
174
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
174
    buffer[0] = '0';
232
174
    buffer[1] = 'x';
233
174
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
174
    char* end = buffer + strlen(buffer);
235
174
    memcpy(end, " -> ", 5);
236
174
    return buffer + ToString(*ptr);
237
426
  } else {
238
426
    return "<NULL>";
239
426
  }
240
600
}
_ZN2yb15PointerToStringINS_9clone_ptrIN7rocksdb12UserFrontierEEEE5ApplyIRS4_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Line
Count
Source
228
342k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
342k
  if (ptr) {
230
2.62k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
2.62k
    buffer[0] = '0';
232
2.62k
    buffer[1] = 'x';
233
2.62k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
2.62k
    char* end = buffer + strlen(buffer);
235
2.62k
    memcpy(end, " -> ", 5);
236
2.62k
    return buffer + ToString(*ptr);
237
339k
  } else {
238
339k
    return "<NULL>";
239
339k
  }
240
342k
}
Unexecuted instantiation: _ZN2yb15PointerToStringIPN7rocksdb12UserFrontierEE5ApplyIRS3_EENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIN5boost8optionalIRKNS_9QLValuePBEEEE5ApplyIRKS6_EENSt3__112basic_stringIcNSB_11char_traitsIcEENSB_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110unique_ptrINS_3log10LogEntryPBENS1_14default_deleteIS4_EEEEE5ApplyIRKS7_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringIPNS_6tablet18UpdateTxnOperationEE5ApplyIRKS3_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Line
Count
Source
228
716k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
716k
  if (ptr) {
230
0
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
0
    buffer[0] = '0';
232
0
    buffer[1] = 'x';
233
0
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
0
    char* end = buffer + strlen(buffer);
235
0
    memcpy(end, " -> ", 5);
236
0
    return buffer + ToString(*ptr);
237
716k
  } else {
238
716k
    return "<NULL>";
239
716k
  }
240
716k
}
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110unique_ptrINS_6tablet18UpdateTxnOperationENS1_14default_deleteIS4_EEEEE5ApplyIRKS7_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_6tablet18UpdateTxnOperationEE5ApplyIRS3_EENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringIPKNS_5docdb21ApplyTransactionStateEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
4
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
4
  if (ptr) {
230
0
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
0
    buffer[0] = '0';
232
0
    buffer[1] = 'x';
233
0
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
0
    char* end = buffer + strlen(buffer);
235
0
    memcpy(end, " -> ", 5);
236
0
    return buffer + ToString(*ptr);
237
4
  } else {
238
4
    return "<NULL>";
239
4
  }
240
4
}
_ZN2yb15PointerToStringIPKNS_6tablet9OperationEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
2.59k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
2.59k
  if (ptr) {
230
2.59k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
2.59k
    buffer[0] = '0';
232
2.59k
    buffer[1] = 'x';
233
2.59k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
2.59k
    char* end = buffer + strlen(buffer);
235
2.59k
    memcpy(end, " -> ", 5);
236
2.59k
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
2.59k
}
_ZN2yb15PointerToStringIPKNS_9consensus14ConsensusRoundEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
4
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
4
  if (ptr) {
230
4
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
4
    buffer[0] = '0';
232
4
    buffer[1] = 'x';
233
4
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
4
    char* end = buffer + strlen(buffer);
235
4
    memcpy(end, " -> ", 5);
236
4
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
4
}
_ZN2yb15PointerToStringIPKNS_6SchemaEE5ApplyIRKS3_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Line
Count
Source
228
2.59k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
2.59k
  if (ptr) {
230
2.59k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
2.59k
    buffer[0] = '0';
232
2.59k
    buffer[1] = 'x';
233
2.59k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
2.59k
    char* end = buffer + strlen(buffer);
235
2.59k
    memcpy(end, " -> ", 5);
236
2.59k
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
2.59k
}
_ZN2yb15PointerToStringIPKNS_6tablet23ChangeMetadataRequestPBEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
2.59k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
2.59k
  if (ptr) {
230
2.59k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
2.59k
    buffer[0] = '0';
232
2.59k
    buffer[1] = 'x';
233
2.59k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
2.59k
    char* end = buffer + strlen(buffer);
235
2.59k
    memcpy(end, " -> ", 5);
236
2.59k
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
2.59k
}
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_6tablet15OperationDriverEE5ApplyIRS3_EENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_6tablet9TableInfoEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_6tablet9TableInfoEEEE5ApplyIRS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_6tablet15OperationDriverEE5ApplyIRKS3_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPKNS_7tserver14WriteRequestPBEE5ApplyIRS4_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_12QLResponsePBEE5ApplyIRS2_EENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_6client11YBqlWriteOpEEEE5ApplyIRS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringINSt3__110shared_ptrIKNS1_6vectorINS3_INS_8HostPortENS1_9allocatorIS4_EEEENS5_IS7_EEEEEEE5ApplyIRSB_EENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEOT_
Line
Count
Source
228
135
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
135
  if (ptr) {
230
135
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
135
    buffer[0] = '0';
232
135
    buffer[1] = 'x';
233
135
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
135
    char* end = buffer + strlen(buffer);
235
135
    memcpy(end, " -> ", 5);
236
135
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
135
}
_ZN2yb15PointerToStringINSt3__110shared_ptrIKNS1_6vectorINS3_INS_8HostPortENS1_9allocatorIS4_EEEENS5_IS7_EEEEEEE5ApplyIRKSB_EENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEOT_
Line
Count
Source
228
1.98k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
1.98k
  if (ptr) {
230
1.98k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
1.98k
    buffer[0] = '0';
232
1.98k
    buffer[1] = 'x';
233
1.98k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
1.98k
    char* end = buffer + strlen(buffer);
235
1.98k
    memcpy(end, " -> ", 5);
236
1.98k
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
1.98k
}
_ZN2yb15PointerToStringINSt3__110shared_ptrINS1_6vectorINS3_INS_8HostPortENS1_9allocatorIS4_EEEENS5_IS7_EEEEEEE5ApplyIRSA_EENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEOT_
Line
Count
Source
228
135
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
135
  if (ptr) {
230
135
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
135
    buffer[0] = '0';
232
135
    buffer[1] = 'x';
233
135
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
135
    char* end = buffer + strlen(buffer);
235
135
    memcpy(end, " -> ", 5);
236
135
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
135
}
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_8IndexMapEEEE5ApplyIRKS4_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_9consensus18StateChangeContextEEEE5ApplyIRS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_6client9YBRedisOpEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: redis_service.cc:_ZN2yb15PointerToStringIPNS_11redisserver12_GLOBAL__N_19OperationEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Unexecuted instantiation: redis_service.cc:_ZN2yb15PointerToStringINSt3__110shared_ptrINS_11redisserver12_GLOBAL__N_15BlockEEEE5ApplyIRKS6_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringINSt3__110shared_ptrINS_6client11YBOperationEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Line
Count
Source
228
5
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
5
  if (ptr) {
230
5
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
5
    buffer[0] = '0';
232
5
    buffer[1] = 'x';
233
5
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
5
    char* end = buffer + strlen(buffer);
235
5
    memcpy(end, " -> ", 5);
236
5
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
5
}
_ZN2yb15PointerToStringI13scoped_refptrINS_6client8internal12RemoteTabletEEE5ApplyIRKS5_EENSt3__112basic_stringIcNSA_11char_traitsIcEENSA_9allocatorIcEEEEOT_
Line
Count
Source
228
8.20k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
8.20k
  if (ptr) {
230
8.20k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
8.20k
    buffer[0] = '0';
232
8.20k
    buffer[1] = 'x';
233
8.20k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
8.20k
    char* end = buffer + strlen(buffer);
235
8.20k
    memcpy(end, " -> ", 5);
236
8.20k
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
8.20k
}
_ZN2yb15PointerToStringIPKNS_6client8internal19ClientMasterRpcBaseEE5ApplyIRS5_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
13.8k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
13.8k
  if (ptr) {
230
13.8k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
13.8k
    buffer[0] = '0';
232
13.8k
    buffer[1] = 'x';
233
13.8k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
13.8k
    char* end = buffer + strlen(buffer);
235
13.8k
    memcpy(end, " -> ", 5);
236
13.8k
    return buffer + ToString(*ptr);
237
18.4E
  } else {
238
18.4E
    return "<NULL>";
239
18.4E
  }
240
13.8k
}
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_6client8internal9LookupRpcEE5ApplyIRS4_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_6client8internal14LookupByKeyRpcEEEE5ApplyIRS6_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringI13scoped_refptrINS_6client8internal12RemoteTabletEEE5ApplyIRS5_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_6client8internal10LookupDataEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrIKNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEEE5ApplyIRKSA_EES8_OT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPKNS_15QLPagingStatePBEE5ApplyIRS3_EENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_6client8internal18RemoteTabletServerEE5ApplyIRS4_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringIPNS_6client8internal18RemoteTabletServerEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
2.08k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
2.08k
  if (ptr) {
230
2.08k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
2.08k
    buffer[0] = '0';
232
2.08k
    buffer[1] = 'x';
233
2.08k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
2.08k
    char* end = buffer + strlen(buffer);
235
2.08k
    memcpy(end, " -> ", 5);
236
2.08k
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
2.08k
}
Unexecuted instantiation: _ZN2yb15PointerToStringIPKNS_7tserver19TabletServerErrorPBEE5ApplyIRS4_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_6client13YBTransactionEEEE5ApplyIRS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPKNS_5docdb9KeyBoundsEE5ApplyIRS4_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110unique_ptrINS_5docdb12DocOperationENS1_14default_deleteIS4_EEEEE5ApplyIRKS7_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPKNS_5docdb13SliceKeyBoundEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_13DocHybridTimeEE5ApplyIRS2_EENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_5SliceEE5ApplyIRS2_EENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_5docdb16LockedBatchEntryEE5ApplyIRKS3_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
priority_thread_pool.cc:_ZN2yb15PointerToStringIPNS_12_GLOBAL__N_124PriorityThreadPoolWorkerEE5ApplyIRKS3_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Line
Count
Source
228
905
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
905
  if (ptr) {
230
765
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
765
    buffer[0] = '0';
232
765
    buffer[1] = 'x';
233
765
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
765
    char* end = buffer + strlen(buffer);
235
765
    memcpy(end, " -> ", 5);
236
765
    return buffer + ToString(*ptr);
237
140
  } else {
238
140
    return "<NULL>";
239
140
  }
240
905
}
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110unique_ptrINS_22PriorityThreadPoolTaskENS1_14default_deleteIS3_EEEEE5ApplyIRKS6_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringIPNS_10MemTrackerEE5ApplyIRS2_EENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEOT_
Line
Count
Source
228
11
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
11
  if (ptr) {
230
11
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
11
    buffer[0] = '0';
232
11
    buffer[1] = 'x';
233
11
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
11
    char* end = buffer + strlen(buffer);
235
11
    memcpy(end, " -> ", 5);
236
11
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
11
}
_ZN2yb15PointerToStringINSt3__110shared_ptrINS_3rpc12OutboundDataEEEE5ApplyIRS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Line
Count
Source
228
1
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
1
  if (ptr) {
230
1
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
1
    buffer[0] = '0';
232
1
    buffer[1] = 'x';
233
1
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
1
    char* end = buffer + strlen(buffer);
235
1
    memcpy(end, " -> ", 5);
236
1
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
1
}
_ZN2yb15PointerToStringIPKNS_3rpc11InboundCallEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
27
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
27
  if (ptr) {
230
27
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
27
    buffer[0] = '0';
232
27
    buffer[1] = 'x';
233
27
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
27
    char* end = buffer + strlen(buffer);
235
27
    memcpy(end, " -> ", 5);
236
27
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
27
}
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_3rpc11DelayedTaskEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPKNS_3rpc12OutboundCallEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringIPKNS_3rpc8ProtocolEE5ApplyIRKS4_EENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEOT_
Line
Count
Source
228
9.34k
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
9.34k
  if (ptr) {
230
9.34k
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
9.34k
    buffer[0] = '0';
232
9.34k
    buffer[1] = 'x';
233
9.34k
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
9.34k
    char* end = buffer + strlen(buffer);
235
9.34k
    memcpy(end, " -> ", 5);
236
9.34k
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
9.34k
}
_ZN2yb15PointerToStringINSt3__110shared_ptrINS_3rpc11ReactorTaskEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Line
Count
Source
228
2
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
2
  if (ptr) {
230
2
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
2
    buffer[0] = '0';
232
2
    buffer[1] = 'x';
233
2
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
2
    char* end = buffer + strlen(buffer);
235
2
    memcpy(end, " -> ", 5);
236
2
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
2
}
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_3rpc12OutboundCallEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringINSt3__110shared_ptrINS_3rpc10ConnectionEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Line
Count
Source
228
21
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
21
  if (ptr) {
230
21
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
21
    buffer[0] = '0';
232
21
    buffer[1] = 'x';
233
21
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
21
    char* end = buffer + strlen(buffer);
235
21
    memcpy(end, " -> ", 5);
236
21
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
21
}
_ZN2yb15PointerToStringIPNS_3rpc10RpcCommandEE5ApplyIRKS3_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
Line
Count
Source
228
84
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
84
  if (ptr) {
230
84
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
84
    buffer[0] = '0';
232
84
    buffer[1] = 'x';
233
84
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
84
    char* end = buffer + strlen(buffer);
235
84
    memcpy(end, " -> ", 5);
236
84
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
84
}
Unexecuted instantiation: _ZN2yb15PointerToStringINSt3__110shared_ptrINS_3rpc10RpcCommandEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Unexecuted instantiation: _ZN2yb15PointerToStringIPNS_3rpc11InboundCallEE5ApplyIRKS3_EENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEOT_
_ZN2yb15PointerToStringINSt3__110shared_ptrINS_5tools17YsckTabletReplicaEEEE5ApplyIRKS5_EENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEOT_
Line
Count
Source
228
8
std::string PointerToString<Pointer>::Apply(P&& ptr) {
229
8
  if (ptr) {
230
8
    char buffer[kFastToBufferSize]; // kFastToBufferSize has enough extra capacity for 0x and ->
231
8
    buffer[0] = '0';
232
8
    buffer[1] = 'x';
233
8
    FastHex64ToBuffer(reinterpret_cast<size_t>(&*ptr), buffer + 2);
234
8
    char* end = buffer + strlen(buffer);
235
8
    memcpy(end, " -> ", 5);
236
8
    return buffer + ToString(*ptr);
237
0
  } else {
238
0
    return "<NULL>";
239
0
  }
240
8
}
241
242
template <class First, class Second>
243
2.06M
std::string ToString(const std::pair<First, Second>& pair) {
244
2.06M
  return "{" + ToString(pair.first) + ", " + ToString(pair.second) + "}";
245
2.06M
}
Unexecuted instantiation: _ZN2yb8ToStringIRKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_EES7_RKNS1_4pairIT_T0_EE
Unexecuted instantiation: _ZN2yb8ToStringIKiiEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_4pairIT_T0_EE
Unexecuted instantiation: _ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10unique_ptrINS_5itest14TServerDetailsENS1_14default_deleteISB_EEEEEES7_RKNS1_4pairIT_T0_EE
_ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiEES7_RKNS1_4pairIT_T0_EE
Line
Count
Source
243
5
std::string ToString(const std::pair<First, Second>& pair) {
244
5
  return "{" + ToString(pair.first) + ", " + ToString(pair.second) + "}";
245
5
}
Unexecuted instantiation: _ZN2yb8ToStringINSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_EES7_RKNS1_4pairIT_T0_EE
_ZN2yb8ToStringIKiNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEES8_RKNS2_4pairIT_T0_EE
Line
Count
Source
243
24
std::string ToString(const std::pair<First, Second>& pair) {
244
24
  return "{" + ToString(pair.first) + ", " + ToString(pair.second) + "}";
245
24
}
Unexecuted instantiation: _ZN2yb8ToStringIKhiEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_4pairIT_T0_EE
_ZN2yb8ToStringINSt3__16vectorIiNS1_9allocatorIiEEEENS1_5dequeIiS4_EEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKNS1_4pairIT_T0_EE
Line
Count
Source
243
1
std::string ToString(const std::pair<First, Second>& pair) {
244
1
  return "{" + ToString(pair.first) + ", " + ToString(pair.second) + "}";
245
1
}
_ZN2yb8ToStringIiNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEES7_RKNS1_4pairIT_T0_EE
Line
Count
Source
243
18
std::string ToString(const std::pair<First, Second>& pair) {
244
18
  return "{" + ToString(pair.first) + ", " + ToString(pair.second) + "}";
245
18
}
_ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_16IndexPermissionsEEES7_RKNS1_4pairIT_T0_EE
Line
Count
Source
243
433
std::string ToString(const std::pair<First, Second>& pair) {
244
433
  return "{" + ToString(pair.first) + ", " + ToString(pair.second) + "}";
245
433
}
_ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master13TabletReplicaEEES7_RKNS1_4pairIT_T0_EE
Line
Count
Source
243
323k
std::string ToString(const std::pair<First, Second>& pair) {
244
323k
  return "{" + ToString(pair.first) + ", " + ToString(pair.second) + "}";
245
323k
}
Unexecuted instantiation: _ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE13scoped_refptrINS_6master9TableInfoEEEES7_RKNS1_4pairIT_T0_EE
Unexecuted instantiation: _ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_8MonoTimeEEES7_RKNS1_4pairIT_T0_EE
_ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10shared_ptrINS_6master12TSDescriptorEEEEES7_RKNS1_4pairIT_T0_EE
Line
Count
Source
243
11.3k
std::string ToString(const std::pair<First, Second>& pair) {
244
11.3k
  return "{" + ToString(pair.first) + ", " + ToString(pair.second) + "}";
245
11.3k
}
Unexecuted instantiation: _ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master15SysRowEntryTypeEEES7_RKNS1_4pairIT_T0_EE
Unexecuted instantiation: _ZN2yb8ToStringIKNS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEENS_10HybridTimeEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKNS6_4pairIT_T0_EE
Unexecuted instantiation: _ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master19SysNamespaceEntryPBEEES7_RKNS1_4pairIT_T0_EE
_ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES7_EES7_RKNS1_4pairIT_T0_EE
Line
Count
Source
243
989k
std::string ToString(const std::pair<First, Second>& pair) {
244
989k
  return "{" + ToString(pair.first) + ", " + ToString(pair.second) + "}";
245
989k
}
Unexecuted instantiation: _ZN2yb8ToStringIKxNS_6tablet5EntryEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEERKNS4_4pairIT_T0_EE
transaction_coordinator.cc:_ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6tablet12_GLOBAL__N_116TransactionState19InvolvedTabletStateEEES7_RKNS1_4pairIT_T0_EE
Line
Count
Source
243
737k
std::string ToString(const std::pair<First, Second>& pair) {
244
737k
  return "{" + ToString(pair.first) + ", " + ToString(pair.second) + "}";
245
737k
}
Unexecuted instantiation: _ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_5dequeINS_17StronglyTypedUuidINS_17TransactionId_TagEEENS5_ISC_EEEEEES7_RKNS1_4pairIT_T0_EE
Unexecuted instantiation: _ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10shared_ptrINS_6tablet9TableInfoEEEEES7_RKNS1_4pairIT_T0_EE
Unexecuted instantiation: _ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_9IndexInfoEEES7_RKNS1_4pairIT_T0_EE
Unexecuted instantiation: redis_service.cc:_ZN2yb8ToStringIKNS_5SliceENS_11redisserver12_GLOBAL__N_116TabletOperationsEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKNS6_4pairIT_T0_EE
_ZN2yb8ToStringIKPNS_6client8internal18RemoteTabletServerENS2_13TabletInvoker12FollowerDataEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEERKNS8_4pairIT_T0_EE
Line
Count
Source
243
1.49k
std::string ToString(const std::pair<First, Second>& pair) {
244
1.49k
  return "{" + ToString(pair.first) + ", " + ToString(pair.second) + "}";
245
1.49k
}
Unexecuted instantiation: _ZN2yb8ToStringIKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6client13YBTransaction4Impl11TabletStateEEES7_RKNS1_4pairIT_T0_EE
Unexecuted instantiation: _ZN2yb8ToStringIK12GStringPiecemEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKNS3_4pairIT_T0_EE
Unexecuted instantiation: conflict_resolution.cc:_ZN2yb8ToStringIKNS_17StronglyTypedUuidINS_17TransactionId_TagEEENS_5docdb12_GLOBAL__N_123TransactionConflictInfoEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEERKNS8_4pairIT_T0_EE
Unexecuted instantiation: conflict_resolution.cc:_ZN2yb8ToStringIKNS_10ByteBufferILm64EEENS_5docdb12_GLOBAL__N_110IntentDataEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKNS7_4pairIT_T0_EE
Unexecuted instantiation: _ZN2yb8ToStringIKNS_12RefCntPrefixEPNS_5docdb16LockedBatchEntryEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKNS6_4pairIT_T0_EE
Unexecuted instantiation: _ZN2yb8ToStringIKxNSt3__110shared_ptrINS_3rpc11DelayedTaskEEEEENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_4pairIT_T0_EE
Unexecuted instantiation: _ZN2yb8ToStringIKyPNS_3rpc11InboundCallEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKNS5_4pairIT_T0_EE
246
247
template<class Tuple, size_t index, bool exist>
248
class TupleToString {
249
 public:
250
0
  static void Apply(const Tuple& tuple, std::string* out) {
251
0
    if (index) {
252
0
      *out += ", ";
253
0
    }
254
0
    *out += ToString(std::get<index>(tuple));
255
0
    TupleToString<Tuple, index + 1, (index + 1 < std::tuple_size<Tuple>::value)>::Apply(tuple, out);
256
0
  }
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceEEEELm0ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_EEELm0ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_EEELm1ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_EEELm0ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_EEELm1ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_EEELm2ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_EEELm0ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_EEELm1ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_EEELm2ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_EEELm3ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_EEELm0ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_EEELm1ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_EEELm2ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_EEELm3ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_EEELm4ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_EEELm0ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_EEELm1ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_EEELm2ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_EEELm3ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_EEELm4ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_EEELm5ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_EEELm0ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_EEELm1ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_EEELm2ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_EEELm3ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_EEELm4ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_EEELm5ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_EEELm6ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_EEELm0ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_EEELm1ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_EEELm2ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_EEELm3ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_EEELm4ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_EEELm5ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_EEELm6ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_EEELm7ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_EEELm0ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_EEELm1ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_EEELm2ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_EEELm3ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_EEELm4ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_EEELm5ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_EEELm6ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_EEELm7ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_EEELm8ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm0ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm1ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm2ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm3ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm4ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm5ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm6ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm7ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm8ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm9ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm0ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm1ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm2ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm3ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm4ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm5ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm6ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm7ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm8ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm9ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm10ELb1EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
257
};
258
259
template<class Tuple, size_t index>
260
class TupleToString<Tuple, index, false> {
261
 public:
262
0
  static void Apply(const Tuple& tuple, std::string* out) {}
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceEEEELm1ELb0EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_EEELm2ELb0EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_EEELm3ELb0EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_EEELm4ELb0EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_EEELm5ELb0EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_EEELm6ELb0EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_EEELm7ELb0EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_EEELm8ELb0EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_EEELm9ELb0EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm10ELb0EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
Unexecuted instantiation: _ZN2yb13TupleToStringINSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEELm11ELb0EE5ApplyERKS4_PNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE
263
};
264
265
template <class... Args>
266
0
std::string ToString(const std::tuple<Args...>& tuple) {
267
0
  typedef std::tuple<Args...> Tuple;
268
0
  std::string result = "{";
269
0
  TupleToString<Tuple, 0, (0 < std::tuple_size<Tuple>::value)>::Apply(tuple, &result);
270
0
  result += "}";
271
0
  return result;
272
0
}
Unexecuted instantiation: _ZN2yb8ToStringIJNS_5SliceEEEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_5tupleIJDpT_EEE
Unexecuted instantiation: _ZN2yb8ToStringIJNS_5SliceES1_EEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_5tupleIJDpT_EEE
Unexecuted instantiation: _ZN2yb8ToStringIJNS_5SliceES1_S1_EEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_5tupleIJDpT_EEE
Unexecuted instantiation: _ZN2yb8ToStringIJNS_5SliceES1_S1_S1_EEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_5tupleIJDpT_EEE
Unexecuted instantiation: _ZN2yb8ToStringIJNS_5SliceES1_S1_S1_S1_EEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_5tupleIJDpT_EEE
Unexecuted instantiation: _ZN2yb8ToStringIJNS_5SliceES1_S1_S1_S1_S1_EEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_5tupleIJDpT_EEE
Unexecuted instantiation: _ZN2yb8ToStringIJNS_5SliceES1_S1_S1_S1_S1_S1_EEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_5tupleIJDpT_EEE
Unexecuted instantiation: _ZN2yb8ToStringIJNS_5SliceES1_S1_S1_S1_S1_S1_S1_EEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_5tupleIJDpT_EEE
Unexecuted instantiation: _ZN2yb8ToStringIJNS_5SliceES1_S1_S1_S1_S1_S1_S1_S1_EEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_5tupleIJDpT_EEE
Unexecuted instantiation: _ZN2yb8ToStringIJNS_5SliceES1_S1_S1_S1_S1_S1_S1_S1_S1_EEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_5tupleIJDpT_EEE
Unexecuted instantiation: _ZN2yb8ToStringIJNS_5SliceES1_S1_S1_S1_S1_S1_S1_S1_S1_S1_EEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKNS2_5tupleIJDpT_EEE
273
274
template<class Rep, class Period>
275
15.3k
std::string ToString(const std::chrono::duration<Rep, Period>& duration) {
276
15.3k
  int64_t milliseconds = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
277
15.3k
  int64_t seconds = milliseconds / 1000;
278
15.3k
  milliseconds -= seconds * 1000;
279
15.3k
  return StringPrintf("%" PRId64 ".%03" PRId64 "s", seconds, milliseconds);
280
15.3k
}
_ZN2yb8ToStringIxNSt3__15ratioILl1ELl1000000000EEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS1_6chrono8durationIT_T0_EE
Line
Count
Source
275
15.3k
std::string ToString(const std::chrono::duration<Rep, Period>& duration) {
276
15.3k
  int64_t milliseconds = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
277
15.3k
  int64_t seconds = milliseconds / 1000;
278
15.3k
  milliseconds -= seconds * 1000;
279
15.3k
  return StringPrintf("%" PRId64 ".%03" PRId64 "s", seconds, milliseconds);
280
15.3k
}
_ZN2yb8ToStringIxNSt3__15ratioILl1ELl1000EEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS1_6chrono8durationIT_T0_EE
Line
Count
Source
275
1
std::string ToString(const std::chrono::duration<Rep, Period>& duration) {
276
1
  int64_t milliseconds = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
277
1
  int64_t seconds = milliseconds / 1000;
278
1
  milliseconds -= seconds * 1000;
279
1
  return StringPrintf("%" PRId64 ".%03" PRId64 "s", seconds, milliseconds);
280
1
}
_ZN2yb8ToStringIxNSt3__15ratioILl1ELl1EEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKNS1_6chrono8durationIT_T0_EE
Line
Count
Source
275
1
std::string ToString(const std::chrono::duration<Rep, Period>& duration) {
276
1
  int64_t milliseconds = std::chrono::duration_cast<std::chrono::milliseconds>(duration).count();
277
1
  int64_t seconds = milliseconds / 1000;
278
1
  milliseconds -= seconds * 1000;
279
1
  return StringPrintf("%" PRId64 ".%03" PRId64 "s", seconds, milliseconds);
280
1
}
281
282
std::string ToString(const std::chrono::steady_clock::time_point& time_point);
283
std::string ToString(const std::chrono::system_clock::time_point& time_point);
284
285
struct Identity {
286
  template <class T>
287
18.0M
  const T& operator()(const T& t) const {
288
18.0M
    return t;
289
18.0M
  }
_ZNK2yb8IdentityclINSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEERKT_SB_
Line
Count
Source
287
215k
  const T& operator()(const T& t) const {
288
215k
    return t;
289
215k
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINS_19TransactionLoadFlagEEERKT_S5_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_6client11YBTableNameEEERKT_S6_
_ZNK2yb8IdentityclImEERKT_S4_
Line
Count
Source
287
51
  const T& operator()(const T& t) const {
288
51
    return t;
289
51
  }
_ZNK2yb8IdentityclINS_4OpIdEEERKT_S5_
Line
Count
Source
287
6
  const T& operator()(const T& t) const {
288
6
    return t;
289
6
  }
_ZNK2yb8IdentityclIiEERKT_S4_
Line
Count
Source
287
634
  const T& operator()(const T& t) const {
288
634
    return t;
289
634
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__16atomicImEEEERKT_S7_
Unexecuted instantiation: _ZNK2yb8IdentityclIN7rocksdb16LiveFileMetaDataEEERKT_S6_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKiiEEEERKT_S8_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_6master22SnapshotScheduleInfoPBEEERKT_S6_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEEEERKT_S7_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_5docdb9SubDocKeyEEERKT_S6_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_5docdb15CollectedIntentEEERKT_S6_
Unexecuted instantiation: doc_operation-test.cc:_ZNK2yb8IdentityclINS_5docdb12_GLOBAL__N_113RowDataWithHtEEERKT_S7_
_ZNK2yb8IdentityclINS_5docdb10IntentTypeEEERKT_S6_
Line
Count
Source
287
188
  const T& operator()(const T& t) const {
288
188
    return t;
289
188
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINS_9MonoDeltaEEERKT_S5_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_10unique_ptrINS_5itest14TServerDetailsENS2_14default_deleteISD_EEEEEEEERKT_SK_
_ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEiEEEERKT_SE_
Line
Count
Source
287
5
  const T& operator()(const T& t) const {
288
5
    return t;
289
5
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINS_9pgwrapper14IndexStateFlagEEERKT_S6_
Unexecuted instantiation: pg_on_conflict-test.cc:_ZNK2yb8IdentityclINS_9pgwrapper12_GLOBAL__N_19BatchInfoEEERKT_S7_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_11redisserver10RedisReplyEEERKT_S6_
_ZNK2yb8IdentityclIyEERKT_S4_
Line
Count
Source
287
1.40M
  const T& operator()(const T& t) const {
288
1.40M
    return t;
289
1.40M
  }
_ZNK2yb8IdentityclIjEERKT_S4_
Line
Count
Source
287
220
  const T& operator()(const T& t) const {
288
220
    return t;
289
220
  }
_ZNK2yb8IdentityclINS_8rpc_test23LightweightSubMessagePBEEERKT_S6_
Line
Count
Source
287
40
  const T& operator()(const T& t) const {
288
40
    return t;
289
40
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairINS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES9_EEEERKT_SD_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__110shared_ptrINS_9consensus12ReplicateMsgEEEEERKT_S9_
_ZNK2yb8IdentityclIxEERKT_S4_
Line
Count
Source
287
87
  const T& operator()(const T& t) const {
288
87
    return t;
289
87
  }
_ZNK2yb8IdentityclINS_8HostPortEEERKT_S5_
Line
Count
Source
287
14.0M
  const T& operator()(const T& t) const {
288
14.0M
    return t;
289
14.0M
  }
_ZNK2yb8IdentityclINS_6tablet14SnapshotFilePBEEERKT_S6_
Line
Count
Source
287
60
  const T& operator()(const T& t) const {
288
60
    return t;
289
60
  }
_ZNK2yb8IdentityclINSt3__14pairIKiNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEEEERKT_SE_
Line
Count
Source
287
24
  const T& operator()(const T& t) const {
288
24
    return t;
289
24
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__110shared_ptrINS_10MemTrackerEEEEERKT_S8_
_ZNK2yb8IdentityclIN5boost4asio2ip7addressEEERKT_S8_
Line
Count
Source
287
1.04k
  const T& operator()(const T& t) const {
288
1.04k
    return t;
289
1.04k
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKhiEEEERKT_S8_
_ZNK2yb8IdentityclINSt3__14pairIiNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEEEEERKT_SD_
Line
Count
Source
287
18
  const T& operator()(const T& t) const {
288
18
    return t;
289
18
  }
_ZNK2yb8IdentityclI13scoped_refptrINS_9util_test12ToStringableEEEERKT_S8_
Line
Count
Source
287
2
  const T& operator()(const T& t) const {
288
2
    return t;
289
2
  }
_ZNK2yb8IdentityclINS_9util_test24ToStringableNonIntrusiveEEERKT_S6_
Line
Count
Source
287
2
  const T& operator()(const T& t) const {
288
2
    return t;
289
2
  }
_ZNK2yb8IdentityclINS_9util_test10OutputableEEERKT_S6_
Line
Count
Source
287
2
  const T& operator()(const T& t) const {
288
2
    return t;
289
2
  }
_ZNK2yb8IdentityclIN5boost5uuids4uuidEEERKT_S7_
Line
Count
Source
287
1
  const T& operator()(const T& t) const {
288
1
    return t;
289
1
  }
_ZNK2yb8IdentityclINS_10HostPortPBEEERKT_S5_
Line
Count
Source
287
227k
  const T& operator()(const T& t) const {
288
227k
    return t;
289
227k
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINS_9consensus12ReplicateMsgEEERKT_S6_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__16chrono10time_pointINS_15CoarseMonoClockENS3_8durationIxNS2_5ratioILl1ELl1000000000EEEEEEEEERKT_SD_
Unexecuted instantiation: _ZNK2yb8IdentityclI13scoped_refptrINS_9consensus14ConsensusRoundEEEERKT_S8_
Unexecuted instantiation: retryable_requests.cc:_ZNK2yb8IdentityclINS_9consensus12_GLOBAL__N_123RunningRetryableRequestEEERKT_S7_
Unexecuted instantiation: retryable_requests.cc:_ZNK2yb8IdentityclINS_9consensus12_GLOBAL__N_131ReplicatedRetryableRequestRangeEEERKT_S7_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__110shared_ptrINS_6master12TSDescriptorEEEEERKT_S9_
_ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_16IndexPermissionsEEEEERKT_SF_
Line
Count
Source
287
433
  const T& operator()(const T& t) const {
288
433
    return t;
289
433
  }
_ZNK2yb8IdentityclINS_11IndexInfoPBEEERKT_S5_
Line
Count
Source
287
465
  const T& operator()(const T& t) const {
288
465
    return t;
289
465
  }
_ZNK2yb8IdentityclI13scoped_refptrINS_6master10TabletInfoEEEERKT_S8_
Line
Count
Source
287
50.7k
  const T& operator()(const T& t) const {
288
50.7k
    return t;
289
50.7k
  }
_ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_6master13TabletReplicaEEEEERKT_SG_
Line
Count
Source
287
323k
  const T& operator()(const T& t) const {
288
323k
    return t;
289
323k
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__110shared_ptrINS_6server13MonitoredTaskEEEEERKT_S9_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE13scoped_refptrINS_6master9TableInfoEEEEEERKT_SI_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_11CloudInfoPBEEERKT_S5_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_8MonoTimeEEEEERKT_SF_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_6master23TabletSnapshotOperationEEERKT_S6_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_5docdb14PrimitiveValueEEERKT_S6_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_6master16StateWithTablets10TabletDataEEERKT_S7_
_ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_10shared_ptrINS_6master12TSDescriptorEEEEEEERKT_SI_
Line
Count
Source
287
11.3k
  const T& operator()(const T& t) const {
288
11.3k
    return t;
289
11.3k
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINS_8ColumnIdEEERKT_S5_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_6master15SysRowEntryTypeEEEEERKT_SG_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKNS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEENS_10HybridTimeEEEEERKT_SC_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_6master19SysNamespaceEntryPBEEEEERKT_SG_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_6master14SnapshotInfoPBEEERKT_S6_
_ZNK2yb8IdentityclIhEERKT_S4_
Line
Count
Source
287
48
  const T& operator()(const T& t) const {
288
48
    return t;
289
48
  }
_ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEES9_EEEERKT_SE_
Line
Count
Source
287
984k
  const T& operator()(const T& t) const {
288
984k
    return t;
289
984k
  }
_ZNK2yb8IdentityclIPN7rocksdb6DBImpl14CompactionTaskEEERKT_S8_
Line
Count
Source
287
96
  const T& operator()(const T& t) const {
288
96
    return t;
289
96
  }
Unexecuted instantiation: _ZNK2yb8IdentityclIN5boost4asio2ip14basic_endpointINS4_3tcpEEEEERKT_SA_
_ZNK2yb8IdentityclINS_9IndexInfoEEERKT_S5_
Line
Count
Source
287
235
  const T& operator()(const T& t) const {
288
235
    return t;
289
235
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKxNS_6tablet5EntryEEEEERKT_SA_
transaction_coordinator.cc:_ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_6tablet12_GLOBAL__N_116TransactionState19InvolvedTabletStateEEEEERKT_SI_
Line
Count
Source
287
737k
  const T& operator()(const T& t) const {
288
737k
    return t;
289
737k
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__110unique_ptrINS_6tablet18UpdateTxnOperationENS2_14default_deleteIS5_EEEEEERKT_SB_
Unexecuted instantiation: transaction_coordinator.cc:_ZNK2yb8IdentityclINS_6tablet12_GLOBAL__N_121ExpectedTabletBatchesEEERKT_S7_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_17StronglyTypedUuidINS_17TransactionId_TagEEEEERKT_S7_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_5dequeINS_17StronglyTypedUuidINS_17TransactionId_TagEEENS7_ISE_EEEEEEEERKT_SK_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_6tablet11MvccManager9QueueItemEEERKT_S7_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS2_10shared_ptrINS_6tablet9TableInfoEEEEEEERKT_SI_
Unexecuted instantiation: _ZNK2yb8IdentityclIPNS_6tablet15OperationDriverEEERKT_S7_
_ZNK2yb8IdentityclINSt3__16vectorINS_8HostPortENS2_9allocatorIS4_EEEEEERKT_SA_
Line
Count
Source
287
4.53k
  const T& operator()(const T& t) const {
288
4.53k
    return t;
289
4.53k
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINS_6StatusEEERKT_S5_
_ZNK2yb8IdentityclINS_6tablet6FilePBEEERKT_S6_
Line
Count
Source
287
4.38k
  const T& operator()(const T& t) const {
288
4.38k
    return t;
289
4.38k
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_9IndexInfoEEEEERKT_SF_
_ZNK2yb8IdentityclINS_2ql10CQLMessage5ValueEEERKT_S7_
Line
Count
Source
287
220
  const T& operator()(const T& t) const {
288
220
    return t;
289
220
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINS_5SliceEEERKT_S5_
Unexecuted instantiation: redis_service.cc:_ZNK2yb8IdentityclIPNS_11redisserver12_GLOBAL__N_19OperationEEERKT_S8_
Unexecuted instantiation: redis_service.cc:_ZNK2yb8IdentityclINSt3__14pairIKNS_5SliceENS_11redisserver12_GLOBAL__N_116TabletOperationsEEEEERKT_SC_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_6client8internal10InFlightOpEEERKT_S7_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_6master17TabletLocationsPBEEERKT_S6_
Unexecuted instantiation: _ZNK2yb8IdentityclIPNS_6client8internal10LookupDataEEERKT_S8_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_5QLRowEEERKT_S5_
_ZNK2yb8IdentityclIPNS_6client8internal18RemoteTabletServerEEERKT_S8_
Line
Count
Source
287
596
  const T& operator()(const T& t) const {
288
596
    return t;
289
596
  }
_ZNK2yb8IdentityclINSt3__14pairIKPNS_6client8internal18RemoteTabletServerENS5_13TabletInvoker12FollowerDataEEEEERKT_SE_
Line
Count
Source
287
1.49k
  const T& operator()(const T& t) const {
288
1.49k
    return t;
289
1.49k
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINS_6client8internal16InFlightOpsGroupEEERKT_S7_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKNS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEENS_6client13YBTransaction4Impl11TabletStateEEEEERKT_SI_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIK12GStringPiecemEEEERKT_S9_
Unexecuted instantiation: conflict_resolution.cc:_ZNK2yb8IdentityclINSt3__14pairIKNS_17StronglyTypedUuidINS_17TransactionId_TagEEENS_5docdb12_GLOBAL__N_123TransactionConflictInfoEEEEERKT_SE_
Unexecuted instantiation: conflict_resolution.cc:_ZNK2yb8IdentityclINSt3__14pairIKNS_10ByteBufferILm64EEENS_5docdb12_GLOBAL__N_110IntentDataEEEEERKT_SD_
_ZNK2yb8IdentityclINS_5docdb14LockBatchEntryEEERKT_S6_
Line
Count
Source
287
95
  const T& operator()(const T& t) const {
288
95
    return t;
289
95
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__110unique_ptrINS_5docdb12DocOperationENS2_14default_deleteIS5_EEEEEERKT_SB_
Unexecuted instantiation: _ZNK2yb8IdentityclINS_5docdb14KeyValuePairPBEEERKT_S6_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKNS_12RefCntPrefixEPNS_5docdb16LockedBatchEntryEEEEERKT_SC_
priority_thread_pool.cc:_ZNK2yb8IdentityclINS_12_GLOBAL__N_130PriorityThreadPoolInternalTaskEEERKT_S6_
Line
Count
Source
287
6
  const T& operator()(const T& t) const {
288
6
    return t;
289
6
  }
priority_thread_pool.cc:_ZNK2yb8IdentityclINS_12_GLOBAL__N_124PriorityThreadPoolWorkerEEERKT_S6_
Line
Count
Source
287
5
  const T& operator()(const T& t) const {
288
5
    return t;
289
5
  }
Unexecuted instantiation: priority_thread_pool.cc:_ZNK2yb8IdentityclIPNS_12_GLOBAL__N_124PriorityThreadPoolWorkerEEERKT_S7_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__110unique_ptrINS_22PriorityThreadPoolTaskENS2_14default_deleteIS4_EEEEEERKT_SA_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKxNS2_10shared_ptrINS_3rpc11DelayedTaskEEEEEEERKT_SC_
_ZNK2yb8IdentityclINSt3__110shared_ptrINS_3rpc11ReactorTaskEEEEERKT_S9_
Line
Count
Source
287
2
  const T& operator()(const T& t) const {
288
2
    return t;
289
2
  }
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__110shared_ptrINS_3rpc12OutboundCallEEEEERKT_S9_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__110shared_ptrINS_3rpc10ConnectionEEEEERKT_S9_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__110shared_ptrINS_3rpc10RpcCommandEEEEERKT_S9_
Unexecuted instantiation: _ZNK2yb8IdentityclINSt3__14pairIKyPNS_3rpc11InboundCallEEEEERKT_SB_
_ZNK2yb8IdentityclINSt3__110shared_ptrINS_5tools17YsckTabletReplicaEEEEERKT_S9_
Line
Count
Source
287
8
  const T& operator()(const T& t) const {
288
8
    return t;
289
8
  }
290
};
291
292
template <class Collection>
293
17.4M
std::string CollectionToString(const Collection& collection) {
294
17.4M
  return CollectionToString(collection, Identity());
295
17.4M
}
_ZN2yb18CollectionToStringINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEES8_RKT_
Line
Count
Source
293
37.3k
std::string CollectionToString(const Collection& collection) {
294
37.3k
  return CollectionToString(collection, Identity());
295
37.3k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINS_10EnumBitSetINS_19TransactionLoadFlagEEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_6client11YBTableNameENS1_9allocatorIS4_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorImNS1_9allocatorImEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_
Line
Count
Source
293
11
std::string CollectionToString(const Collection& collection) {
294
11
  return CollectionToString(collection, Identity());
295
11
}
_ZN2yb18CollectionToStringINSt3__16vectorINS_4OpIdENS1_9allocatorIS3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_
Line
Count
Source
293
3
std::string CollectionToString(const Collection& collection) {
294
3
  return CollectionToString(collection, Identity());
295
3
}
_ZN2yb18CollectionToStringINSt3__16vectorIiNS1_9allocatorIiEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_
Line
Count
Source
293
8.21k
std::string CollectionToString(const Collection& collection) {
294
8.21k
  return CollectionToString(collection, Identity());
295
8.21k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15arrayINS1_6atomicImEELm20EEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorIN7rocksdb16LiveFileMetaDataENS1_9allocatorIS4_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13mapIiiNS1_4lessIiEENS1_9allocatorINS1_4pairIKiiEEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_6master22SnapshotScheduleInfoPBEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_setINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEEN5boost4hashIS5_EENS1_8equal_toIS5_EENS1_9allocatorIS5_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15arrayIiLm4EEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container12small_vectorImLm8EvvEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13setINS_5docdb9SubDocKeyENS1_4lessIS4_EENS1_9allocatorIS4_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_5docdb9SubDocKeyENS1_9allocatorIS4_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_5docdb15CollectedIntentENS1_9allocatorIS4_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
Unexecuted instantiation: doc_operation-test.cc:_ZN2yb18CollectionToStringINSt3__16vectorINS_5docdb12_GLOBAL__N_113RowDataWithHtENS1_9allocatorIS5_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_
_ZN2yb18CollectionToStringINS_10EnumBitSetINS_5docdb10IntentTypeEEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKT_
Line
Count
Source
293
96
std::string CollectionToString(const Collection& collection) {
294
96
  return CollectionToString(collection, Identity());
295
96
}
_ZN2yb18CollectionToStringIN5boost14iterator_rangeINSt3__111__wrap_iterIPNS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEEEEESA_RKT_
Line
Count
Source
293
3
std::string CollectionToString(const Collection& collection) {
294
3
  return CollectionToString(collection, Identity());
295
3
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_9MonoDeltaENS1_9allocatorIS3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10unique_ptrINS_5itest14TServerDetailsENS1_14default_deleteISB_EEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SE_EEEEEEEES8_RKT_
_ZN2yb18CollectionToStringINSt3__113unordered_setINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_IS8_EEEEEES8_RKT_
Line
Count
Source
293
22
std::string CollectionToString(const Collection& collection) {
294
22
  return CollectionToString(collection, Identity());
295
22
}
_ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiNS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_iEEEEEEEES8_RKT_
Line
Count
Source
293
5
std::string CollectionToString(const Collection& collection) {
294
5
  return CollectionToString(collection, Identity());
295
5
}
_ZN2yb18CollectionToStringINSt3__13setINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4lessIS8_EENS6_IS8_EEEEEES8_RKT_
Line
Count
Source
293
16.0k
std::string CollectionToString(const Collection& collection) {
294
16.0k
  return CollectionToString(collection, Identity());
295
16.0k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINS_10EnumBitSetINS_9pgwrapper14IndexStateFlagEEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKT_
Unexecuted instantiation: pg_on_conflict-test.cc:_ZN2yb18CollectionToStringINS_9pgwrapper12_GLOBAL__N_115TransactionInfoEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_11redisserver10RedisReplyENS1_9allocatorIS4_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorIyNS1_9allocatorIyEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_
Line
Count
Source
293
96.3k
std::string CollectionToString(const Collection& collection) {
294
96.3k
  return CollectionToString(collection, Identity());
295
96.3k
}
_ZN2yb18CollectionToStringINSt3__13setIyNS1_4lessIyEENS1_9allocatorIyEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
Line
Count
Source
293
96.3k
std::string CollectionToString(const Collection& collection) {
294
96.3k
  return CollectionToString(collection, Identity());
295
96.3k
}
_ZN2yb18CollectionToStringINSt3__16vectorIjNS1_9allocatorIjEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_
Line
Count
Source
293
3
std::string CollectionToString(const Collection& collection) {
294
3
  return CollectionToString(collection, Identity());
295
3
}
_ZN2yb18CollectionToStringIN6google8protobuf13RepeatedFieldIjEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKT_
Line
Count
Source
293
8
std::string CollectionToString(const Collection& collection) {
294
8
  return CollectionToString(collection, Identity());
295
8
}
_ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEEEESA_RKT_
Line
Count
Source
293
6
std::string CollectionToString(const Collection& collection) {
294
6
  return CollectionToString(collection, Identity());
295
6
}
_ZN2yb18CollectionToStringIN6google8protobuf13RepeatedFieldIiEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKT_
Line
Count
Source
293
2
std::string CollectionToString(const Collection& collection) {
294
2
  return CollectionToString(collection, Identity());
295
2
}
_ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_8rpc_test23LightweightSubMessagePBEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_
Line
Count
Source
293
8
std::string CollectionToString(const Collection& collection) {
294
8
  return CollectionToString(collection, Identity());
295
8
}
_ZN2yb18CollectionToStringIN6google8protobuf13RepeatedFieldIyEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKT_
Line
Count
Source
293
1.43k
std::string CollectionToString(const Collection& collection) {
294
1.43k
  return CollectionToString(collection, Identity());
295
1.43k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS1_4pairINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_EENS7_ISA_EEEEEES9_RKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS1_10shared_ptrINS_9consensus12ReplicateMsgEEENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13setINS_4OpIdENS1_4lessIS3_EENS1_9allocatorIS3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINS_11RangeObjectImEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_
_ZN2yb18CollectionToStringINSt3__13setIiNS1_4lessIiEENS1_9allocatorIiEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
Line
Count
Source
293
80
std::string CollectionToString(const Collection& collection) {
294
80
  return CollectionToString(collection, Identity());
295
80
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13setIxNS1_4lessIxEENS1_9allocatorIxEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINS_20ContainerRangeObjectINS_11RangeObjectImEENSt3__16vectorIiNS4_9allocatorIiEEEEEEEENS4_12basic_stringIcNS4_11char_traitsIcEENS6_IcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorINS_8HostPortENS1_9allocatorIS3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_
Line
Count
Source
293
3.47M
std::string CollectionToString(const Collection& collection) {
294
3.47M
  return CollectionToString(collection, Identity());
295
3.47M
}
_ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_6tablet14SnapshotFilePBEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_
Line
Count
Source
293
1.43k
std::string CollectionToString(const Collection& collection) {
294
1.43k
  return CollectionToString(collection, Identity());
295
1.43k
}
_ZN2yb18CollectionToStringINSt3__113unordered_mapIiNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4hashIiEENS1_8equal_toIiEENS6_INS1_4pairIKiS8_EEEEEEEES8_RKT_
Line
Count
Source
293
7
std::string CollectionToString(const Collection& collection) {
294
7
  return CollectionToString(collection, Identity());
295
7
}
_ZN2yb18CollectionToStringINS_8LRUCacheIiEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_
Line
Count
Source
293
2
std::string CollectionToString(const Collection& collection) {
294
2
  return CollectionToString(collection, Identity());
295
2
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS1_10shared_ptrINS_10MemTrackerEEENS1_9allocatorIS5_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorIN5boost4asio2ip7addressENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Line
Count
Source
293
3
std::string CollectionToString(const Collection& collection) {
294
3
  return CollectionToString(collection, Identity());
295
3
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13mapIhiNS1_4lessIhEENS1_9allocatorINS1_4pairIKhiEEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
_ZN2yb18CollectionToStringINSt3__15dequeIiNS1_9allocatorIiEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_
Line
Count
Source
293
3
std::string CollectionToString(const Collection& collection) {
294
3
  return CollectionToString(collection, Identity());
295
3
}
_ZN2yb18CollectionToStringINSt3__14listIiNS1_9allocatorIiEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_
Line
Count
Source
293
2
std::string CollectionToString(const Collection& collection) {
294
2
  return CollectionToString(collection, Identity());
295
2
}
_ZN2yb18CollectionToStringINSt3__13mapIiNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4lessIiEENS6_INS1_4pairIKiS8_EEEEEEEES8_RKT_
Line
Count
Source
293
1
std::string CollectionToString(const Collection& collection) {
294
1
  return CollectionToString(collection, Identity());
295
1
}
_ZN2yb18CollectionToStringINSt3__16vectorINS1_4pairIiNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS7_ISA_EEEEEES9_RKT_
Line
Count
Source
293
6
std::string CollectionToString(const Collection& collection) {
294
6
  return CollectionToString(collection, Identity());
295
6
}
_ZN2yb18CollectionToStringINSt3__16vectorI13scoped_refptrINS_9util_test12ToStringableEENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Line
Count
Source
293
1
std::string CollectionToString(const Collection& collection) {
294
1
  return CollectionToString(collection, Identity());
295
1
}
_ZN2yb18CollectionToStringINSt3__16vectorINS_9util_test24ToStringableNonIntrusiveENS1_9allocatorIS4_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
Line
Count
Source
293
1
std::string CollectionToString(const Collection& collection) {
294
1
  return CollectionToString(collection, Identity());
295
1
}
_ZN2yb18CollectionToStringINSt3__16vectorINS_9util_test10OutputableENS1_9allocatorIS4_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
Line
Count
Source
293
1
std::string CollectionToString(const Collection& collection) {
294
1
  return CollectionToString(collection, Identity());
295
1
}
_ZN2yb18CollectionToStringINSt3__16vectorIN5boost5uuids4uuidENS1_9allocatorIS5_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_
Line
Count
Source
293
1
std::string CollectionToString(const Collection& collection) {
294
1
  return CollectionToString(collection, Identity());
295
1
}
_ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_10HostPortPBEEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKT_
Line
Count
Source
293
274k
std::string CollectionToString(const Collection& collection) {
294
274k
  return CollectionToString(collection, Identity());
295
274k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_9consensus12ReplicateMsgEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container12small_vectorINSt3__16chrono10time_pointINS_15CoarseMonoClockENS5_8durationIxNS4_5ratioILl1ELl1000000000EEEEEEELm5EvvEEEENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEERKT_
_ZN2yb18CollectionToStringIN5boost9container12small_vectorIyLm5EvvEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKT_
Line
Count
Source
293
1
std::string CollectionToString(const Collection& collection) {
294
1
  return CollectionToString(collection, Identity());
295
1
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container12small_vectorINS_4OpIdELm5EvvEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15dequeI13scoped_refptrINS_9consensus14ConsensusRoundEENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Unexecuted instantiation: retryable_requests.cc:_ZN2yb18CollectionToStringIN5boost11multi_index6detail12hashed_indexINS2_6memberINS_9consensus12_GLOBAL__N_123RunningRetryableRequestExXadL_ZNS8_10request_idEEEEENS1_4hashIxEENSt3__18equal_toIxEENS3_9nth_layerILi1ES8_NS2_10indexed_byINS2_13hashed_uniqueINS2_3tagINS7_14RequestIdIndexEN4mpl_2naESL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_EES9_SL_SL_EESL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_EENSC_9allocatorIS8_EEEENS1_3mpl6v_itemISJ_NSS_7vector0ISL_EELi0EEENS3_17hashed_unique_tagEEEEENSC_12basic_stringIcNSC_11char_traitsIcEENSP_IcEEEERKT_
Unexecuted instantiation: retryable_requests.cc:_ZN2yb18CollectionToStringIN5boost11multi_index21multi_index_containerINS_9consensus12_GLOBAL__N_131ReplicatedRetryableRequestRangeENS2_10indexed_byINS2_14ordered_uniqueINS2_3tagINS5_11LastIdIndexEN4mpl_2naESC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_EENS2_6memberIS6_xXadL_ZNS6_7last_idEEEEESC_EENS8_INS9_INS5_9OpIdIndexESC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_EENSE_IS6_NS_4OpIdEXadL_ZNS6_9min_op_idEEEEESC_EESC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_EENSt3__19allocatorIS6_EEEEEENSN_12basic_stringIcNSN_11char_traitsIcEENSO_IcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorINS1_10shared_ptrINS_6master12TSDescriptorEEENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Line
Count
Source
293
70
std::string CollectionToString(const Collection& collection) {
294
70
  return CollectionToString(collection, Identity());
295
70
}
_ZN2yb18CollectionToStringINSt3__16vectorIxNS1_9allocatorIxEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_
Line
Count
Source
293
41
std::string CollectionToString(const Collection& collection) {
294
41
  return CollectionToString(collection, Identity());
295
41
}
_ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_16IndexPermissionsENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_S9_EEEEEEEES8_RKT_
Line
Count
Source
293
422
std::string CollectionToString(const Collection& collection) {
294
422
  return CollectionToString(collection, Identity());
295
422
}
_ZN2yb18CollectionToStringINSt3__16vectorINS_11IndexInfoPBENS1_9allocatorIS3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_
Line
Count
Source
293
453
std::string CollectionToString(const Collection& collection) {
294
453
  return CollectionToString(collection, Identity());
295
453
}
_ZN2yb18CollectionToStringINSt3__16vectorI13scoped_refptrINS_6master10TabletInfoEENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Line
Count
Source
293
50.7k
std::string CollectionToString(const Collection& collection) {
294
50.7k
  return CollectionToString(collection, Identity());
295
50.7k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_11IndexInfoPBEEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15arrayINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEELm2EEEEES8_RKT_
_ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master13TabletReplicaENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SA_EEEEEEEES8_RKT_
Line
Count
Source
293
11.2M
std::string CollectionToString(const Collection& collection) {
294
11.2M
  return CollectionToString(collection, Identity());
295
11.2M
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_setINS1_10shared_ptrINS_6server13MonitoredTaskEEENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE13scoped_refptrINS_6master9TableInfoEENS1_4lessIS8_EENS6_INS1_4pairIKS8_SC_EEEEEEEES8_RKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_setINS_11CloudInfoPBENS_6master10cloud_hashENS4_14cloud_equal_toENS1_9allocatorIS3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_8MonoTimeENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_S9_EEEEEEEES8_RKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_6master23TabletSnapshotOperationENS1_9allocatorIS4_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorINS_5docdb14PrimitiveValueENS1_9allocatorIS4_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
Line
Count
Source
293
1
std::string CollectionToString(const Collection& collection) {
294
1
  return CollectionToString(collection, Identity());
295
1
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost11multi_index21multi_index_containerINS_6master16StateWithTablets10TabletDataENS2_10indexed_byINS2_13hashed_uniqueINS2_6memberIS6_NSt3__112basic_stringIcNSA_11char_traitsIcEENSA_9allocatorIcEEEEXadL_ZNS6_2idEEEEEN4mpl_2naESJ_SJ_EENS2_18ordered_non_uniqueINS2_3tagINS5_10RunningTagESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENS9_IS6_bXadL_ZNS6_7runningEEEEESJ_EESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENSE_IS6_EEEEEESG_RKT_
_ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10shared_ptrINS_6master12TSDescriptorEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEEEES8_RKT_
Line
Count
Source
293
5.53k
std::string CollectionToString(const Collection& collection) {
294
5.53k
  return CollectionToString(collection, Identity());
295
5.53k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_8ColumnIdENS1_9allocatorIS3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master15SysRowEntryTypeENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SA_EEEEEEEES8_RKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEENS_10HybridTimeEN5boost4hashIS5_EENS1_8equal_toIS5_EENS1_9allocatorINS1_4pairIKS5_S6_EEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSC_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master19SysNamespaceEntryPBENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SA_EEEEEEEES8_RKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_6master14SnapshotInfoPBEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_
_ZN2yb18CollectionToStringIN5boost5uuids4uuidEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEERKT_
Line
Count
Source
293
3
std::string CollectionToString(const Collection& collection) {
294
3
  return CollectionToString(collection, Identity());
295
3
}
_ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES8_NS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_S8_EEEEEEEES8_RKT_
Line
Count
Source
293
656k
std::string CollectionToString(const Collection& collection) {
294
656k
  return CollectionToString(collection, Identity());
295
656k
}
_ZN2yb18CollectionToStringINSt3__113unordered_setIPN7rocksdb6DBImpl14CompactionTaskENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEERKT_
Line
Count
Source
293
1.69k
std::string CollectionToString(const Collection& collection) {
294
1.69k
  return CollectionToString(collection, Identity());
295
1.69k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container12small_vectorIyLm1EvvEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__118unordered_multisetIyNS1_4hashIyEENS1_8equal_toIyEENS1_9allocatorIyEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorIN5boost4asio2ip14basic_endpointINS5_3tcpEEENS1_9allocatorIS8_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS9_IcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorINS_9IndexInfoENS1_9allocatorIS3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_
Line
Count
Source
293
235
std::string CollectionToString(const Collection& collection) {
294
235
  return CollectionToString(collection, Identity());
295
235
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13mapIxNS_6tablet5EntryENS1_4lessIxEENS1_9allocatorINS1_4pairIKxS4_EEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
transaction_coordinator.cc:_ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6tablet12_GLOBAL__N_116TransactionState19InvolvedTabletStateENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEEEES8_RKT_
Line
Count
Source
293
716k
std::string CollectionToString(const Collection& collection) {
294
716k
  return CollectionToString(collection, Identity());
295
716k
}
_ZN2yb18CollectionToStringINSt3__15dequeINS1_10unique_ptrINS_6tablet18UpdateTxnOperationENS1_14default_deleteIS5_EEEENS1_9allocatorIS8_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS9_IcEEEERKT_
Line
Count
Source
293
716k
std::string CollectionToString(const Collection& collection) {
294
716k
  return CollectionToString(collection, Identity());
295
716k
}
Unexecuted instantiation: transaction_coordinator.cc:_ZN2yb18CollectionToStringINSt3__16vectorINS_6tablet12_GLOBAL__N_121ExpectedTabletBatchesENS1_9allocatorIS5_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15dequeIxNS1_9allocatorIxEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_5dequeINS_17StronglyTypedUuidINS_17TransactionId_TagEEENS6_ISC_EEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SE_EEEEEEEES8_RKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15dequeINS_17StronglyTypedUuidINS_17TransactionId_TagEEENS1_9allocatorIS5_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15dequeINS_6tablet11MvccManager9QueueItemENS1_9allocatorIS5_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10shared_ptrINS_6tablet9TableInfoEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEEEES8_RKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEENS1_9allocatorIS5_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost14iterator_rangeINSt3__111__wrap_iterIPPNS_6tablet15OperationDriverEEEEEEENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorINS2_INS_8HostPortENS1_9allocatorIS3_EEEENS4_IS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_
Line
Count
Source
293
2.25k
std::string CollectionToString(const Collection& collection) {
294
2.25k
  return CollectionToString(collection, Identity());
295
2.25k
}
_ZN2yb18CollectionToStringIN5boost14iterator_rangeINSt3__121__tree_const_iteratorINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS3_11__tree_nodeISA_PvEElEEEEEESA_RKT_
Line
Count
Source
293
18.5k
std::string CollectionToString(const Collection& collection) {
294
18.5k
  return CollectionToString(collection, Identity());
295
18.5k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_6StatusENS1_9allocatorIS3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_
_ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_6tablet6FilePBEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_
Line
Count
Source
293
1.43k
std::string CollectionToString(const Collection& collection) {
294
1.43k
  return CollectionToString(collection, Identity());
295
1.43k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINS_8IndexMapEEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorINS_2ql10CQLMessage5ValueENS1_9allocatorIS5_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_
Line
Count
Source
293
110
std::string CollectionToString(const Collection& collection) {
294
110
  return CollectionToString(collection, Identity());
295
110
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container12small_vectorINS_5SliceELm8EvvEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKT_
Unexecuted instantiation: redis_service.cc:_ZN2yb18CollectionToStringINSt3__16vectorIPNS_11redisserver12_GLOBAL__N_19OperationENS_8internal18ArenaAllocatorBaseIS6_NS7_11ArenaTraitsEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_setINS_5SliceENS3_4HashENS1_8equal_toIS3_EENS_8internal18ArenaAllocatorBaseIS3_NS7_11ArenaTraitsEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKT_
Unexecuted instantiation: redis_service.cc:_ZN2yb18CollectionToStringINSt3__113unordered_mapINS_5SliceENS_11redisserver12_GLOBAL__N_116TabletOperationsENS3_4HashENS1_8equal_toIS3_EENS_8internal18ArenaAllocatorBaseINS1_4pairIKS3_S6_EENSA_11ArenaTraitsEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost14iterator_rangeINSt3__111__wrap_iterIPNS_6client8internal10InFlightOpEEEEEEENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_6master17TabletLocationsPBEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorIPNS_6client8internal10LookupDataENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_5QLRowENS1_9allocatorIS3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorIPNS_6client8internal18RemoteTabletServerENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Line
Count
Source
293
576
std::string CollectionToString(const Collection& collection) {
294
576
  return CollectionToString(collection, Identity());
295
576
}
_ZN2yb18CollectionToStringINSt3__113unordered_mapIPNS_6client8internal18RemoteTabletServerENS4_13TabletInvoker12FollowerDataENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorINS1_4pairIKS6_S8_EEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSD_IcEEEERKT_
Line
Count
Source
293
576
std::string CollectionToString(const Collection& collection) {
294
576
  return CollectionToString(collection, Identity());
295
576
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container12small_vectorINS_6client8internal16InFlightOpsGroupELm40EvvEEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6client13YBTransaction4Impl11TabletStateENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEEEES8_RKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapI12GStringPiecemNS1_4hashIS3_EENS1_8equal_toIS3_EENS_20STLCountingAllocatorINS1_4pairIKS3_mEENS1_9allocatorISB_EEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSC_IcEEEERKT_
Unexecuted instantiation: conflict_resolution.cc:_ZN2yb18CollectionToStringINSt3__113unordered_mapINS_17StronglyTypedUuidINS_17TransactionId_TagEEENS_5docdb12_GLOBAL__N_123TransactionConflictInfoEN5boost4hashIS5_EENS1_8equal_toIS5_EENS1_9allocatorINS1_4pairIKS5_S8_EEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSE_IcEEEERKT_
Unexecuted instantiation: conflict_resolution.cc:_ZN2yb18CollectionToStringINSt3__13mapINS_10ByteBufferILm64EEENS_5docdb12_GLOBAL__N_110IntentDataENS1_4lessIS4_EENS1_9allocatorINS1_4pairIKS4_S7_EEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSA_IcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorINS_5docdb14LockBatchEntryENS1_9allocatorIS4_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_
Line
Count
Source
293
47
std::string CollectionToString(const Collection& collection) {
294
47
  return CollectionToString(collection, Identity());
295
47
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS1_10unique_ptrINS_5docdb12DocOperationENS1_14default_deleteIS5_EEEENS1_9allocatorIS8_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS9_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_5docdb14KeyValuePairPBEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS_12RefCntPrefixEPNS_5docdb16LockedBatchEntryENS_16RefCntPrefixHashENS1_8equal_toIS3_EENS1_9allocatorINS1_4pairIKS3_S6_EEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSA_IcEEEERKT_
priority_thread_pool.cc:_ZN2yb18CollectionToStringIN5boost11multi_index21multi_index_containerINS_12_GLOBAL__N_130PriorityThreadPoolInternalTaskENS2_10indexed_byINS2_13ranked_uniqueINS2_3tagINS_18PriorityThreadPool4Impl11PriorityTagEN4mpl_2naESD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_EENS2_8identityIS5_EENS4_22PriorityTaskComparatorEEENS2_14ordered_uniqueINS8_INSA_19StateAndPriorityTagESD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_EESG_NS4_30StateAndPriorityTaskComparatorEEENS2_13hashed_uniqueINS8_INSA_11SerialNoTagESD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_EENS2_13const_mem_funIS5_mXadL_ZNKS5_9serial_noEvEEEESD_SD_EESD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_EENSt3__19allocatorIS5_EEEEEENSV_12basic_stringIcNSV_11char_traitsIcEENSW_IcEEEERKT_
Line
Count
Source
293
1
std::string CollectionToString(const Collection& collection) {
294
1
  return CollectionToString(collection, Identity());
295
1
}
Unexecuted instantiation: priority_thread_pool.cc:_ZN2yb18CollectionToStringIN5boost9container13stable_vectorINS_12_GLOBAL__N_124PriorityThreadPoolWorkerEvEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_
priority_thread_pool.cc:_ZN2yb18CollectionToStringINSt3__16vectorIPNS_12_GLOBAL__N_124PriorityThreadPoolWorkerENS1_9allocatorIS5_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_
Line
Count
Source
293
1
std::string CollectionToString(const Collection& collection) {
294
1
  return CollectionToString(collection, Identity());
295
1
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS1_10unique_ptrINS_22PriorityThreadPoolTaskENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS8_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapIxNS1_10shared_ptrINS_3rpc11DelayedTaskEEENS1_4hashIxEENS1_8equal_toIxEENS1_9allocatorINS1_4pairIKxS6_EEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorINS1_10shared_ptrINS_3rpc11ReactorTaskEEENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Line
Count
Source
293
2
std::string CollectionToString(const Collection& collection) {
294
2
  return CollectionToString(collection, Identity());
295
2
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS1_10shared_ptrINS_3rpc12OutboundCallEEENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_setINS1_10shared_ptrINS_3rpc10ConnectionEEENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container13stable_vectorINSt3__110shared_ptrINS_3rpc10RpcCommandEEEvEEEENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEERKT_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapIyPNS_3rpc11InboundCallENS1_4hashIyEENS1_8equal_toIyEENS1_9allocatorINS1_4pairIKyS5_EEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSA_IcEEEERKT_
_ZN2yb18CollectionToStringINSt3__16vectorINS1_10shared_ptrINS_5tools17YsckTabletReplicaEEENS1_9allocatorIS6_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_
Line
Count
Source
293
8
std::string CollectionToString(const Collection& collection) {
294
8
  return CollectionToString(collection, Identity());
295
8
}
296
297
template <class Collection, class Transform>
298
17.4M
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
17.4M
  std::string result = "[";
300
17.4M
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
17.4M
#if defined(__clang__)
307
17.4M
#pragma clang diagnostic push
308
17.4M
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
17.4M
#endif
310
18.0M
  for (const auto& item : collection) {
311
18.0M
    if (first) {
312
5.09M
      first = false;
313
12.9M
    } else {
314
12.9M
      result += ", ";
315
12.9M
    }
316
18.0M
    result += ToString(transform(item));
317
18.0M
  }
318
17.4M
#if defined(__clang__)
319
17.4M
#pragma clang diagnostic pop
320
17.4M
#endif
321
17.4M
  result += "]";
322
17.4M
  return result;
323
17.4M
}
_ZN2yb18CollectionToStringINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEENS_8IdentityEEES8_RKT_RKT0_
Line
Count
Source
298
37.3k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
37.3k
  std::string result = "[";
300
37.3k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
37.3k
#if defined(__clang__)
307
37.3k
#pragma clang diagnostic push
308
37.3k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
37.3k
#endif
310
58.6k
  for (const auto& item : collection) {
311
58.6k
    if (first) {
312
34.8k
      first = false;
313
23.8k
    } else {
314
23.8k
      result += ", ";
315
23.8k
    }
316
58.6k
    result += ToString(transform(item));
317
58.6k
  }
318
37.3k
#if defined(__clang__)
319
37.3k
#pragma clang diagnostic pop
320
37.3k
#endif
321
37.3k
  result += "]";
322
37.3k
  return result;
323
37.3k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINS_10EnumBitSetINS_19TransactionLoadFlagEEENS_8IdentityEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_6client11YBTableNameENS1_9allocatorIS4_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorImNS1_9allocatorImEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_RKT0_
Line
Count
Source
298
11
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
11
  std::string result = "[";
300
11
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
11
#if defined(__clang__)
307
11
#pragma clang diagnostic push
308
11
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
11
#endif
310
51
  for (const auto& item : collection) {
311
51
    if (first) {
312
11
      first = false;
313
40
    } else {
314
40
      result += ", ";
315
40
    }
316
51
    result += ToString(transform(item));
317
51
  }
318
11
#if defined(__clang__)
319
11
#pragma clang diagnostic pop
320
11
#endif
321
11
  result += "]";
322
11
  return result;
323
11
}
_ZN2yb18CollectionToStringINSt3__16vectorINS_4OpIdENS1_9allocatorIS3_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_RKT0_
Line
Count
Source
298
3
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
3
  std::string result = "[";
300
3
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
3
#if defined(__clang__)
307
3
#pragma clang diagnostic push
308
3
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
3
#endif
310
6
  for (const auto& item : collection) {
311
6
    if (first) {
312
2
      first = false;
313
4
    } else {
314
4
      result += ", ";
315
4
    }
316
6
    result += ToString(transform(item));
317
6
  }
318
3
#if defined(__clang__)
319
3
#pragma clang diagnostic pop
320
3
#endif
321
3
  result += "]";
322
3
  return result;
323
3
}
_ZN2yb18CollectionToStringINSt3__16vectorIiNS1_9allocatorIiEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_RKT0_
Line
Count
Source
298
8.21k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
8.21k
  std::string result = "[";
300
8.21k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
8.21k
#if defined(__clang__)
307
8.21k
#pragma clang diagnostic push
308
8.21k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
8.21k
#endif
310
136
  for (const auto& item : collection) {
311
136
    if (first) {
312
11
      first = false;
313
125
    } else {
314
125
      result += ", ";
315
125
    }
316
136
    result += ToString(transform(item));
317
136
  }
318
8.21k
#if defined(__clang__)
319
8.21k
#pragma clang diagnostic pop
320
8.21k
#endif
321
8.21k
  result += "]";
322
8.21k
  return result;
323
8.21k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15arrayINS1_6atomicImEELm20EEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorIN7rocksdb16LiveFileMetaDataENS1_9allocatorIS4_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13mapIiiNS1_4lessIiEENS1_9allocatorINS1_4pairIKiiEEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_6master22SnapshotScheduleInfoPBEEENS_8IdentityEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_setINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEEN5boost4hashIS5_EENS1_8equal_toIS5_EENS1_9allocatorIS5_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15arrayIiLm4EEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container12small_vectorImLm8EvvEENS_8IdentityEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13setINS_5docdb9SubDocKeyENS1_4lessIS4_EENS1_9allocatorIS4_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_5docdb9SubDocKeyENS1_9allocatorIS4_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_5docdb15CollectedIntentENS1_9allocatorIS4_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
Unexecuted instantiation: doc_operation-test.cc:_ZN2yb18CollectionToStringINSt3__16vectorINS_5docdb12_GLOBAL__N_113RowDataWithHtENS1_9allocatorIS5_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINS_10EnumBitSetINS_5docdb10IntentTypeEEENS_8IdentityEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKT_RKT0_
Line
Count
Source
298
96
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
96
  std::string result = "[";
300
96
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
96
#if defined(__clang__)
307
96
#pragma clang diagnostic push
308
96
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
96
#endif
310
188
  for (const auto& item : collection) {
311
188
    if (first) {
312
96
      first = false;
313
92
    } else {
314
92
      result += ", ";
315
92
    }
316
188
    result += ToString(transform(item));
317
188
  }
318
96
#if defined(__clang__)
319
96
#pragma clang diagnostic pop
320
96
#endif
321
96
  result += "]";
322
96
  return result;
323
96
}
_ZN2yb18CollectionToStringIN5boost14iterator_rangeINSt3__111__wrap_iterIPNS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEEENS_8IdentityEEESA_RKT_RKT0_
Line
Count
Source
298
3
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
3
  std::string result = "[";
300
3
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
3
#if defined(__clang__)
307
3
#pragma clang diagnostic push
308
3
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
3
#endif
310
5
  for (const auto& item : collection) {
311
5
    if (first) {
312
2
      first = false;
313
3
    } else {
314
3
      result += ", ";
315
3
    }
316
5
    result += ToString(transform(item));
317
5
  }
318
3
#if defined(__clang__)
319
3
#pragma clang diagnostic pop
320
3
#endif
321
3
  result += "]";
322
3
  return result;
323
3
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_9MonoDeltaENS1_9allocatorIS3_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10unique_ptrINS_5itest14TServerDetailsENS1_14default_deleteISB_EEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SE_EEEEEENS_8IdentityEEES8_RKT_RKT0_
_ZN2yb18CollectionToStringINSt3__113unordered_setINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_IS8_EEEENS_8IdentityEEES8_RKT_RKT0_
Line
Count
Source
298
22
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
22
  std::string result = "[";
300
22
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
22
#if defined(__clang__)
307
22
#pragma clang diagnostic push
308
22
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
22
#endif
310
21
  for (const auto& item : collection) {
311
21
    if (first) {
312
21
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
21
    result += ToString(transform(item));
317
21
  }
318
22
#if defined(__clang__)
319
22
#pragma clang diagnostic pop
320
22
#endif
321
22
  result += "]";
322
22
  return result;
323
22
}
_ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiNS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_iEEEEEENS_8IdentityEEES8_RKT_RKT0_
Line
Count
Source
298
5
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
5
  std::string result = "[";
300
5
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
5
#if defined(__clang__)
307
5
#pragma clang diagnostic push
308
5
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
5
#endif
310
5
  for (const auto& item : collection) {
311
5
    if (first) {
312
5
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
5
    result += ToString(transform(item));
317
5
  }
318
5
#if defined(__clang__)
319
5
#pragma clang diagnostic pop
320
5
#endif
321
5
  result += "]";
322
5
  return result;
323
5
}
_ZN2yb18CollectionToStringINSt3__13setINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4lessIS8_EENS6_IS8_EEEENS_8IdentityEEES8_RKT_RKT0_
Line
Count
Source
298
16.0k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
16.0k
  std::string result = "[";
300
16.0k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
16.0k
#if defined(__clang__)
307
16.0k
#pragma clang diagnostic push
308
16.0k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
16.0k
#endif
310
121k
  for (const auto& item : collection) {
311
121k
    if (first) {
312
15.6k
      first = false;
313
105k
    } else {
314
105k
      result += ", ";
315
105k
    }
316
121k
    result += ToString(transform(item));
317
121k
  }
318
16.0k
#if defined(__clang__)
319
16.0k
#pragma clang diagnostic pop
320
16.0k
#endif
321
16.0k
  result += "]";
322
16.0k
  return result;
323
16.0k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINS_10EnumBitSetINS_9pgwrapper14IndexStateFlagEEENS_8IdentityEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: pg_on_conflict-test.cc:_ZN2yb18CollectionToStringINS_9pgwrapper12_GLOBAL__N_115TransactionInfoENS_8IdentityEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_11redisserver10RedisReplyENS1_9allocatorIS4_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorIyNS1_9allocatorIyEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_RKT0_
Line
Count
Source
298
96.3k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
96.3k
  std::string result = "[";
300
96.3k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
96.3k
#if defined(__clang__)
307
96.3k
#pragma clang diagnostic push
308
96.3k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
96.3k
#endif
310
702k
  for (const auto& item : collection) {
311
702k
    if (first) {
312
92.1k
      first = false;
313
610k
    } else {
314
610k
      result += ", ";
315
610k
    }
316
702k
    result += ToString(transform(item));
317
702k
  }
318
96.3k
#if defined(__clang__)
319
96.3k
#pragma clang diagnostic pop
320
96.3k
#endif
321
96.3k
  result += "]";
322
96.3k
  return result;
323
96.3k
}
_ZN2yb18CollectionToStringINSt3__13setIyNS1_4lessIyEENS1_9allocatorIyEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
Line
Count
Source
298
96.3k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
96.3k
  std::string result = "[";
300
96.3k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
96.3k
#if defined(__clang__)
307
96.3k
#pragma clang diagnostic push
308
96.3k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
96.3k
#endif
310
702k
  for (const auto& item : collection) {
311
702k
    if (first) {
312
92.1k
      first = false;
313
610k
    } else {
314
610k
      result += ", ";
315
610k
    }
316
702k
    result += ToString(transform(item));
317
702k
  }
318
96.3k
#if defined(__clang__)
319
96.3k
#pragma clang diagnostic pop
320
96.3k
#endif
321
96.3k
  result += "]";
322
96.3k
  return result;
323
96.3k
}
_ZN2yb18CollectionToStringINSt3__16vectorIjNS1_9allocatorIjEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_RKT0_
Line
Count
Source
298
3
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
3
  std::string result = "[";
300
3
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
3
#if defined(__clang__)
307
3
#pragma clang diagnostic push
308
3
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
3
#endif
310
12
  for (const auto& item : collection) {
311
12
    if (first) {
312
3
      first = false;
313
9
    } else {
314
9
      result += ", ";
315
9
    }
316
12
    result += ToString(transform(item));
317
12
  }
318
3
#if defined(__clang__)
319
3
#pragma clang diagnostic pop
320
3
#endif
321
3
  result += "]";
322
3
  return result;
323
3
}
_ZN2yb18CollectionToStringIN6google8protobuf13RepeatedFieldIjEENS_8IdentityEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKT_RKT0_
Line
Count
Source
298
8
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
8
  std::string result = "[";
300
8
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
8
#if defined(__clang__)
307
8
#pragma clang diagnostic push
308
8
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
8
#endif
310
208
  for (const auto& item : collection) {
311
208
    if (first) {
312
8
      first = false;
313
200
    } else {
314
200
      result += ", ";
315
200
    }
316
208
    result += ToString(transform(item));
317
208
  }
318
8
#if defined(__clang__)
319
8
#pragma clang diagnostic pop
320
8
#endif
321
8
  result += "]";
322
8
  return result;
323
8
}
_ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEENS_8IdentityEEESA_RKT_RKT0_
Line
Count
Source
298
6
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
6
  std::string result = "[";
300
6
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
6
#if defined(__clang__)
307
6
#pragma clang diagnostic push
308
6
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
6
#endif
310
58
  for (const auto& item : collection) {
311
58
    if (first) {
312
6
      first = false;
313
52
    } else {
314
52
      result += ", ";
315
52
    }
316
58
    result += ToString(transform(item));
317
58
  }
318
6
#if defined(__clang__)
319
6
#pragma clang diagnostic pop
320
6
#endif
321
6
  result += "]";
322
6
  return result;
323
6
}
_ZN2yb18CollectionToStringIN6google8protobuf13RepeatedFieldIiEENS_8IdentityEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKT_RKT0_
Line
Count
Source
298
2
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
2
  std::string result = "[";
300
2
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
2
#if defined(__clang__)
307
2
#pragma clang diagnostic push
308
2
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
2
#endif
310
26
  for (const auto& item : collection) {
311
26
    if (first) {
312
2
      first = false;
313
24
    } else {
314
24
      result += ", ";
315
24
    }
316
26
    result += ToString(transform(item));
317
26
  }
318
2
#if defined(__clang__)
319
2
#pragma clang diagnostic pop
320
2
#endif
321
2
  result += "]";
322
2
  return result;
323
2
}
_ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_8rpc_test23LightweightSubMessagePBEEENS_8IdentityEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEERKT_RKT0_
Line
Count
Source
298
8
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
8
  std::string result = "[";
300
8
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
8
#if defined(__clang__)
307
8
#pragma clang diagnostic push
308
8
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
8
#endif
310
40
  for (const auto& item : collection) {
311
40
    if (first) {
312
8
      first = false;
313
32
    } else {
314
32
      result += ", ";
315
32
    }
316
40
    result += ToString(transform(item));
317
40
  }
318
8
#if defined(__clang__)
319
8
#pragma clang diagnostic pop
320
8
#endif
321
8
  result += "]";
322
8
  return result;
323
8
}
_ZN2yb18CollectionToStringIN6google8protobuf13RepeatedFieldIyEENS_8IdentityEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKT_RKT0_
Line
Count
Source
298
1.43k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1.43k
  std::string result = "[";
300
1.43k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1.43k
#if defined(__clang__)
307
1.43k
#pragma clang diagnostic push
308
1.43k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1.43k
#endif
310
2.18k
  for (const auto& item : collection) {
311
2.18k
    if (first) {
312
1.43k
      first = false;
313
747
    } else {
314
747
      result += ", ";
315
747
    }
316
2.18k
    result += ToString(transform(item));
317
2.18k
  }
318
1.43k
#if defined(__clang__)
319
1.43k
#pragma clang diagnostic pop
320
1.43k
#endif
321
1.43k
  result += "]";
322
1.43k
  return result;
323
1.43k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS1_4pairINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES9_EENS7_ISA_EEEENS_8IdentityEEES9_RKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS1_10shared_ptrINS_9consensus12ReplicateMsgEEENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13setINS_4OpIdENS1_4lessIS3_EENS1_9allocatorIS3_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINS_11RangeObjectImEENS_8IdentityEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__13setIiNS1_4lessIiEENS1_9allocatorIiEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
Line
Count
Source
298
80
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
80
  std::string result = "[";
300
80
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
80
#if defined(__clang__)
307
80
#pragma clang diagnostic push
308
80
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
80
#endif
310
444
  for (const auto& item : collection) {
311
444
    if (first) {
312
78
      first = false;
313
366
    } else {
314
366
      result += ", ";
315
366
    }
316
444
    result += ToString(transform(item));
317
444
  }
318
80
#if defined(__clang__)
319
80
#pragma clang diagnostic pop
320
80
#endif
321
80
  result += "]";
322
80
  return result;
323
80
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13setIxNS1_4lessIxEENS1_9allocatorIxEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINS_20ContainerRangeObjectINS_11RangeObjectImEENSt3__16vectorIiNS4_9allocatorIiEEEEEENS_8IdentityEEENS4_12basic_stringIcNS4_11char_traitsIcEENS6_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorINS_8HostPortENS1_9allocatorIS3_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_RKT0_
Line
Count
Source
298
3.47M
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
3.47M
  std::string result = "[";
300
3.47M
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
3.47M
#if defined(__clang__)
307
3.47M
#pragma clang diagnostic push
308
3.47M
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
3.47M
#endif
310
14.0M
  for (const auto& item : collection) {
311
14.0M
    if (first) {
312
3.47M
      first = false;
313
10.5M
    } else {
314
10.5M
      result += ", ";
315
10.5M
    }
316
14.0M
    result += ToString(transform(item));
317
14.0M
  }
318
3.47M
#if defined(__clang__)
319
3.47M
#pragma clang diagnostic pop
320
3.47M
#endif
321
3.47M
  result += "]";
322
3.47M
  return result;
323
3.47M
}
_ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_6tablet14SnapshotFilePBEEENS_8IdentityEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEERKT_RKT0_
Line
Count
Source
298
1.43k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1.43k
  std::string result = "[";
300
1.43k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1.43k
#if defined(__clang__)
307
1.43k
#pragma clang diagnostic push
308
1.43k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1.43k
#endif
310
60
  for (const auto& item : collection) {
311
60
    if (first) {
312
2
      first = false;
313
58
    } else {
314
58
      result += ", ";
315
58
    }
316
60
    result += ToString(transform(item));
317
60
  }
318
1.43k
#if defined(__clang__)
319
1.43k
#pragma clang diagnostic pop
320
1.43k
#endif
321
1.43k
  result += "]";
322
1.43k
  return result;
323
1.43k
}
_ZN2yb18CollectionToStringINSt3__113unordered_mapIiNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4hashIiEENS1_8equal_toIiEENS6_INS1_4pairIKiS8_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Line
Count
Source
298
7
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
7
  std::string result = "[";
300
7
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
7
#if defined(__clang__)
307
7
#pragma clang diagnostic push
308
7
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
7
#endif
310
21
  for (const auto& item : collection) {
311
21
    if (first) {
312
7
      first = false;
313
14
    } else {
314
14
      result += ", ";
315
14
    }
316
21
    result += ToString(transform(item));
317
21
  }
318
7
#if defined(__clang__)
319
7
#pragma clang diagnostic pop
320
7
#endif
321
7
  result += "]";
322
7
  return result;
323
7
}
_ZN2yb18CollectionToStringINS_8LRUCacheIiEENS_8IdentityEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEERKT_RKT0_
Line
Count
Source
298
2
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
2
  std::string result = "[";
300
2
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
2
#if defined(__clang__)
307
2
#pragma clang diagnostic push
308
2
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
2
#endif
310
3
  for (const auto& item : collection) {
311
3
    if (first) {
312
2
      first = false;
313
1
    } else {
314
1
      result += ", ";
315
1
    }
316
3
    result += ToString(transform(item));
317
3
  }
318
2
#if defined(__clang__)
319
2
#pragma clang diagnostic pop
320
2
#endif
321
2
  result += "]";
322
2
  return result;
323
2
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS1_10shared_ptrINS_10MemTrackerEEENS1_9allocatorIS5_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorIN5boost4asio2ip7addressENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Line
Count
Source
298
3
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
3
  std::string result = "[";
300
3
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
3
#if defined(__clang__)
307
3
#pragma clang diagnostic push
308
3
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
3
#endif
310
1.04k
  for (const auto& item : collection) {
311
1.04k
    if (first) {
312
3
      first = false;
313
1.03k
    } else {
314
1.03k
      result += ", ";
315
1.03k
    }
316
1.04k
    result += ToString(transform(item));
317
1.04k
  }
318
3
#if defined(__clang__)
319
3
#pragma clang diagnostic pop
320
3
#endif
321
3
  result += "]";
322
3
  return result;
323
3
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13mapIhiNS1_4lessIhEENS1_9allocatorINS1_4pairIKhiEEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__15dequeIiNS1_9allocatorIiEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_RKT0_
Line
Count
Source
298
3
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
3
  std::string result = "[";
300
3
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
3
#if defined(__clang__)
307
3
#pragma clang diagnostic push
308
3
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
3
#endif
310
15
  for (const auto& item : collection) {
311
15
    if (first) {
312
3
      first = false;
313
12
    } else {
314
12
      result += ", ";
315
12
    }
316
15
    result += ToString(transform(item));
317
15
  }
318
3
#if defined(__clang__)
319
3
#pragma clang diagnostic pop
320
3
#endif
321
3
  result += "]";
322
3
  return result;
323
3
}
_ZN2yb18CollectionToStringINSt3__14listIiNS1_9allocatorIiEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_RKT0_
Line
Count
Source
298
2
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
2
  std::string result = "[";
300
2
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
2
#if defined(__clang__)
307
2
#pragma clang diagnostic push
308
2
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
2
#endif
310
10
  for (const auto& item : collection) {
311
10
    if (first) {
312
2
      first = false;
313
8
    } else {
314
8
      result += ", ";
315
8
    }
316
10
    result += ToString(transform(item));
317
10
  }
318
2
#if defined(__clang__)
319
2
#pragma clang diagnostic pop
320
2
#endif
321
2
  result += "]";
322
2
  return result;
323
2
}
_ZN2yb18CollectionToStringINSt3__13mapIiNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4lessIiEENS6_INS1_4pairIKiS8_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Line
Count
Source
298
1
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1
  std::string result = "[";
300
1
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1
#if defined(__clang__)
307
1
#pragma clang diagnostic push
308
1
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1
#endif
310
3
  for (const auto& item : collection) {
311
3
    if (first) {
312
1
      first = false;
313
2
    } else {
314
2
      result += ", ";
315
2
    }
316
3
    result += ToString(transform(item));
317
3
  }
318
1
#if defined(__clang__)
319
1
#pragma clang diagnostic pop
320
1
#endif
321
1
  result += "]";
322
1
  return result;
323
1
}
_ZN2yb18CollectionToStringINSt3__16vectorINS1_4pairIiNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEENS7_ISA_EEEENS_8IdentityEEES9_RKT_RKT0_
Line
Count
Source
298
6
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
6
  std::string result = "[";
300
6
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
6
#if defined(__clang__)
307
6
#pragma clang diagnostic push
308
6
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
6
#endif
310
18
  for (const auto& item : collection) {
311
18
    if (first) {
312
6
      first = false;
313
12
    } else {
314
12
      result += ", ";
315
12
    }
316
18
    result += ToString(transform(item));
317
18
  }
318
6
#if defined(__clang__)
319
6
#pragma clang diagnostic pop
320
6
#endif
321
6
  result += "]";
322
6
  return result;
323
6
}
_ZN2yb18CollectionToStringINSt3__16vectorI13scoped_refptrINS_9util_test12ToStringableEENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Line
Count
Source
298
1
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1
  std::string result = "[";
300
1
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1
#if defined(__clang__)
307
1
#pragma clang diagnostic push
308
1
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1
#endif
310
2
  for (const auto& item : collection) {
311
2
    if (first) {
312
1
      first = false;
313
1
    } else {
314
1
      result += ", ";
315
1
    }
316
2
    result += ToString(transform(item));
317
2
  }
318
1
#if defined(__clang__)
319
1
#pragma clang diagnostic pop
320
1
#endif
321
1
  result += "]";
322
1
  return result;
323
1
}
_ZN2yb18CollectionToStringINSt3__16vectorINS_9util_test24ToStringableNonIntrusiveENS1_9allocatorIS4_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
Line
Count
Source
298
1
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1
  std::string result = "[";
300
1
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1
#if defined(__clang__)
307
1
#pragma clang diagnostic push
308
1
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1
#endif
310
2
  for (const auto& item : collection) {
311
2
    if (first) {
312
1
      first = false;
313
1
    } else {
314
1
      result += ", ";
315
1
    }
316
2
    result += ToString(transform(item));
317
2
  }
318
1
#if defined(__clang__)
319
1
#pragma clang diagnostic pop
320
1
#endif
321
1
  result += "]";
322
1
  return result;
323
1
}
_ZN2yb18CollectionToStringINSt3__16vectorINS_9util_test10OutputableENS1_9allocatorIS4_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
Line
Count
Source
298
1
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1
  std::string result = "[";
300
1
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1
#if defined(__clang__)
307
1
#pragma clang diagnostic push
308
1
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1
#endif
310
2
  for (const auto& item : collection) {
311
2
    if (first) {
312
1
      first = false;
313
1
    } else {
314
1
      result += ", ";
315
1
    }
316
2
    result += ToString(transform(item));
317
2
  }
318
1
#if defined(__clang__)
319
1
#pragma clang diagnostic pop
320
1
#endif
321
1
  result += "]";
322
1
  return result;
323
1
}
_ZN2yb18CollectionToStringINSt3__16vectorIN5boost5uuids4uuidENS1_9allocatorIS5_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_RKT0_
Line
Count
Source
298
1
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1
  std::string result = "[";
300
1
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1
#if defined(__clang__)
307
1
#pragma clang diagnostic push
308
1
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1
#endif
310
1
  for (const auto& item : collection) {
311
1
    if (first) {
312
1
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
1
    result += ToString(transform(item));
317
1
  }
318
1
#if defined(__clang__)
319
1
#pragma clang diagnostic pop
320
1
#endif
321
1
  result += "]";
322
1
  return result;
323
1
}
_ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_10HostPortPBEEENS_8IdentityEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_RKT0_
Line
Count
Source
298
274k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
274k
  std::string result = "[";
300
274k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
274k
#if defined(__clang__)
307
274k
#pragma clang diagnostic push
308
274k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
274k
#endif
310
227k
  for (const auto& item : collection) {
311
227k
    if (first) {
312
227k
      first = false;
313
46
    } else {
314
46
      result += ", ";
315
46
    }
316
227k
    result += ToString(transform(item));
317
227k
  }
318
274k
#if defined(__clang__)
319
274k
#pragma clang diagnostic pop
320
274k
#endif
321
274k
  result += "]";
322
274k
  return result;
323
274k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_9consensus12ReplicateMsgEEENS_8IdentityEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container12small_vectorINSt3__16chrono10time_pointINS_15CoarseMonoClockENS5_8durationIxNS4_5ratioILl1ELl1000000000EEEEEEELm5EvvEENS_8IdentityEEENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEERKT_RKT0_
_ZN2yb18CollectionToStringIN5boost9container12small_vectorIyLm5EvvEENS_8IdentityEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKT_RKT0_
Line
Count
Source
298
1
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1
  std::string result = "[";
300
1
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1
#if defined(__clang__)
307
1
#pragma clang diagnostic push
308
1
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1
#endif
310
0
  for (const auto& item : collection) {
311
0
    if (first) {
312
0
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
0
    result += ToString(transform(item));
317
0
  }
318
1
#if defined(__clang__)
319
1
#pragma clang diagnostic pop
320
1
#endif
321
1
  result += "]";
322
1
  return result;
323
1
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container12small_vectorINS_4OpIdELm5EvvEENS_8IdentityEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15dequeI13scoped_refptrINS_9consensus14ConsensusRoundEENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Unexecuted instantiation: retryable_requests.cc:_ZN2yb18CollectionToStringIN5boost11multi_index6detail12hashed_indexINS2_6memberINS_9consensus12_GLOBAL__N_123RunningRetryableRequestExXadL_ZNS8_10request_idEEEEENS1_4hashIxEENSt3__18equal_toIxEENS3_9nth_layerILi1ES8_NS2_10indexed_byINS2_13hashed_uniqueINS2_3tagINS7_14RequestIdIndexEN4mpl_2naESL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_EES9_SL_SL_EESL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_EENSC_9allocatorIS8_EEEENS1_3mpl6v_itemISJ_NSS_7vector0ISL_EELi0EEENS3_17hashed_unique_tagEEENS_8IdentityEEENSC_12basic_stringIcNSC_11char_traitsIcEENSP_IcEEEERKT_RKT0_
Unexecuted instantiation: retryable_requests.cc:_ZN2yb18CollectionToStringIN5boost11multi_index21multi_index_containerINS_9consensus12_GLOBAL__N_131ReplicatedRetryableRequestRangeENS2_10indexed_byINS2_14ordered_uniqueINS2_3tagINS5_11LastIdIndexEN4mpl_2naESC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_EENS2_6memberIS6_xXadL_ZNS6_7last_idEEEEESC_EENS8_INS9_INS5_9OpIdIndexESC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_EENSE_IS6_NS_4OpIdEXadL_ZNS6_9min_op_idEEEEESC_EESC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_SC_EENSt3__19allocatorIS6_EEEENS_8IdentityEEENSN_12basic_stringIcNSN_11char_traitsIcEENSO_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorINS1_10shared_ptrINS_6master12TSDescriptorEEENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Line
Count
Source
298
70
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
70
  std::string result = "[";
300
70
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
70
#if defined(__clang__)
307
70
#pragma clang diagnostic push
308
70
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
70
#endif
310
0
  for (const auto& item : collection) {
311
0
    if (first) {
312
0
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
0
    result += ToString(transform(item));
317
0
  }
318
70
#if defined(__clang__)
319
70
#pragma clang diagnostic pop
320
70
#endif
321
70
  result += "]";
322
70
  return result;
323
70
}
_ZN2yb18CollectionToStringINSt3__16vectorIxNS1_9allocatorIxEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_RKT0_
Line
Count
Source
298
41
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
41
  std::string result = "[";
300
41
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
41
#if defined(__clang__)
307
41
#pragma clang diagnostic push
308
41
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
41
#endif
310
87
  for (const auto& item : collection) {
311
87
    if (first) {
312
41
      first = false;
313
46
    } else {
314
46
      result += ", ";
315
46
    }
316
87
    result += ToString(transform(item));
317
87
  }
318
41
#if defined(__clang__)
319
41
#pragma clang diagnostic pop
320
41
#endif
321
41
  result += "]";
322
41
  return result;
323
41
}
_ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_16IndexPermissionsENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_S9_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Line
Count
Source
298
422
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
422
  std::string result = "[";
300
422
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
422
#if defined(__clang__)
307
422
#pragma clang diagnostic push
308
422
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
422
#endif
310
433
  for (const auto& item : collection) {
311
433
    if (first) {
312
422
      first = false;
313
11
    } else {
314
11
      result += ", ";
315
11
    }
316
433
    result += ToString(transform(item));
317
433
  }
318
422
#if defined(__clang__)
319
422
#pragma clang diagnostic pop
320
422
#endif
321
422
  result += "]";
322
422
  return result;
323
422
}
_ZN2yb18CollectionToStringINSt3__16vectorINS_11IndexInfoPBENS1_9allocatorIS3_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_RKT0_
Line
Count
Source
298
453
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
453
  std::string result = "[";
300
453
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
453
#if defined(__clang__)
307
453
#pragma clang diagnostic push
308
453
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
453
#endif
310
465
  for (const auto& item : collection) {
311
465
    if (first) {
312
453
      first = false;
313
12
    } else {
314
12
      result += ", ";
315
12
    }
316
465
    result += ToString(transform(item));
317
465
  }
318
453
#if defined(__clang__)
319
453
#pragma clang diagnostic pop
320
453
#endif
321
453
  result += "]";
322
453
  return result;
323
453
}
_ZN2yb18CollectionToStringINSt3__16vectorI13scoped_refptrINS_6master10TabletInfoEENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Line
Count
Source
298
50.7k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
50.7k
  std::string result = "[";
300
50.7k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
50.7k
#if defined(__clang__)
307
50.7k
#pragma clang diagnostic push
308
50.7k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
50.7k
#endif
310
50.7k
  for (const auto& item : collection) {
311
50.7k
    if (first) {
312
50.7k
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
50.7k
    result += ToString(transform(item));
317
50.7k
  }
318
50.7k
#if defined(__clang__)
319
50.7k
#pragma clang diagnostic pop
320
50.7k
#endif
321
50.7k
  result += "]";
322
50.7k
  return result;
323
50.7k
}
_ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEEPFNS_4UuidERKNS_5SliceEEEESA_RKT_RKT0_
Line
Count
Source
298
2.74k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
2.74k
  std::string result = "[";
300
2.74k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
2.74k
#if defined(__clang__)
307
2.74k
#pragma clang diagnostic push
308
2.74k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
2.74k
#endif
310
0
  for (const auto& item : collection) {
311
0
    if (first) {
312
0
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
0
    result += ToString(transform(item));
317
0
  }
318
2.74k
#if defined(__clang__)
319
2.74k
#pragma clang diagnostic pop
320
2.74k
#endif
321
2.74k
  result += "]";
322
2.74k
  return result;
323
2.74k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_11IndexInfoPBEEENS_8IdentityEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15arrayINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEELm2EEENS_8IdentityEEES8_RKT_RKT0_
_ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master13TabletReplicaENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SA_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Line
Count
Source
298
11.2M
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
11.2M
  std::string result = "[";
300
11.2M
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
11.2M
#if defined(__clang__)
307
11.2M
#pragma clang diagnostic push
308
11.2M
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
11.2M
#endif
310
323k
  for (const auto& item : collection) {
311
323k
    if (first) {
312
108k
      first = false;
313
214k
    } else {
314
214k
      result += ", ";
315
214k
    }
316
323k
    result += ToString(transform(item));
317
323k
  }
318
11.2M
#if defined(__clang__)
319
11.2M
#pragma clang diagnostic pop
320
11.2M
#endif
321
11.2M
  result += "]";
322
11.2M
  return result;
323
11.2M
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_setINS1_10shared_ptrINS_6server13MonitoredTaskEEENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE13scoped_refptrINS_6master9TableInfoEENS1_4lessIS8_EENS6_INS1_4pairIKS8_SC_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_setINS_11CloudInfoPBENS_6master10cloud_hashENS4_14cloud_equal_toENS1_9allocatorIS3_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_8MonoTimeENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_S9_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_6master23TabletSnapshotOperationENS1_9allocatorIS4_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorINS_5docdb14PrimitiveValueENS1_9allocatorIS4_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
Line
Count
Source
298
1
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1
  std::string result = "[";
300
1
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1
#if defined(__clang__)
307
1
#pragma clang diagnostic push
308
1
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1
#endif
310
0
  for (const auto& item : collection) {
311
0
    if (first) {
312
0
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
0
    result += ToString(transform(item));
317
0
  }
318
1
#if defined(__clang__)
319
1
#pragma clang diagnostic pop
320
1
#endif
321
1
  result += "]";
322
1
  return result;
323
1
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost11multi_index21multi_index_containerINS_6master16StateWithTablets10TabletDataENS2_10indexed_byINS2_13hashed_uniqueINS2_6memberIS6_NSt3__112basic_stringIcNSA_11char_traitsIcEENSA_9allocatorIcEEEEXadL_ZNS6_2idEEEEEN4mpl_2naESJ_SJ_EENS2_18ordered_non_uniqueINS2_3tagINS5_10RunningTagESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENS9_IS6_bXadL_ZNS6_7runningEEEEESJ_EESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENSE_IS6_EEEENS_8IdentityEEESG_RKT_RKT0_
_ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10shared_ptrINS_6master12TSDescriptorEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Line
Count
Source
298
5.53k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
5.53k
  std::string result = "[";
300
5.53k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
5.53k
#if defined(__clang__)
307
5.53k
#pragma clang diagnostic push
308
5.53k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
5.53k
#endif
310
11.3k
  for (const auto& item : collection) {
311
11.3k
    if (first) {
312
5.53k
      first = false;
313
5.78k
    } else {
314
5.78k
      result += ", ";
315
5.78k
    }
316
11.3k
    result += ToString(transform(item));
317
11.3k
  }
318
5.53k
#if defined(__clang__)
319
5.53k
#pragma clang diagnostic pop
320
5.53k
#endif
321
5.53k
  result += "]";
322
5.53k
  return result;
323
5.53k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_8ColumnIdENS1_9allocatorIS3_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master15SysRowEntryTypeENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SA_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEENS_10HybridTimeEN5boost4hashIS5_EENS1_8equal_toIS5_EENS1_9allocatorINS1_4pairIKS5_S6_EEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENSC_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master19SysNamespaceEntryPBENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SA_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_6master14SnapshotInfoPBEEENS_8IdentityEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEERKT_RKT0_
_ZN2yb18CollectionToStringIN5boost5uuids4uuidENS_8IdentityEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEERKT_RKT0_
Line
Count
Source
298
3
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
3
  std::string result = "[";
300
3
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
3
#if defined(__clang__)
307
3
#pragma clang diagnostic push
308
3
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
3
#endif
310
48
  for (const auto& item : collection) {
311
48
    if (first) {
312
3
      first = false;
313
45
    } else {
314
45
      result += ", ";
315
45
    }
316
48
    result += ToString(transform(item));
317
48
  }
318
3
#if defined(__clang__)
319
3
#pragma clang diagnostic pop
320
3
#endif
321
3
  result += "]";
322
3
  return result;
323
3
}
_ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES8_NS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_S8_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Line
Count
Source
298
656k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
656k
  std::string result = "[";
300
656k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
656k
#if defined(__clang__)
307
656k
#pragma clang diagnostic push
308
656k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
656k
#endif
310
984k
  for (const auto& item : collection) {
311
984k
    if (first) {
312
656k
      first = false;
313
328k
    } else {
314
328k
      result += ", ";
315
328k
    }
316
984k
    result += ToString(transform(item));
317
984k
  }
318
656k
#if defined(__clang__)
319
656k
#pragma clang diagnostic pop
320
656k
#endif
321
656k
  result += "]";
322
656k
  return result;
323
656k
}
_ZN2yb18CollectionToStringINSt3__113unordered_setIPN7rocksdb6DBImpl14CompactionTaskENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEERKT_RKT0_
Line
Count
Source
298
1.69k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1.69k
  std::string result = "[";
300
1.69k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1.69k
#if defined(__clang__)
307
1.69k
#pragma clang diagnostic push
308
1.69k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1.69k
#endif
310
96
  for (const auto& item : collection) {
311
96
    if (first) {
312
59
      first = false;
313
37
    } else {
314
37
      result += ", ";
315
37
    }
316
96
    result += ToString(transform(item));
317
96
  }
318
1.69k
#if defined(__clang__)
319
1.69k
#pragma clang diagnostic pop
320
1.69k
#endif
321
1.69k
  result += "]";
322
1.69k
  return result;
323
1.69k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container12small_vectorIyLm1EvvEENS_8IdentityEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__118unordered_multisetIyNS1_4hashIyEENS1_8equal_toIyEENS1_9allocatorIyEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorIN5boost4asio2ip14basic_endpointINS5_3tcpEEENS1_9allocatorIS8_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS9_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorINS_9IndexInfoENS1_9allocatorIS3_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_RKT0_
Line
Count
Source
298
235
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
235
  std::string result = "[";
300
235
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
235
#if defined(__clang__)
307
235
#pragma clang diagnostic push
308
235
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
235
#endif
310
235
  for (const auto& item : collection) {
311
235
    if (first) {
312
235
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
235
    result += ToString(transform(item));
317
235
  }
318
235
#if defined(__clang__)
319
235
#pragma clang diagnostic pop
320
235
#endif
321
235
  result += "]";
322
235
  return result;
323
235
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__13mapIxNS_6tablet5EntryENS1_4lessIxEENS1_9allocatorINS1_4pairIKxS4_EEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
transaction_coordinator.cc:_ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6tablet12_GLOBAL__N_116TransactionState19InvolvedTabletStateENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Line
Count
Source
298
716k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
716k
  std::string result = "[";
300
716k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
716k
#if defined(__clang__)
307
716k
#pragma clang diagnostic push
308
716k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
716k
#endif
310
737k
  for (const auto& item : collection) {
311
737k
    if (first) {
312
311k
      first = false;
313
426k
    } else {
314
426k
      result += ", ";
315
426k
    }
316
737k
    result += ToString(transform(item));
317
737k
  }
318
716k
#if defined(__clang__)
319
716k
#pragma clang diagnostic pop
320
716k
#endif
321
716k
  result += "]";
322
716k
  return result;
323
716k
}
_ZN2yb18CollectionToStringINSt3__15dequeINS1_10unique_ptrINS_6tablet18UpdateTxnOperationENS1_14default_deleteIS5_EEEENS1_9allocatorIS8_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS9_IcEEEERKT_RKT0_
Line
Count
Source
298
716k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
716k
  std::string result = "[";
300
716k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
716k
#if defined(__clang__)
307
716k
#pragma clang diagnostic push
308
716k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
716k
#endif
310
0
  for (const auto& item : collection) {
311
0
    if (first) {
312
0
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
0
    result += ToString(transform(item));
317
0
  }
318
716k
#if defined(__clang__)
319
716k
#pragma clang diagnostic pop
320
716k
#endif
321
716k
  result += "]";
322
716k
  return result;
323
716k
}
Unexecuted instantiation: transaction_coordinator.cc:_ZN2yb18CollectionToStringINSt3__16vectorINS_6tablet12_GLOBAL__N_121ExpectedTabletBatchesENS1_9allocatorIS5_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost11multi_index21multi_index_containerINSt3__110shared_ptrINS_6tablet18RunningTransactionEEENS2_10indexed_byINS2_13hashed_uniqueINS2_13const_mem_funIS7_RKNS_17StronglyTypedUuidINS_17TransactionId_TagEEEXadL_ZNKS7_2idEvEEEEN4mpl_2naESJ_SJ_EENS2_18ordered_non_uniqueINS2_3tagINS6_22TransactionParticipant4Impl12StartTimeTagESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENSB_IS7_NS_10HybridTimeEXadL_ZNKS7_8start_htEvEEEESJ_EENSL_INSM_INSO_17AbortCheckTimeTagESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENSB_IS7_SR_XadL_ZNKS7_14abort_check_htEvEEEESJ_EESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENS4_9allocatorIS8_EEEEZNSO_30TEST_GetNumRunningTransactionsEvEUlRKS8_E_EENS4_12basic_stringIcNS4_11char_traitsIcEENSZ_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15dequeIxNS1_9allocatorIxEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_5dequeINS_17StronglyTypedUuidINS_17TransactionId_TagEEENS6_ISC_EEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SE_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15dequeINS_17StronglyTypedUuidINS_17TransactionId_TagEEENS1_9allocatorIS5_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__15dequeINS_6tablet11MvccManager9QueueItemENS1_9allocatorIS5_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_10shared_ptrINS_6tablet9TableInfoEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEENS1_9allocatorIS5_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost14iterator_rangeINSt3__111__wrap_iterIPPNS_6tablet15OperationDriverEEEEENS_8IdentityEEENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorINS2_INS_8HostPortENS1_9allocatorIS3_EEEENS4_IS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_RKT0_
Line
Count
Source
298
2.25k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
2.25k
  std::string result = "[";
300
2.25k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
2.25k
#if defined(__clang__)
307
2.25k
#pragma clang diagnostic push
308
2.25k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
2.25k
#endif
310
4.53k
  for (const auto& item : collection) {
311
4.53k
    if (first) {
312
2.25k
      first = false;
313
2.28k
    } else {
314
2.28k
      result += ", ";
315
2.28k
    }
316
4.53k
    result += ToString(transform(item));
317
4.53k
  }
318
2.25k
#if defined(__clang__)
319
2.25k
#pragma clang diagnostic pop
320
2.25k
#endif
321
2.25k
  result += "]";
322
2.25k
  return result;
323
2.25k
}
_ZN2yb18CollectionToStringIN5boost14iterator_rangeINSt3__121__tree_const_iteratorINS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEPNS3_11__tree_nodeISA_PvEElEEEENS_8IdentityEEESA_RKT_RKT0_
Line
Count
Source
298
18.5k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
18.5k
  std::string result = "[";
300
18.5k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
18.5k
#if defined(__clang__)
307
18.5k
#pragma clang diagnostic push
308
18.5k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
18.5k
#endif
310
35.2k
  for (const auto& item : collection) {
311
35.2k
    if (first) {
312
18.5k
      first = false;
313
16.7k
    } else {
314
16.7k
      result += ", ";
315
16.7k
    }
316
35.2k
    result += ToString(transform(item));
317
35.2k
  }
318
18.5k
#if defined(__clang__)
319
18.5k
#pragma clang diagnostic pop
320
18.5k
#endif
321
18.5k
  result += "]";
322
18.5k
  return result;
323
18.5k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_6StatusENS1_9allocatorIS3_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_6tablet6FilePBEEENS_8IdentityEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEERKT_RKT0_
Line
Count
Source
298
1.43k
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1.43k
  std::string result = "[";
300
1.43k
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1.43k
#if defined(__clang__)
307
1.43k
#pragma clang diagnostic push
308
1.43k
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1.43k
#endif
310
4.38k
  for (const auto& item : collection) {
311
4.38k
    if (first) {
312
1.27k
      first = false;
313
3.11k
    } else {
314
3.11k
      result += ", ";
315
3.11k
    }
316
4.38k
    result += ToString(transform(item));
317
4.38k
  }
318
1.43k
#if defined(__clang__)
319
1.43k
#pragma clang diagnostic pop
320
1.43k
#endif
321
1.43k
  result += "]";
322
1.43k
  return result;
323
1.43k
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINS_8IndexMapENS_8IdentityEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorINS_2ql10CQLMessage5ValueENS1_9allocatorIS5_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_RKT0_
Line
Count
Source
298
110
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
110
  std::string result = "[";
300
110
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
110
#if defined(__clang__)
307
110
#pragma clang diagnostic push
308
110
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
110
#endif
310
220
  for (const auto& item : collection) {
311
220
    if (first) {
312
110
      first = false;
313
110
    } else {
314
110
      result += ", ";
315
110
    }
316
220
    result += ToString(transform(item));
317
220
  }
318
110
#if defined(__clang__)
319
110
#pragma clang diagnostic pop
320
110
#endif
321
110
  result += "]";
322
110
  return result;
323
110
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container12small_vectorINS_5SliceELm8EvvEENS_8IdentityEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: redis_service.cc:_ZN2yb18CollectionToStringINSt3__16vectorIPNS_11redisserver12_GLOBAL__N_19OperationENS_8internal18ArenaAllocatorBaseIS6_NS7_11ArenaTraitsEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_setINS_5SliceENS3_4HashENS1_8equal_toIS3_EENS_8internal18ArenaAllocatorBaseIS3_NS7_11ArenaTraitsEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: redis_service.cc:_ZN2yb18CollectionToStringINSt3__113unordered_mapINS_5SliceENS_11redisserver12_GLOBAL__N_116TabletOperationsENS3_4HashENS1_8equal_toIS3_EENS_8internal18ArenaAllocatorBaseINS1_4pairIKS3_S6_EENSA_11ArenaTraitsEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost14iterator_rangeINSt3__111__wrap_iterIPNS_6client8internal10InFlightOpEEEEENS_8IdentityEEENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_6master17TabletLocationsPBEEENS_8IdentityEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorIPNS_6client8internal10LookupDataENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Unexecuted instantiation: table.cc:_ZN2yb18CollectionToStringINSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEZNKS_6client27VersionedTablePartitionList8ToStringEvE3$_2EES8_RKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS_5QLRowENS1_9allocatorIS3_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorIPNS_6client8internal18RemoteTabletServerENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Line
Count
Source
298
576
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
576
  std::string result = "[";
300
576
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
576
#if defined(__clang__)
307
576
#pragma clang diagnostic push
308
576
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
576
#endif
310
596
  for (const auto& item : collection) {
311
596
    if (first) {
312
261
      first = false;
313
335
    } else {
314
335
      result += ", ";
315
335
    }
316
596
    result += ToString(transform(item));
317
596
  }
318
576
#if defined(__clang__)
319
576
#pragma clang diagnostic pop
320
576
#endif
321
576
  result += "]";
322
576
  return result;
323
576
}
_ZN2yb18CollectionToStringINSt3__113unordered_mapIPNS_6client8internal18RemoteTabletServerENS4_13TabletInvoker12FollowerDataENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorINS1_4pairIKS6_S8_EEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENSD_IcEEEERKT_RKT0_
Line
Count
Source
298
576
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
576
  std::string result = "[";
300
576
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
576
#if defined(__clang__)
307
576
#pragma clang diagnostic push
308
576
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
576
#endif
310
1.49k
  for (const auto& item : collection) {
311
1.49k
    if (first) {
312
551
      first = false;
313
940
    } else {
314
940
      result += ", ";
315
940
    }
316
1.49k
    result += ToString(transform(item));
317
1.49k
  }
318
576
#if defined(__clang__)
319
576
#pragma clang diagnostic pop
320
576
#endif
321
576
  result += "]";
322
576
  return result;
323
576
}
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container12small_vectorINS_6client8internal16InFlightOpsGroupELm40EvvEENS_8IdentityEEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6client13YBTransaction4Impl11TabletStateENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEENS_8IdentityEEES8_RKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapI12GStringPiecemNS1_4hashIS3_EENS1_8equal_toIS3_EENS_20STLCountingAllocatorINS1_4pairIKS3_mEENS1_9allocatorISB_EEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENSC_IcEEEERKT_RKT0_
Unexecuted instantiation: conflict_resolution.cc:_ZN2yb18CollectionToStringINSt3__113unordered_mapINS_17StronglyTypedUuidINS_17TransactionId_TagEEENS_5docdb12_GLOBAL__N_123TransactionConflictInfoEN5boost4hashIS5_EENS1_8equal_toIS5_EENS1_9allocatorINS1_4pairIKS5_S8_EEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENSE_IcEEEERKT_RKT0_
Unexecuted instantiation: conflict_resolution.cc:_ZN2yb18CollectionToStringINSt3__13mapINS_10ByteBufferILm64EEENS_5docdb12_GLOBAL__N_110IntentDataENS1_4lessIS4_EENS1_9allocatorINS1_4pairIKS4_S7_EEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENSA_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorINS_5docdb14LockBatchEntryENS1_9allocatorIS4_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEERKT_RKT0_
Line
Count
Source
298
47
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
47
  std::string result = "[";
300
47
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
47
#if defined(__clang__)
307
47
#pragma clang diagnostic push
308
47
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
47
#endif
310
95
  for (const auto& item : collection) {
311
95
    if (first) {
312
47
      first = false;
313
48
    } else {
314
48
      result += ", ";
315
48
    }
316
95
    result += ToString(transform(item));
317
95
  }
318
47
#if defined(__clang__)
319
47
#pragma clang diagnostic pop
320
47
#endif
321
47
  result += "]";
322
47
  return result;
323
47
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS1_10unique_ptrINS_5docdb12DocOperationENS1_14default_deleteIS5_EEEENS1_9allocatorIS8_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS9_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN6google8protobuf16RepeatedPtrFieldINS_5docdb14KeyValuePairPBEEENS_8IdentityEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapINS_12RefCntPrefixEPNS_5docdb16LockedBatchEntryENS_16RefCntPrefixHashENS1_8equal_toIS3_EENS1_9allocatorINS1_4pairIKS3_S6_EEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENSA_IcEEEERKT_RKT0_
priority_thread_pool.cc:_ZN2yb18CollectionToStringIN5boost11multi_index21multi_index_containerINS_12_GLOBAL__N_130PriorityThreadPoolInternalTaskENS2_10indexed_byINS2_13ranked_uniqueINS2_3tagINS_18PriorityThreadPool4Impl11PriorityTagEN4mpl_2naESD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_EENS2_8identityIS5_EENS4_22PriorityTaskComparatorEEENS2_14ordered_uniqueINS8_INSA_19StateAndPriorityTagESD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_EESG_NS4_30StateAndPriorityTaskComparatorEEENS2_13hashed_uniqueINS8_INSA_11SerialNoTagESD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_EENS2_13const_mem_funIS5_mXadL_ZNKS5_9serial_noEvEEEESD_SD_EESD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_SD_EENSt3__19allocatorIS5_EEEENS_8IdentityEEENSV_12basic_stringIcNSV_11char_traitsIcEENSW_IcEEEERKT_RKT0_
Line
Count
Source
298
1
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1
  std::string result = "[";
300
1
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1
#if defined(__clang__)
307
1
#pragma clang diagnostic push
308
1
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1
#endif
310
6
  for (const auto& item : collection) {
311
6
    if (first) {
312
1
      first = false;
313
5
    } else {
314
5
      result += ", ";
315
5
    }
316
6
    result += ToString(transform(item));
317
6
  }
318
1
#if defined(__clang__)
319
1
#pragma clang diagnostic pop
320
1
#endif
321
1
  result += "]";
322
1
  return result;
323
1
}
Unexecuted instantiation: priority_thread_pool.cc:_ZN2yb18CollectionToStringIN5boost9container13stable_vectorINS_12_GLOBAL__N_124PriorityThreadPoolWorkerEvEENS_8IdentityEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEERKT_RKT0_
priority_thread_pool.cc:_ZN2yb18CollectionToStringINSt3__16vectorIPNS_12_GLOBAL__N_124PriorityThreadPoolWorkerENS1_9allocatorIS5_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEERKT_RKT0_
Line
Count
Source
298
1
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
1
  std::string result = "[";
300
1
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
1
#if defined(__clang__)
307
1
#pragma clang diagnostic push
308
1
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
1
#endif
310
0
  for (const auto& item : collection) {
311
0
    if (first) {
312
0
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
0
    result += ToString(transform(item));
317
0
  }
318
1
#if defined(__clang__)
319
1
#pragma clang diagnostic pop
320
1
#endif
321
1
  result += "]";
322
1
  return result;
323
1
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS1_10unique_ptrINS_22PriorityThreadPoolTaskENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS8_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapIxNS1_10shared_ptrINS_3rpc11DelayedTaskEEENS1_4hashIxEENS1_8equal_toIxEENS1_9allocatorINS1_4pairIKxS6_EEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorINS1_10shared_ptrINS_3rpc11ReactorTaskEEENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Line
Count
Source
298
2
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
2
  std::string result = "[";
300
2
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
2
#if defined(__clang__)
307
2
#pragma clang diagnostic push
308
2
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
2
#endif
310
2
  for (const auto& item : collection) {
311
2
    if (first) {
312
2
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
2
    result += ToString(transform(item));
317
2
  }
318
2
#if defined(__clang__)
319
2
#pragma clang diagnostic pop
320
2
#endif
321
2
  result += "]";
322
2
  return result;
323
2
}
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__16vectorINS1_10shared_ptrINS_3rpc12OutboundCallEEENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_setINS1_10shared_ptrINS_3rpc10ConnectionEEENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringIN5boost9container13stable_vectorINSt3__110shared_ptrINS_3rpc10RpcCommandEEEvEENS_8IdentityEEENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEERKT_RKT0_
Unexecuted instantiation: _ZN2yb18CollectionToStringINSt3__113unordered_mapIyPNS_3rpc11InboundCallENS1_4hashIyEENS1_8equal_toIyEENS1_9allocatorINS1_4pairIKyS5_EEEEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENSA_IcEEEERKT_RKT0_
_ZN2yb18CollectionToStringINSt3__16vectorINS1_10shared_ptrINS_5tools17YsckTabletReplicaEEENS1_9allocatorIS6_EEEENS_8IdentityEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEERKT_RKT0_
Line
Count
Source
298
8
std::string CollectionToString(const Collection& collection, const Transform& transform) {
299
8
  std::string result = "[";
300
8
  auto first = true;
301
302
// Range loop analysis flags copying of objects in a range loop by suggesting the use of
303
// references. It however prevents the use of references for trivial entities like 'bool'. Given
304
// that this function is templatized, we have both the cases happening in the following loop.
305
// Ignore the range-loop-analysis in this part of the code.
306
8
#if defined(__clang__)
307
8
#pragma clang diagnostic push
308
8
#pragma clang diagnostic ignored "-Wrange-loop-analysis"
309
8
#endif
310
8
  for (const auto& item : collection) {
311
8
    if (first) {
312
8
      first = false;
313
0
    } else {
314
0
      result += ", ";
315
0
    }
316
8
    result += ToString(transform(item));
317
8
  }
318
8
#if defined(__clang__)
319
8
#pragma clang diagnostic pop
320
8
#endif
321
8
  result += "]";
322
8
  return result;
323
8
}
324
325
template <class... T>
326
1.76M
std::string AsString(T&&... t) {
327
1.76M
  return ToString(std::forward<T>(t)...);
328
1.76M
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_17TransactionStatusEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_14UnsignedIntSetIjEEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRmEEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_14ReadHybridTimeEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKPNS_10HybridTimeEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__16vectorINS_6client11YBTableNameENS1_9allocatorIS4_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEEES7_DpOT_
_ZN2yb8AsStringIJRKNS_6StatusEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
4
std::string AsString(T&&... t) {
327
4
  return ToString(std::forward<T>(t)...);
328
4
}
_ZN2yb8AsStringIJRKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEEES7_DpOT_
Line
Count
Source
326
46.0k
std::string AsString(T&&... t) {
327
46.0k
  return ToString(std::forward<T>(t)...);
328
46.0k
}
_ZN2yb8AsStringIJRKNS_4OpIdEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
9.13k
std::string AsString(T&&... t) {
327
9.13k
  return ToString(std::forward<T>(t)...);
328
9.13k
}
Unexecuted instantiation: _ZN2yb8AsStringIJNS_8CpuTimesEEEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_5docdb6DocKeyEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_5docdb9SubDocKeyEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__16vectorINS_4OpIdENS1_9allocatorIS3_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_4OpIdEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__14pairIRKNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEESA_EEEEES8_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_6ResultINSt3__110shared_ptrINS_6client11YBqlWriteOpEEEEEEEENS2_12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__110shared_ptrINS_6client11YBqlWriteOpEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__16vectorIN7rocksdb16LiveFileMetaDataENS1_9allocatorIS4_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRN6google8protobuf16RepeatedPtrFieldINS_6master22SnapshotScheduleInfoPBEEEEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__113unordered_setINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEEN5boost4hashIS5_EENS1_8equal_toIS5_EENS1_9allocatorIS5_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEEDpOT_
_ZN2yb8AsStringIJRNSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEEES8_DpOT_
Line
Count
Source
326
36.3k
std::string AsString(T&&... t) {
327
36.3k
  return ToString(std::forward<T>(t)...);
328
36.3k
}
_ZN2yb8AsStringIJNSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEEES8_DpOT_
Line
Count
Source
326
931
std::string AsString(T&&... t) {
327
931
  return ToString(std::forward<T>(t)...);
328
931
}
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__13mapIiiNS1_4lessIiEENS1_9allocatorINS1_4pairIKiiEEEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEDpOT_
_ZN2yb8AsStringIJRKNS_10HybridTimeEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
36.6k
std::string AsString(T&&... t) {
327
36.6k
  return ToString(std::forward<T>(t)...);
328
36.6k
}
_ZN2yb8AsStringIJRKxEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Line
Count
Source
326
6.16k
std::string AsString(T&&... t) {
327
6.16k
  return ToString(std::forward<T>(t)...);
328
6.16k
}
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__16vectorINS_9MonoDeltaENS1_9allocatorIS3_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_6StatusEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNS_14load_generator10ReadStatusEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRxEEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEDpOT_
Line
Count
Source
326
368k
std::string AsString(T&&... t) {
327
368k
  return ToString(std::forward<T>(t)...);
328
368k
}
_ZN2yb8AsStringIJRN5boost4asio2ip14basic_endpointINS3_3tcpEEEEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEDpOT_
Line
Count
Source
326
11
std::string AsString(T&&... t) {
327
11
  return ToString(std::forward<T>(t)...);
328
11
}
_ZN2yb8AsStringIJRbEEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEDpOT_
Line
Count
Source
326
2
std::string AsString(T&&... t) {
327
2
  return ToString(std::forward<T>(t)...);
328
2
}
_ZN2yb8AsStringIJRNS_7tserver21SplitTabletResponsePBEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
1
std::string AsString(T&&... t) {
327
1
  return ToString(std::forward<T>(t)...);
328
1
}
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__13setINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4lessIS8_EENS6_IS8_EEEEEEES8_DpOT_
_ZN2yb8AsStringIJNS_8HostPortEEEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEDpOT_
Line
Count
Source
326
42
std::string AsString(T&&... t) {
327
42
  return ToString(std::forward<T>(t)...);
328
42
}
_ZN2yb8AsStringIJRKNS_11PartitionPBEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
92
std::string AsString(T&&... t) {
327
92
  return ToString(std::forward<T>(t)...);
328
92
}
_ZN2yb8AsStringIJN5boost4asio2ip14basic_endpointINS3_3tcpEEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEDpOT_
Line
Count
Source
326
2
std::string AsString(T&&... t) {
327
2
  return ToString(std::forward<T>(t)...);
328
2
}
_ZN2yb8AsStringIJRNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEEES7_DpOT_
Line
Count
Source
326
1
std::string AsString(T&&... t) {
327
1
  return ToString(std::forward<T>(t)...);
328
1
}
_ZN2yb8AsStringIJN5boost4asio2ip7addressEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Line
Count
Source
326
10.7k
std::string AsString(T&&... t) {
327
10.7k
  return ToString(std::forward<T>(t)...);
328
10.7k
}
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__16vectorIiNS1_9allocatorIiEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEDpOT_
_ZN2yb8AsStringIJiEEENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Line
Count
Source
326
20
std::string AsString(T&&... t) {
327
20
  return ToString(std::forward<T>(t)...);
328
20
}
_ZN2yb8AsStringIJRKmEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Line
Count
Source
326
75.2k
std::string AsString(T&&... t) {
327
75.2k
  return ToString(std::forward<T>(t)...);
328
75.2k
}
_ZN2yb8AsStringIJRKN6google8protobuf13RepeatedFieldIjEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEDpOT_
Line
Count
Source
326
6
std::string AsString(T&&... t) {
327
6
  return ToString(std::forward<T>(t)...);
328
6
}
_ZN2yb8AsStringIJRKN6google8protobuf16RepeatedPtrFieldINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEEEEESA_DpOT_
Line
Count
Source
326
3
std::string AsString(T&&... t) {
327
3
  return ToString(std::forward<T>(t)...);
328
3
}
_ZN2yb8AsStringIJRN6google8protobuf16RepeatedPtrFieldINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEEEEESA_DpOT_
Line
Count
Source
326
3
std::string AsString(T&&... t) {
327
3
  return ToString(std::forward<T>(t)...);
328
3
}
_ZN2yb8AsStringIJRKN6google8protobuf13RepeatedFieldIiEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEDpOT_
Line
Count
Source
326
1
std::string AsString(T&&... t) {
327
1
  return ToString(std::forward<T>(t)...);
328
1
}
_ZN2yb8AsStringIJRN6google8protobuf13RepeatedFieldIiEEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Line
Count
Source
326
1
std::string AsString(T&&... t) {
327
1
  return ToString(std::forward<T>(t)...);
328
1
}
_ZN2yb8AsStringIJRKN6google8protobuf16RepeatedPtrFieldINS_8rpc_test23LightweightSubMessagePBEEEEEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEDpOT_
Line
Count
Source
326
6
std::string AsString(T&&... t) {
327
6
  return ToString(std::forward<T>(t)...);
328
6
}
_ZN2yb8AsStringIJRN6google8protobuf16RepeatedPtrFieldINS_8rpc_test23LightweightSubMessagePBEEEEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEDpOT_
Line
Count
Source
326
2
std::string AsString(T&&... t) {
327
2
  return ToString(std::forward<T>(t)...);
328
2
}
_ZN2yb8AsStringIJRKN6google8protobuf13RepeatedFieldIyEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEDpOT_
Line
Count
Source
326
2
std::string AsString(T&&... t) {
327
2
  return ToString(std::forward<T>(t)...);
328
2
}
_ZN2yb8AsStringIJRN6google8protobuf13RepeatedFieldIyEEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Line
Count
Source
326
2
std::string AsString(T&&... t) {
327
2
  return ToString(std::forward<T>(t)...);
328
2
}
_ZN2yb8AsStringIJRN6google8protobuf13RepeatedFieldIjEEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Line
Count
Source
326
2
std::string AsString(T&&... t) {
327
2
  return ToString(std::forward<T>(t)...);
328
2
}
_ZN2yb8AsStringIJRKNS_8rpc_test23LightweightSubMessagePBEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Line
Count
Source
326
4
std::string AsString(T&&... t) {
327
4
  return ToString(std::forward<T>(t)...);
328
4
}
_ZN2yb8AsStringIJRNS_8rpc_test22LWLightweightRequestPBEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
2
std::string AsString(T&&... t) {
327
2
  return ToString(std::forward<T>(t)...);
328
2
}
Unexecuted instantiation: _ZN2yb8AsStringIJNS_11RangeObjectImEEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNS_20ContainerRangeObjectINS_11RangeObjectImEENSt3__16vectorIiNS4_9allocatorIiEEEEEEEEENS4_12basic_stringIcNS4_11char_traitsIcEENS6_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKN6google8protobuf16RepeatedPtrFieldINS_6tablet14SnapshotFilePBEEEEEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRNS_8LRUCacheIiEEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
2
std::string AsString(T&&... t) {
327
2
  return ToString(std::forward<T>(t)...);
328
2
}
_ZN2yb8AsStringIJRKiEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Line
Count
Source
326
129
std::string AsString(T&&... t) {
327
129
  return ToString(std::forward<T>(t)...);
328
129
}
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__15tupleIJNS_5SliceEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__15tupleIJNS_5SliceES3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__15tupleIJNS_5SliceES3_S3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__15tupleIJNS_5SliceES3_S3_S3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__15tupleIJNS_5SliceES3_S3_S3_S3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__15tupleIJNS_5SliceES3_S3_S3_S3_S3_S3_S3_S3_S3_S3_EEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRiEEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEDpOT_
Line
Count
Source
326
10
std::string AsString(T&&... t) {
327
10
  return ToString(std::forward<T>(t)...);
328
10
}
_ZN2yb8AsStringIJRKNSt3__16vectorIiNS1_9allocatorIiEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEDpOT_
Line
Count
Source
326
1
std::string AsString(T&&... t) {
327
1
  return ToString(std::forward<T>(t)...);
328
1
}
_ZN2yb8AsStringIJRKNS_16TrackedSharedPtrINS_7TestObjEEEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Line
Count
Source
326
3
std::string AsString(T&&... t) {
327
3
  return ToString(std::forward<T>(t)...);
328
3
}
_ZN2yb8AsStringIJRPNS_7TestObjEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
5
std::string AsString(T&&... t) {
327
5
  return ToString(std::forward<T>(t)...);
328
5
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__16vectorINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS6_IS8_EEEEEEES8_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_9consensus12ElectionModeEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRKbEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Line
Count
Source
326
303
std::string AsString(T&&... t) {
327
303
  return ToString(std::forward<T>(t)...);
328
303
}
_ZN2yb8AsStringIJRKNS_26RestartSafeCoarseTimePointEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
6.01k
std::string AsString(T&&... t) {
327
6.01k
  return ToString(std::forward<T>(t)...);
328
6.01k
}
_ZN2yb8AsStringIJRKNS_9consensus17ConsensusStatusPBEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Line
Count
Source
326
68.4k
std::string AsString(T&&... t) {
327
68.4k
  return ToString(std::forward<T>(t)...);
328
68.4k
}
Unexecuted instantiation: _ZN2yb8AsStringIJRK13scoped_refptrINS_9consensus14ConsensusRoundEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNS_4OpIdEEEENSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__15dequeI13scoped_refptrINS_9consensus14ConsensusRoundEENS1_9allocatorIS6_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__15dequeI13scoped_refptrINS_9consensus14ConsensusRoundEENS1_9allocatorIS6_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEDpOT_
Unexecuted instantiation: retryable_requests.cc:_ZN2yb8AsStringIJRN5boost11multi_index6detail12hashed_indexINS2_6memberINS_9consensus12_GLOBAL__N_123RunningRetryableRequestExXadL_ZNS8_10request_idEEEEENS1_4hashIxEENSt3__18equal_toIxEENS3_9nth_layerILi1ES8_NS2_10indexed_byINS2_13hashed_uniqueINS2_3tagINS7_14RequestIdIndexEN4mpl_2naESL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_EES9_SL_SL_EESL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_SL_EENSC_9allocatorIS8_EEEENS1_3mpl6v_itemISJ_NSS_7vector0ISL_EELi0EEENS3_17hashed_unique_tagEEEEEENSC_12basic_stringIcNSC_11char_traitsIcEENSP_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__16vectorINS_4OpIdENS1_9allocatorIS3_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_14load_generator10ReadStatusEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRNSt3__16vectorINS1_10shared_ptrINS_6master12TSDescriptorEEENS1_9allocatorIS6_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEDpOT_
Line
Count
Source
326
70
std::string AsString(T&&... t) {
327
70
  return ToString(std::forward<T>(t)...);
328
70
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_13BlockingQueueIPNS_3log13LogEntryBatchENS_18DefaultLogicalSizeEEEEEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__16atomicINS_18TaskStreamRunStateEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__16atomicIbEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRNS_6server18MonitoredTaskStateEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
228
std::string AsString(T&&... t) {
327
228
  return ToString(std::forward<T>(t)...);
328
228
}
Unexecuted instantiation: _ZN2yb8AsStringIJRK13scoped_refptrINS_6master9TableInfoEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRNS_11IndexInfoPBEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Line
Count
Source
326
4.01k
std::string AsString(T&&... t) {
327
4.01k
  return ToString(std::forward<T>(t)...);
328
4.01k
}
_ZN2yb8AsStringIJRKN6google8protobuf16RepeatedPtrFieldINSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEEEPFNS_4UuidERKNS_5SliceEEEEESA_DpOT_
Line
Count
Source
326
2.74k
std::string AsString(T&&... t) {
327
2.74k
  return ToString(std::forward<T>(t)...);
328
2.74k
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6master17TableIdentifierPBEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__15arrayINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEELm2EEEEEES8_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRPNS_6master10TabletInfoEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRPNS_9consensus16ConsensusStatePBEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master13TabletReplicaENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SA_EEEEEEEEES8_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__14pairIKNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEE13scoped_refptrINS_6master9TableInfoEEEEEEES8_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_11PartitionPBEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__113unordered_setINS1_10shared_ptrINS_6server13MonitoredTaskEEENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorIS6_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSB_IcEEEEDpOT_
_ZN2yb8AsStringIJNSt3__16chrono8durationIxNS1_5ratioILl1ELl1000000000EEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Line
Count
Source
326
31
std::string AsString(T&&... t) {
327
31
  return ToString(std::forward<T>(t)...);
328
31
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__113unordered_setINS_11CloudInfoPBENS_6master10cloud_hashENS4_14cloud_equal_toENS1_9allocatorIS3_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__13setINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4lessIS8_EENS6_IS8_EEEEEEES8_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_8MonoTimeENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_S9_EEEEEEEEES8_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__16vectorI13scoped_refptrINS_6master10TabletInfoEENS1_9allocatorIS6_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__16vectorINS_6master23TabletSnapshotOperationENS1_9allocatorIS4_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_17StronglyTypedUuidINS_17TxnSnapshotId_TagEEEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6master24SysSnapshotEntryPB_StateEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6master25SnapshotScheduleOperationEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6master29SnapshotScheduleOperationTypeEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6master24SnapshotScheduleFilterPBEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_6ResultINS_6master13SysRowEntriesEEEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6master13SysRowEntriesEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__16vectorI13scoped_refptrINS_6master10TabletInfoEENS1_9allocatorIS6_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__16vectorINS_5docdb14PrimitiveValueENS1_9allocatorIS4_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6master25SnapshotScheduleOptionsPBEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__16chrono8durationIxNS1_5ratioILl1ELl1EEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master15SysRowEntryTypeENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SA_EEEEEEEEES8_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__113unordered_mapINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEENS_10HybridTimeEN5boost4hashIS5_EENS1_8equal_toIS5_EENS1_9allocatorINS1_4pairIKS5_S6_EEEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSC_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6master19SysNamespaceEntryPBENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SA_EEEEEEEEES8_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRPKNSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEEES7_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRN6google8protobuf16RepeatedPtrFieldINS_6master14SnapshotInfoPBEEEEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRKN5boost4asio2ip14basic_endpointINS3_3tcpEEEEEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEDpOT_
Line
Count
Source
326
10.7k
std::string AsString(T&&... t) {
327
10.7k
  return ToString(std::forward<T>(t)...);
328
10.7k
}
_ZN2yb8AsStringIJtEEENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Line
Count
Source
326
10.7k
std::string AsString(T&&... t) {
327
10.7k
  return ToString(std::forward<T>(t)...);
328
10.7k
}
audit_logger.cc:_ZN2yb8AsStringIJRKNS_2ql5audit12_GLOBAL__N_18CategoryEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEDpOT_
Line
Count
Source
326
10.7k
std::string AsString(T&&... t) {
327
10.7k
  return ToString(std::forward<T>(t)...);
328
10.7k
}
_ZN2yb8AsStringIJN5boost5uuids4uuidEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
3
std::string AsString(T&&... t) {
327
3
  return ToString(std::forward<T>(t)...);
328
3
}
_ZN2yb8AsStringIJRKNSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEES8_NS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_S8_EEEEEEEEES8_DpOT_
Line
Count
Source
326
656k
std::string AsString(T&&... t) {
327
656k
  return ToString(std::forward<T>(t)...);
328
656k
}
_ZN2yb8AsStringIJRKyEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Line
Count
Source
326
14.5k
std::string AsString(T&&... t) {
327
14.5k
  return ToString(std::forward<T>(t)...);
328
14.5k
}
_ZN2yb8AsStringIJRKN7rocksdb18FileBoundaryValuesINSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEEEES9_DpOT_
Line
Count
Source
326
190
std::string AsString(T&&... t) {
327
190
  return ToString(std::forward<T>(t)...);
328
190
}
_ZN2yb8AsStringIJNS_8rpc_test21LightweightResponsePBEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Line
Count
Source
326
2
std::string AsString(T&&... t) {
327
2
  return ToString(std::forward<T>(t)...);
328
2
}
_ZN2yb8AsStringIJRNS_8rpc_test23LWLightweightResponsePBEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
2
std::string AsString(T&&... t) {
327
2
  return ToString(std::forward<T>(t)...);
328
2
}
Unexecuted instantiation: _ZN2yb8AsStringIJNS_6tablet16RaftGroupStatePBEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNS_9consensus12LeaderStatusEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_7tserver19TabletServerErrorPBEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRKNSt3__16chrono10time_pointINS_15CoarseMonoClockENS2_8durationIxNS1_5ratioILl1ELl1000000000EEEEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Line
Count
Source
326
13
std::string AsString(T&&... t) {
327
13
  return ToString(std::forward<T>(t)...);
328
13
}
_ZN2yb8AsStringIJRKjEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Line
Count
Source
326
2.83k
std::string AsString(T&&... t) {
327
2.83k
  return ToString(std::forward<T>(t)...);
328
2.83k
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_23TransactionStatusResultEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_10HybridTimeEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRKNSt3__16vectorINS_9IndexInfoENS1_9allocatorIS3_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEDpOT_
Line
Count
Source
326
235
std::string AsString(T&&... t) {
327
235
  return ToString(std::forward<T>(t)...);
328
235
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_12QLResponsePBEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_16QLWriteRequestPBEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__113unordered_setINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_IS8_EEEEEEES8_DpOT_
_ZN2yb8AsStringIJRNSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEiNS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_iEEEEEEEEES8_DpOT_
Line
Count
Source
326
5
std::string AsString(T&&... t) {
327
5
  return ToString(std::forward<T>(t)...);
328
5
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_15QLReadRequestPBEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: tablet_bootstrap.cc:_ZN2yb8AsStringIJRKNS_6tablet12_GLOBAL__N_114ReplayDecisionEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_17StronglyTypedBoolINS_6tablet29AlreadyAppliedToRegularDB_TagEEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRPNS_6tablet18UpdateTxnOperationEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6tablet22TransactionCoordinator14ReplicatedDataEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Unexecuted instantiation: transaction_coordinator.cc:_ZN2yb8AsStringIJRNSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS_6tablet12_GLOBAL__N_116TransactionState19InvolvedTabletStateENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SC_EEEEEEEEES8_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6tablet22TransactionCoordinator11AbortedDataEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Unexecuted instantiation: transaction_coordinator.cc:_ZN2yb8AsStringIJRKNSt3__16vectorINS_6tablet12_GLOBAL__N_121ExpectedTabletBatchesENS1_9allocatorIS5_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6tablet18TransactionStatePBEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_5docdb21ApplyTransactionStateEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRKNS_17StronglyTypedUuidINS_17TransactionId_TagEEEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Line
Count
Source
326
24
std::string AsString(T&&... t) {
327
24
  return ToString(std::forward<T>(t)...);
328
24
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6tablet12RemoveReasonEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_6tablet12RemoveReasonEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_6tablet18RunningTransactionEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6tablet20TransactionApplyDataEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_11CleanupTypeEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRN5boost11multi_index21multi_index_containerINSt3__110shared_ptrINS_6tablet18RunningTransactionEEENS2_10indexed_byINS2_13hashed_uniqueINS2_13const_mem_funIS7_RKNS_17StronglyTypedUuidINS_17TransactionId_TagEEEXadL_ZNKS7_2idEvEEEEN4mpl_2naESJ_SJ_EENS2_18ordered_non_uniqueINS2_3tagINS6_22TransactionParticipant4Impl12StartTimeTagESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENSB_IS7_NS_10HybridTimeEXadL_ZNKS7_8start_htEvEEEESJ_EENSL_INSM_INSO_17AbortCheckTimeTagESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENSB_IS7_SR_XadL_ZNKS7_14abort_check_htEvEEEESJ_EESJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_SJ_EENS4_9allocatorIS8_EEEERZNSO_30TEST_GetNumRunningTransactionsEvEUlRKS8_E_EEENS4_12basic_stringIcNS4_11char_traitsIcEENSZ_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__15dequeIxNS1_9allocatorIxEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_6tablet22TransactionParticipant4Impl16RemoveQueueEntryEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRKPKNS_5docdb21ApplyTransactionStateEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEDpOT_
Line
Count
Source
326
4
std::string AsString(T&&... t) {
327
4
  return ToString(std::forward<T>(t)...);
328
4
}
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__113unordered_mapINS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEENS1_5dequeINS_17StronglyTypedUuidINS_17TransactionId_TagEEENS6_ISC_EEEENS1_4hashIS8_EENS1_8equal_toIS8_EENS6_INS1_4pairIKS8_SE_EEEEEEEEES8_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJPNS_6tablet15OperationDriverEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRKNS_6tablet20FixedHybridTimeLeaseEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Line
Count
Source
326
5
std::string AsString(T&&... t) {
327
5
  return ToString(std::forward<T>(t)...);
328
5
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6tablet18SafeTimeWithSourceEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJNSt3__16vectorINS_17StronglyTypedUuidINS_22SnapshotScheduleId_TagEEENS1_9allocatorIS5_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS6_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJN5boost14iterator_rangeINSt3__111__wrap_iterIPPNS_6tablet15OperationDriverEEEEEEEENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRPKNS_7tserver14WriteRequestPBEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_6tablet7WritePBEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJPNS_12QLResponsePBEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__110shared_ptrINS_6client11YBqlWriteOpEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRNS_6tablet14SplitOperationEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
2
std::string AsString(T&&... t) {
327
2
  return ToString(std::forward<T>(t)...);
328
2
}
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__110shared_ptrINS_9consensus18StateChangeContextEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6master30GetLoadBalancerStateResponsePBEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6master21SplitTabletResponsePBEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_6ResultI13scoped_refptrINS_6client8internal12RemoteTabletEEEEEEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRK13scoped_refptrINS_6client8internal12RemoteTabletEEEEENSt3__112basic_stringIcNS8_11char_traitsIcEENS8_9allocatorIcEEEEDpOT_
Line
Count
Source
326
5
std::string AsString(T&&... t) {
327
5
  return ToString(std::forward<T>(t)...);
328
5
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6client8internal8AsyncRpcEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJN5boost14iterator_rangeINSt3__111__wrap_iterIPNS_6client8internal10InFlightOpEEEEEEEENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJPKNS_6client8internal19ClientMasterRpcBaseEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Line
Count
Source
326
13.8k
std::string AsString(T&&... t) {
327
13.8k
  return ToString(std::forward<T>(t)...);
328
13.8k
}
_ZN2yb8AsStringIJRKNSt3__110shared_ptrINS_6client11YBOperationEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Line
Count
Source
326
5
std::string AsString(T&&... t) {
327
5
  return ToString(std::forward<T>(t)...);
328
5
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6master17TabletLocationsPBEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRKNS_9PartitionEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
8.20k
std::string AsString(T&&... t) {
327
8.20k
  return ToString(std::forward<T>(t)...);
328
8.20k
}
_ZN2yb8AsStringIJRKN5boost8optionalIjEEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Line
Count
Source
326
8.20k
std::string AsString(T&&... t) {
327
8.20k
  return ToString(std::forward<T>(t)...);
328
8.20k
}
Unexecuted instantiation: _ZN2yb8AsStringIJRPNS_6client8internal9LookupRpcEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKN6google8protobuf16RepeatedPtrFieldINS_6master17TabletLocationsPBEEEEEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__110shared_ptrINS_6client8internal14LookupByKeyRpcEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJR13scoped_refptrINS_6client8internal12RemoteTabletEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__110shared_ptrIKNS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEEEEES8_DpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_6client11YBOperationEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRNSt3__16vectorIPNS_6client8internal18RemoteTabletServerENS1_9allocatorIS6_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS7_IcEEEEDpOT_
Line
Count
Source
326
576
std::string AsString(T&&... t) {
327
576
  return ToString(std::forward<T>(t)...);
328
576
}
_ZN2yb8AsStringIJRNSt3__113unordered_mapIPNS_6client8internal18RemoteTabletServerENS4_13TabletInvoker12FollowerDataENS1_4hashIS6_EENS1_8equal_toIS6_EENS1_9allocatorINS1_4pairIKS6_S8_EEEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSD_IcEEEEDpOT_
Line
Count
Source
326
576
std::string AsString(T&&... t) {
327
576
  return ToString(std::forward<T>(t)...);
328
576
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6ResultI13scoped_refptrINS_6client8internal12RemoteTabletEEEEEEENSt3__112basic_stringIcNSA_11char_traitsIcEENSA_9allocatorIcEEEEDpOT_
Unexecuted instantiation: transaction.cc:_ZN2yb8AsStringIJRNS_6client12_GLOBAL__N_116TransactionStateEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRN5boost9container12small_vectorINS_6client8internal16InFlightOpsGroupELm40EvvEEEEENSt3__112basic_stringIcNS9_11char_traitsIcEENS9_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJmEEENSt3__112basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Line
Count
Source
326
114k
std::string AsString(T&&... t) {
327
114k
  return ToString(std::forward<T>(t)...);
328
114k
}
_ZN2yb8AsStringIJRNS_17StronglyTypedUuidINS_17TransactionId_TagEEEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Line
Count
Source
326
242k
std::string AsString(T&&... t) {
327
242k
  return ToString(std::forward<T>(t)...);
328
242k
}
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_8ColumnIdEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_14QLExpressionPBEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRPKNS_5docdb9KeyBoundsEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_10WaitPolicyEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_6ResultINS_23TransactionStatusResultEEEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: conflict_resolution.cc:_ZN2yb8AsStringIJRNSt3__13mapINS_10ByteBufferILm64EEENS_5docdb12_GLOBAL__N_110IntentDataENS1_4lessIS4_EENS1_9allocatorINS1_4pairIKS4_S7_EEEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENSA_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_10EnumBitSetINS_5docdb10IntentTypeEEEEEENSt3__112basic_stringIcNS7_11char_traitsIcEENS7_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_10WaitPolicyEEEENSt3__112basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_12ColumnSchemaEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRKNSt3__16vectorINS_5docdb14LockBatchEntryENS1_9allocatorIS4_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS5_IcEEEEDpOT_
Line
Count
Source
326
1
std::string AsString(T&&... t) {
327
1
  return ToString(std::forward<T>(t)...);
328
1
}
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_5docdb13StorageDbTypeEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_9MonoDeltaEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_5docdb19ResolvedIntentStateEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_5docdb8KeyBytesEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRNSt3__16vectorImNS1_9allocatorImEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS3_IcEEEEDpOT_
Line
Count
Source
326
2
std::string AsString(T&&... t) {
327
2
  return ToString(std::forward<T>(t)...);
328
2
}
Unexecuted instantiation: _ZN2yb8AsStringIJRNSt3__16vectorINS2_INS_8HostPortENS1_9allocatorIS3_EEEENS4_IS6_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS4_IcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_6pggate16PgIsolationLevelEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_14IsolationLevelEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNSt3__16vectorINS1_10unique_ptrINS_22PriorityThreadPoolTaskENS1_14default_deleteIS4_EEEENS1_9allocatorIS7_EEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS8_IcEEEEDpOT_
_ZN2yb8AsStringIJRPNS_10MemTrackerEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
11
std::string AsString(T&&... t) {
327
11
  return ToString(std::forward<T>(t)...);
328
11
}
_ZN2yb8AsStringIJRNSt3__110shared_ptrINS_3rpc12OutboundDataEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Line
Count
Source
326
1
std::string AsString(T&&... t) {
327
1
  return ToString(std::forward<T>(t)...);
328
1
}
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_6ResultINS_3rpc18ProcessCallsResultEEEEEENSt3__112basic_stringIcNS6_11char_traitsIcEENS6_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRKNS_3rpc18ProcessCallsResultEEEENSt3__112basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRNSt3__16chrono10time_pointINS_15CoarseMonoClockENS2_8durationIxNS1_5ratioILl1ELl1000000000EEEEEEEEEENS1_12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEDpOT_
Line
Count
Source
326
30
std::string AsString(T&&... t) {
327
30
  return ToString(std::forward<T>(t)...);
328
30
}
Unexecuted instantiation: _ZN2yb8AsStringIJRNS_3rpc16MarkAsDoneResultEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Unexecuted instantiation: _ZN2yb8AsStringIJRN5boost9container13stable_vectorINSt3__110shared_ptrINS_3rpc10RpcCommandEEEvEEEEENS4_12basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
_ZN2yb8AsStringIJRNS_3rpc12OutboundDataEEEENSt3__112basic_stringIcNS4_11char_traitsIcEENS4_9allocatorIcEEEEDpOT_
Line
Count
Source
326
7
std::string AsString(T&&... t) {
327
7
  return ToString(std::forward<T>(t)...);
328
7
}
329
330
} // namespace yb
331
332
#if BOOST_PP_VARIADICS
333
334
#define YB_FIELD_TO_STRING(r, data, elem) \
335
641k
    " " BOOST_PP_STRINGIZE(elem) ": " + yb::AsString(BOOST_PP_CAT(elem, BOOST_PP_APPLY(data))) +
336
#define YB_FIELDS_TO_STRING(data, ...) \
337
490k
    BOOST_PP_SEQ_FOR_EACH(YB_FIELD_TO_STRING, data(), BOOST_PP_VARIADIC_TO_SEQ(__VA_ARGS__))
338
339
// This can be used to simplify ToString function implementations in structs where field names do
340
// not end with an underscore. Suppose we have a struct with fields a and b. If we implement
341
// ToString as
342
//
343
// std::string ToString() const {
344
//   return YB_STRUCT_TO_STRING(a, b);
345
// }
346
//
347
// we will get ToString return values of the form "{ a: value_for_a b: value_for_b }".
348
#define YB_STRUCT_TO_STRING(...) \
349
45.9k
    "{" YB_FIELDS_TO_STRING(BOOST_PP_NIL, __VA_ARGS__) " }"
350
351
// This can be used to simplify ToString function implementations in classes where field names end
352
// with an underscore. Suppose we have a class with fields a_ and b_. If we implement ToString as
353
//
354
// std::string ToString() const {
355
//   return YB_CLASS_TO_STRING(a, b);
356
// }
357
//
358
// we will get ToString return values of the form "{ a: value_for_a b: value_for_b }".
359
#define YB_CLASS_TO_STRING(...) \
360
17.5k
    "{" YB_FIELDS_TO_STRING((BOOST_PP_IDENTITY(_)), __VA_ARGS__) " }"
361
362
#else
363
#error "Compiler not supported -- BOOST_PP_VARIADICS is not set. See https://bit.ly/2ZF7rTu."
364
#endif
365
366
#endif // YB_UTIL_TOSTRING_H