Home
last modified time | relevance | path

Searched refs:PROTOBUF_EXPORT (Results 1 – 25 of 102) sorted by relevance

12345

/external/protobuf/src/google/protobuf/stubs/
Dstrutil.h160 PROTOBUF_EXPORT void ReplaceCharacters(string* s, const char* remove,
162 PROTOBUF_EXPORT void StripString(string* s, const char* remove,
165 PROTOBUF_EXPORT void StripWhitespace(string* s);
207 PROTOBUF_EXPORT string StringReplace(const string& s, const string& oldsub,
216 PROTOBUF_EXPORT void SplitStringUsing(const string& full, const char* delim,
227 PROTOBUF_EXPORT void SplitStringAllowEmpty(const string& full,
254 PROTOBUF_EXPORT void JoinStrings(const std::vector<string>& components,
295 PROTOBUF_EXPORT int UnescapeCEscapeSequences(const char* source, char* dest);
296 PROTOBUF_EXPORT int UnescapeCEscapeSequences(const char* source, char* dest,
314 PROTOBUF_EXPORT int UnescapeCEscapeString(const string& src, string* dest);
[all …]
Dstringprintf.h55 PROTOBUF_EXPORT extern string StringPrintf(const char* format, ...);
58 PROTOBUF_EXPORT extern const string& SStringPrintf(string* dst,
62 PROTOBUF_EXPORT extern void StringAppendF(string* dst, const char* format, ...);
66 PROTOBUF_EXPORT extern void StringAppendV(string* dst, const char* format,
70 PROTOBUF_EXPORT extern const int kStringPrintfVectorMaxArgs;
75 PROTOBUF_EXPORT extern string StringPrintfVector(const char* format,
Dcommon.h104 void PROTOBUF_EXPORT VerifyVersion(int headerVersion, int minLibraryVersion,
108 std::string PROTOBUF_EXPORT VersionString(int version);
130 PROTOBUF_EXPORT bool IsStructurallyValidUTF8(const char* buf, int len);
137 PROTOBUF_EXPORT int UTF8SpnStructurallyValid(const StringPiece& str);
151 PROTOBUF_EXPORT char* UTF8CoerceToStructurallyValid(const StringPiece& str,
175 PROTOBUF_EXPORT void ShutdownProtobufLibrary();
180 PROTOBUF_EXPORT void OnShutdown(void (*func)());
182 PROTOBUF_EXPORT void OnShutdownRun(void (*f)(const void*), const void* arg);
Dbytestream.h78 class PROTOBUF_EXPORT ByteSink {
107 class PROTOBUF_EXPORT ByteSource {
163 class PROTOBUF_EXPORT UncheckedArrayByteSink : public ByteSink {
191 class PROTOBUF_EXPORT CheckedArrayByteSink : public ByteSink {
227 class PROTOBUF_EXPORT GrowingArrayByteSink : public strings::ByteSink {
257 class PROTOBUF_EXPORT StringByteSink : public ByteSink {
274 class PROTOBUF_EXPORT NullByteSink : public ByteSink {
296 class PROTOBUF_EXPORT ArrayByteSource : public ByteSource {
327 class PROTOBUF_EXPORT LimitByteSource : public ByteSource {
Dtime.h54 bool PROTOBUF_EXPORT SecondsToDateTime(int64 seconds, DateTime* time);
57 bool PROTOBUF_EXPORT DateTimeToSeconds(const DateTime& time, int64* seconds);
59 void PROTOBUF_EXPORT GetCurrentTime(int64* seconds, int32* nanos);
68 string PROTOBUF_EXPORT FormatTime(int64 seconds, int32 nanos);
71 bool PROTOBUF_EXPORT ParseTime(const string& value, int64* seconds,
Dmutex.h78 class PROTOBUF_EXPORT CriticalSectionLock {
96 class PROTOBUF_EXPORT GOOGLE_PROTOBUF_CAPABILITY("mutex") WrappedMutex {
116 class PROTOBUF_EXPORT MutexLock {
130 class PROTOBUF_EXPORT MutexLockMaybe {
/external/protobuf/src/google/protobuf/io/
Dio_win32.h64 PROTOBUF_EXPORT FILE* fopen(const char* path, const char* mode);
65 PROTOBUF_EXPORT int access(const char* path, int mode);
66 PROTOBUF_EXPORT int chdir(const char* path);
67 PROTOBUF_EXPORT int close(int fd);
68 PROTOBUF_EXPORT int dup(int fd);
69 PROTOBUF_EXPORT int dup2(int fd1, int fd2);
70 PROTOBUF_EXPORT int mkdir(const char* path, int _mode);
71 PROTOBUF_EXPORT int open(const char* path, int flags, int mode = 0);
72 PROTOBUF_EXPORT int read(int fd, void* buffer, size_t size);
73 PROTOBUF_EXPORT int setmode(int fd, int mode);
[all …]
Dzero_copy_stream_impl.h64 class PROTOBUF_EXPORT FileInputStream : public ZeroCopyInputStream {
97 class PROTOBUF_EXPORT CopyingFileInputStream : public CopyingInputStream {
141 class PROTOBUF_EXPORT FileOutputStream : public ZeroCopyOutputStream {
179 class PROTOBUF_EXPORT CopyingFileOutputStream : public CopyingOutputStream {
215 class PROTOBUF_EXPORT IstreamInputStream : public ZeroCopyInputStream {
230 class PROTOBUF_EXPORT CopyingIstreamInputStream : public CopyingInputStream {
258 class PROTOBUF_EXPORT OstreamOutputStream : public ZeroCopyOutputStream {
273 class PROTOBUF_EXPORT CopyingOstreamOutputStream
304 class PROTOBUF_EXPORT ConcatenatingInputStream : public ZeroCopyInputStream {
Dzero_copy_stream_impl_lite.h65 class PROTOBUF_EXPORT ArrayInputStream : public ZeroCopyInputStream {
99 class PROTOBUF_EXPORT ArrayOutputStream : public ZeroCopyOutputStream {
131 class PROTOBUF_EXPORT StringOutputStream : public ZeroCopyOutputStream {
175 class PROTOBUF_EXPORT CopyingInputStream {
201 class PROTOBUF_EXPORT CopyingInputStreamAdaptor : public ZeroCopyInputStream {
269 class PROTOBUF_EXPORT CopyingOutputStream {
285 class PROTOBUF_EXPORT CopyingOutputStreamAdaptor : public ZeroCopyOutputStream {
345 class PROTOBUF_EXPORT LimitingInputStream : public ZeroCopyInputStream {
/external/protobuf/src/google/protobuf/util/internal/
Dutility.h62 PROTOBUF_EXPORT bool GetBoolOptionOrDefault(
68 PROTOBUF_EXPORT int64 GetInt64OptionOrDefault(
74 PROTOBUF_EXPORT double GetDoubleOptionOrDefault(
80 PROTOBUF_EXPORT std::string GetStringOptionOrDefault(
88 PROTOBUF_EXPORT bool GetBoolFromAny(const google::protobuf::Any& any);
91 PROTOBUF_EXPORT int64 GetInt64FromAny(const google::protobuf::Any& any);
94 PROTOBUF_EXPORT double GetDoubleFromAny(const google::protobuf::Any& any);
97 PROTOBUF_EXPORT std::string GetStringFromAny(const google::protobuf::Any& any);
101 PROTOBUF_EXPORT const StringPiece GetTypeWithoutUrl(
110 PROTOBUF_EXPORT const std::string GetFullTypeWithUrl(
[all …]
/external/protobuf/src/google/protobuf/
Dgenerated_message_util.h84 PROTOBUF_EXPORT void InitProtobufDefaults();
87 PROTOBUF_EXPORT inline const std::string& GetEmptyString() { in GetEmptyString()
136 PROTOBUF_EXPORT void ExtensionSerializer(const uint8* base, uint32 offset,
139 PROTOBUF_EXPORT void UnknownFieldSerializerLite(const uint8* base,
144 PROTOBUF_EXPORT MessageLite* DuplicateIfNonNullInternal(MessageLite* message);
145 PROTOBUF_EXPORT MessageLite* GetOwnedMessageInternal(Arena* message_arena,
148 PROTOBUF_EXPORT void GenericSwap(MessageLite* m1, MessageLite* m2);
170 class PROTOBUF_EXPORT CachedSize {
181 struct PROTOBUF_EXPORT SCCInfoBase {
215 PROTOBUF_EXPORT void InitSCCImpl(SCCInfoBase* scc);
[all …]
Drepeated_field.cc124 template class PROTOBUF_EXPORT RepeatedField<bool>;
125 template class PROTOBUF_EXPORT RepeatedField<int32>;
126 template class PROTOBUF_EXPORT RepeatedField<uint32>;
127 template class PROTOBUF_EXPORT RepeatedField<int64>;
128 template class PROTOBUF_EXPORT RepeatedField<uint64>;
129 template class PROTOBUF_EXPORT RepeatedField<float>;
130 template class PROTOBUF_EXPORT RepeatedField<double>;
131 template class PROTOBUF_EXPORT RepeatedPtrField<std::string>;
Dparse_context.h61 PROTOBUF_EXPORT void WriteVarint(uint32 num, uint64 val, std::string* s);
62 PROTOBUF_EXPORT void WriteLengthDelimited(uint32 num, StringPiece val,
107 class PROTOBUF_EXPORT EpsCopyInputStream {
322 class PROTOBUF_EXPORT ParseContext : public EpsCopyInputStream {
602 PROTOBUF_EXPORT
606 PROTOBUF_EXPORT PROTOBUF_MUST_USE_RESULT const char* InlineGreedyStringParser(
609 PROTOBUF_EXPORT PROTOBUF_MUST_USE_RESULT const char*
707 PROTOBUF_EXPORT PROTOBUF_MUST_USE_RESULT const char* PackedInt32Parser(
709 PROTOBUF_EXPORT PROTOBUF_MUST_USE_RESULT const char* PackedUInt32Parser(
711 PROTOBUF_EXPORT PROTOBUF_MUST_USE_RESULT const char* PackedInt64Parser(
[all …]
Dgenerated_enum_util.h64 PROTOBUF_EXPORT bool LookUpEnumValue(const EnumEntry* enums, size_t size,
68 PROTOBUF_EXPORT int LookUpEnumName(const EnumEntry* enums,
73 PROTOBUF_EXPORT bool InitializeEnumStrings(
Dunknown_field_set.h86 class PROTOBUF_EXPORT UnknownFieldSet {
197 PROTOBUF_EXPORT
201 PROTOBUF_EXPORT
209 PROTOBUF_EXPORT
212 PROTOBUF_EXPORT
215 PROTOBUF_EXPORT
223 class PROTOBUF_EXPORT UnknownField {
Dempty.pb.h37 #define PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2fempty_2eproto PROTOBUF_EXPORT
45 struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2fempty_2eproto {
56 extern PROTOBUF_EXPORT const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_go…
60 PROTOBUF_EXPORT extern EmptyDefaultTypeInternal _Empty_default_instance_;
63 template<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::Empty* Arena::CreateMaybeMessage<PROTOBUF_NAMESPA…
69 class PROTOBUF_EXPORT Empty :
Ddescriptor_database.h50 #define PROTOBUF_EXPORT macro
71 class PROTOBUF_EXPORT DescriptorDatabase {
162 class PROTOBUF_EXPORT SimpleDescriptorDatabase : public DescriptorDatabase {
301 class PROTOBUF_EXPORT EncodedDescriptorDatabase : public DescriptorDatabase {
348 class PROTOBUF_EXPORT DescriptorPoolDatabase : public DescriptorDatabase {
371 class PROTOBUF_EXPORT MergedDescriptorDatabase : public DescriptorDatabase {
Dtext_format.h70 class PROTOBUF_EXPORT TextFormat {
100 class PROTOBUF_EXPORT BaseTextGenerator {
122 class PROTOBUF_EXPORT FastFieldValuePrinter {
158 class PROTOBUF_EXPORT PROTOBUF_DEPRECATED_MSG(
188 class PROTOBUF_EXPORT MessagePrinter {
201 class PROTOBUF_EXPORT Finder {
234 class PROTOBUF_EXPORT Printer {
467 class PROTOBUF_EXPORT ParseInfoTree {
509 class PROTOBUF_EXPORT Parser {
Dwrappers.pb.h37 #define PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2fwrappers_2eproto PROTOBUF_EXPORT
45 struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2fwrappers_2eproto {
56 extern PROTOBUF_EXPORT const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_go…
60 PROTOBUF_EXPORT extern BoolValueDefaultTypeInternal _BoolValue_default_instance_;
63 PROTOBUF_EXPORT extern BytesValueDefaultTypeInternal _BytesValue_default_instance_;
66 PROTOBUF_EXPORT extern DoubleValueDefaultTypeInternal _DoubleValue_default_instance_;
69 PROTOBUF_EXPORT extern FloatValueDefaultTypeInternal _FloatValue_default_instance_;
72 PROTOBUF_EXPORT extern Int32ValueDefaultTypeInternal _Int32Value_default_instance_;
75 PROTOBUF_EXPORT extern Int64ValueDefaultTypeInternal _Int64Value_default_instance_;
78 PROTOBUF_EXPORT extern StringValueDefaultTypeInternal _StringValue_default_instance_;
[all …]
Dduration.pb.h37 #define PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2fduration_2eproto PROTOBUF_EXPORT
45 struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2fduration_2eproto {
56 extern PROTOBUF_EXPORT const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_go…
60 PROTOBUF_EXPORT extern DurationDefaultTypeInternal _Duration_default_instance_;
63 template<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::Duration* Arena::CreateMaybeMessage<PROTOBUF_NAME…
69 class PROTOBUF_EXPORT Duration :
Dtimestamp.pb.h37 #define PROTOBUF_INTERNAL_EXPORT_google_2fprotobuf_2ftimestamp_2eproto PROTOBUF_EXPORT
45 struct PROTOBUF_EXPORT TableStruct_google_2fprotobuf_2ftimestamp_2eproto {
56 extern PROTOBUF_EXPORT const ::PROTOBUF_NAMESPACE_ID::internal::DescriptorTable descriptor_table_go…
60 PROTOBUF_EXPORT extern TimestampDefaultTypeInternal _Timestamp_default_instance_;
63 template<> PROTOBUF_EXPORT PROTOBUF_NAMESPACE_ID::Timestamp* Arena::CreateMaybeMessage<PROTOBUF_NAM…
69 class PROTOBUF_EXPORT Timestamp :
/external/protobuf/src/google/protobuf/util/
Ddelimited_message_util.h65 bool PROTOBUF_EXPORT SerializeDelimitedToFileDescriptor(
68 bool PROTOBUF_EXPORT SerializeDelimitedToOstream(const MessageLite& message,
83 bool PROTOBUF_EXPORT ParseDelimitedFromZeroCopyStream(
86 bool PROTOBUF_EXPORT ParseDelimitedFromCodedStream(MessageLite* message,
95 bool PROTOBUF_EXPORT SerializeDelimitedToZeroCopyStream(
98 bool PROTOBUF_EXPORT SerializeDelimitedToCodedStream(
Dtime_util.h62 class PROTOBUF_EXPORT TimeUtil {
175 PROTOBUF_EXPORT Duration& operator+=(Duration& d1,
177 PROTOBUF_EXPORT Duration& operator-=(Duration& d1,
179 PROTOBUF_EXPORT Duration& operator*=(Duration& d, int64 r); // NOLINT
180 PROTOBUF_EXPORT Duration& operator*=(Duration& d, double r); // NOLINT
181 PROTOBUF_EXPORT Duration& operator/=(Duration& d, int64 r); // NOLINT
182 PROTOBUF_EXPORT Duration& operator/=(Duration& d, double r); // NOLINT
194 PROTOBUF_EXPORT Duration& operator%=(Duration& d1,
246 PROTOBUF_EXPORT int64 operator/(const Duration& d1, const Duration& d2);
261 PROTOBUF_EXPORT Timestamp& operator+=(Timestamp& t,
[all …]
Djson_util.h95 PROTOBUF_EXPORT util::Status MessageToJsonString(const Message& message,
107 PROTOBUF_EXPORT util::Status JsonStringToMessage(
121 PROTOBUF_EXPORT util::Status BinaryToJsonStream(
134 PROTOBUF_EXPORT util::Status BinaryToJsonString(
152 PROTOBUF_EXPORT util::Status JsonToBinaryStream(
165 PROTOBUF_EXPORT util::Status JsonToBinaryString(
180 class PROTOBUF_EXPORT ZeroCopyStreamByteSink : public strings::ByteSink {
/external/protobuf/src/google/protobuf/compiler/
Dimporter.h80 class PROTOBUF_EXPORT SourceTreeDescriptorDatabase : public DescriptorDatabase {
123 class PROTOBUF_EXPORT ValidationErrorCollector
157 class PROTOBUF_EXPORT Importer {
194 class PROTOBUF_EXPORT MultiFileErrorCollector {
215 class PROTOBUF_EXPORT SourceTree {
240 class PROTOBUF_EXPORT DiskSourceTree : public SourceTree {

12345