OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:dllexport_decl
(Results
1 - 25
of
30
) sorted by null
1
2
/external/protobuf/
generate_descriptor_proto.sh
31
./protoc --cpp_out=
dllexport_decl
=LIBPROTOBUF_EXPORT:. google/protobuf/descriptor.proto && \
32
./protoc --cpp_out=
dllexport_decl
=LIBPROTOC_EXPORT:. google/protobuf/compiler/plugin.proto
/external/protobuf/src/google/protobuf/compiler/cpp/
cpp_generator.cc
66
// generator classes. Currently we pass
dllexport_decl
down to all of
70
// If the
dllexport_decl
option is passed to the compiler, we need to write
74
// protoc --cpp_out=
dllexport_decl
=FOO_EXPORT:outdir foo.proto
81
string
dllexport_decl
;
local
84
if (options[i].first == "
dllexport_decl
") {
85
dllexport_decl
= options[i].second;
98
FileGenerator file_generator(file,
dllexport_decl
);
cpp_extension.h
58
// See generator.cc for the meaning of
dllexport_decl
.
60
const string&
dllexport_decl
);
cpp_enum.h
54
// See generator.cc for the meaning of
dllexport_decl
.
56
const string&
dllexport_decl
);
cpp_file.h
62
// See generator.cc for the meaning of
dllexport_decl
.
64
const string&
dllexport_decl
);
cpp_service.h
56
// See generator.cc for the meaning of
dllexport_decl
.
58
const string&
dllexport_decl
);
cpp_file.cc
54
const string&
dllexport_decl
)
64
dllexport_decl_(
dllexport_decl
) {
68
new MessageGenerator(file->message_type(i),
dllexport_decl
));
73
new EnumGenerator(file->enum_type(i),
dllexport_decl
));
78
new ServiceGenerator(file->service(i),
dllexport_decl
));
83
new ExtensionGenerator(file->extension(i),
dllexport_decl
));
163
"void $
dllexport_decl
$ $adddescriptorsname$();\n",
165
"
dllexport_decl
", dllexport_decl_);
168
// Note that we don't put
dllexport_decl
on these because they are only
cpp_bootstrap_unittest.cc
136
parameter = "
dllexport_decl
=LIBPROTOBUF_EXPORT";
139
parameter = "
dllexport_decl
=LIBPROTOC_EXPORT";
cpp_message.h
58
// See generator.cc for the meaning of
dllexport_decl
.
60
const string&
dllexport_decl
);
cpp_extension.cc
60
const string&
dllexport_decl
)
62
dllexport_decl_(
dllexport_decl
) {
cpp_service.cc
46
const string&
dllexport_decl
)
50
if (
dllexport_decl
.empty()) {
53
vars_["dllexport"] =
dllexport_decl
+ " ";
cpp_enum.cc
49
const string&
dllexport_decl
)
52
dllexport_decl_(
dllexport_decl
) {
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_generator.cc
66
// generator classes. Currently we pass
dllexport_decl
down to all of
70
// If the
dllexport_decl
option is passed to the compiler, we need to write
74
// protoc --cpp_out=
dllexport_decl
=FOO_EXPORT:outdir foo.proto
84
if (options[i].first == "
dllexport_decl
") {
85
file_options.
dllexport_decl
= options[i].second;
cpp_options.h
48
string
dllexport_decl
;
member in struct:google::protobuf::compiler::cpp::Options
cpp_extension.h
59
// See generator.cc for the meaning of
dllexport_decl
.
cpp_bootstrap_unittest.cc
136
parameter = "
dllexport_decl
=LIBPROTOBUF_EXPORT";
139
parameter = "
dllexport_decl
=LIBPROTOC_EXPORT";
cpp_enum.h
56
// See generator.cc for the meaning of
dllexport_decl
.
cpp_file.h
63
// See generator.cc for the meaning of
dllexport_decl
.
cpp_service.h
57
// See generator.cc for the meaning of
dllexport_decl
.
cpp_extension.cc
109
if (!options_.
dllexport_decl
.empty()) {
110
vars["qualifier"] = options_.
dllexport_decl
+ " " + vars["qualifier"];
cpp_enum.cc
91
if (options_.
dllexport_decl
.empty()) {
94
vars["dllexport"] = options_.
dllexport_decl
+ " ";
cpp_file.cc
186
"void $
dllexport_decl
$ $adddescriptorsname$();\n",
188
"
dllexport_decl
", options_.
dllexport_decl
);
191
// Note that we don't put
dllexport_decl
on these because they are only
/external/chromium_org/sync/
sync_proto.gypi
53
'cc_generator_options': '
dllexport_decl
=SYNC_EXPORT:',
/external/chromium_org/build/
protoc.gypi
37
# 'cc_generator_options' variable with the value: '
dllexport_decl
=FOO_EXPORT:'
38
# e.g. '
dllexport_decl
=BASE_EXPORT:'
/external/chromium_org/google_apis/gcm/
gcm.gyp
19
'cc_generator_options': '
dllexport_decl
=GCM_EXPORT:',
Completed in 394 milliseconds
1
2