HomeSort by relevance Sort by last modified time
    Searched refs:variables_ (Results 1 - 25 of 38) sorted by null

1 2

  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_message_field.cc 72 SetMessageVariables(descriptor, &variables_, options);
79 printer->Print(variables_, "$type$* $name$_;\n");
84 printer->Print(variables_,
93 printer->Print(variables_,
98 variables_, descriptor_->file(), printer,
104 printer->Print(variables_,
132 printer->Print(variables_,
138 printer->Print(variables_,
144 printer->Print(variables_, "std::swap($name$_, other->$name$_);\n");
149 printer->Print(variables_, "$name$_ = NULL;\n")
    [all...]
cpp_primitive_field.cc 107 SetPrimitiveVariables(descriptor, &variables_, options);
114 printer->Print(variables_, "$type$ $name$_;\n");
119 printer->Print(variables_,
126 printer->Print(variables_,
140 printer->Print(variables_, "$name$_ = $default$;\n");
145 printer->Print(variables_, "set_$name$(from.$name$());\n");
150 printer->Print(variables_, "std::swap($name$_, other->$name$_);\n");
155 printer->Print(variables_, "$name$_ = $default$;\n");
160 printer->Print(variables_,
169 printer->Print(variables_,
    [all...]
cpp_enum_field.cc 66 SetEnumVariables(descriptor, &variables_, options);
73 printer->Print(variables_, "int $name$_;\n");
78 printer->Print(variables_,
85 printer->Print(variables_,
100 printer->Print(variables_, "$name$_ = $default$;\n");
105 printer->Print(variables_, "set_$name$(from.$name$());\n");
110 printer->Print(variables_, "std::swap($name$_, other->$name$_);\n");
115 printer->Print(variables_, "$name$_ = $default$;\n");
120 printer->Print(variables_,
128 printer->Print(variables_,
    [all...]
cpp_string_field.cc 76 SetStringVariables(descriptor, &variables_, options);
83 printer->Print(variables_, "::std::string* $name$_;\n");
89 printer->Print(variables_, "static ::std::string* $default_variable$;\n");
119 printer->Print(variables_,
139 printer->Print(variables_,
173 printer->Print(variables_,
176 printer->Print(variables_,
179 printer->Print(variables_,
213 printer->Print(variables_,
221 printer->Print(variables_,
    [all...]
cpp_enum_field.h 68 map<string, string> variables_; member in class:google::protobuf::compiler::cpp::EnumFieldGenerator
112 map<string, string> variables_; member in class:google::protobuf::compiler::cpp::RepeatedEnumFieldGenerator
cpp_message_field.h 68 map<string, string> variables_; member in class:google::protobuf::compiler::cpp::MessageFieldGenerator
111 map<string, string> variables_; member in class:google::protobuf::compiler::cpp::RepeatedMessageFieldGenerator
cpp_primitive_field.h 68 map<string, string> variables_; member in class:google::protobuf::compiler::cpp::PrimitiveFieldGenerator
113 map<string, string> variables_; member in class:google::protobuf::compiler::cpp::RepeatedPrimitiveFieldGenerator
  /external/protobuf/src/google/protobuf/compiler/java/
java_primitive_field.cc 179 name_resolver_, &variables_);
196 printer->Print(variables_,
200 printer->Print(variables_,
206 printer->Print(variables_,
208 PrintExtraFieldInfo(variables_, printer);
211 printer->Print(variables_,
218 printer->Print(variables_,
226 printer->Print(variables_,
231 printer->Print(variables_,
238 printer->Print(variables_,
    [all...]
java_enum_field.cc 133 name_resolver_, &variables_);
150 printer->Print(variables_,
154 printer->Print(variables_,
160 printer->Print(variables_,
162 PrintExtraFieldInfo(variables_, printer);
165 printer->Print(variables_,
171 printer->Print(variables_,
179 printer->Print(variables_,
183 printer->Print(variables_,
189 printer->Print(variables_,
    [all...]
java_string_field.cc 147 name_resolver_, &variables_);
196 printer->Print(variables_,
200 printer->Print(variables_,
203 printer->Print(variables_,
210 printer->Print(variables_,
212 PrintExtraFieldInfo(variables_, printer);
216 printer->Print(variables_,
223 printer->Print(variables_,
233 printer->Print(variables_,
236 printer->Print(variables_,
    [all...]
java_lazy_message_field.cc 60 printer->Print(variables_,
64 PrintExtraFieldInfo(variables_, printer);
66 printer->Print(variables_,
72 printer->Print(variables_,
78 printer->Print(variables_,
91 printer->Print(variables_,
96 printer->Print(variables_,
109 printer->Print(variables_,
114 printer->Print(variables_,
184 printer->Print(variables_,
    [all...]
java_message_field.cc 131 name_resolver_, &variables_);
153 printer->Print(variables_,
157 printer->Print(variables_,
162 printer->Print(variables_,
169 printer->Print(variables_,
171 PrintExtraFieldInfo(variables_, printer);
175 printer->Print(variables_,
180 printer->Print(variables_,
187 printer->Print(variables_,
195 printer->Print(variables_,
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_enum_field.cc 115 SetEnumVariables(params, descriptor, &variables_);
124 printer->Print(variables_, "$message_type_intdef$\n");
126 printer->Print(variables_, "public $type$ $name$;\n");
129 printer->Print(variables_,
136 printer->Print(variables_,
140 printer->Print(variables_,
150 printer->Print(variables_,
154 printer->Print(variables_,
157 printer->Print(variables_,
181 printer->Print(variables_,
    [all...]
javanano_message_field.cc 79 SetMessageVariables(params, descriptor, &variables_);
86 printer->Print(variables_,
92 printer->Print(variables_,
98 printer->Print(variables_,
104 printer->Print(variables_,
107 printer->Print(variables_,
114 printer->Print(variables_,
122 printer->Print(variables_,
131 printer->Print(variables_,
139 printer->Print(variables_,
    [all...]
javanano_primitive_field.cc 261 SetPrimitiveVariables(descriptor, params, &variables_);
267 return variables_.find("default_constant") != variables_.end();
271 if (variables_.find("default_constant") != variables_.end()) {
272 printer->Print(variables_,
279 if (variables_.find("default_constant") != variables_.end()) {
282 printer->Print(variables_,
285 printer->Print(variables_,
    [all...]
javanano_extension.h 64 map<string, string> variables_; member in class:google::protobuf::compiler::javanano::ExtensionGenerator
javanano_message_field.h 65 map<string, string> variables_; member in class:google::protobuf::compiler::javanano::MessageFieldGenerator
88 map<string, string> variables_; member in class:google::protobuf::compiler::javanano::RepeatedMessageFieldGenerator
javanano_enum_field.h 65 map<string, string> variables_; member in class:google::protobuf::compiler::javanano::EnumFieldGenerator
88 map<string, string> variables_; member in class:google::protobuf::compiler::javanano::AccessorEnumFieldGenerator
115 map<string, string> variables_; member in class:google::protobuf::compiler::javanano::RepeatedEnumFieldGenerator
javanano_primitive_field.h 70 map<string, string> variables_; member in class:google::protobuf::compiler::javanano::PrimitiveFieldGenerator
94 map<string, string> variables_; member in class:google::protobuf::compiler::javanano::AccessorPrimitiveFieldGenerator
119 map<string, string> variables_; member in class:google::protobuf::compiler::javanano::RepeatedPrimitiveFieldGenerator
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_enum_field.cc 76 SetEnumVariables(params, descriptor, &variables_);
83 printer->Print(variables_,
102 printer->Print(variables_,
111 printer->Print(variables_,
117 printer->Print(variables_,
125 printer->Print(variables_,
141 SetEnumVariables(params, descriptor, &variables_);
152 printer->Print(variables_,
174 printer->Print(variables_,
201 printer->Print(variables_,
    [all...]
javamicro_message_field.cc 75 SetMessageVariables(params, descriptor, &variables_);
82 printer->Print(variables_,
107 printer->Print(variables_,
115 printer->Print(variables_,
119 printer->Print(variables_,
122 printer->Print(variables_,
126 printer->Print(variables_,
132 printer->Print(variables_,
140 printer->Print(variables_,
156 SetMessageVariables(params, descriptor, &variables_);
    [all...]
javamicro_primitive_field.cc 219 SetPrimitiveVariables(descriptor, params, &variables_);
226 printer->Print(variables_,
232 printer->Print(variables_,
248 printer->Print(variables_,
260 printer->Print(variables_,
277 printer->Print(variables_,
285 printer->Print(variables_,
292 printer->Print(variables_,
297 printer->Print(variables_,
307 printer->Print(variables_,
    [all...]
javamicro_enum_field.h 63 map<string, string> variables_; member in class:google::protobuf::compiler::javamicro::EnumFieldGenerator
84 map<string, string> variables_; member in class:google::protobuf::compiler::javamicro::RepeatedEnumFieldGenerator
javamicro_message_field.h 63 map<string, string> variables_; member in class:google::protobuf::compiler::javamicro::MessageFieldGenerator
85 map<string, string> variables_; member in class:google::protobuf::compiler::javamicro::RepeatedMessageFieldGenerator
javamicro_primitive_field.h 63 map<string, string> variables_; member in class:google::protobuf::compiler::javamicro::PrimitiveFieldGenerator
84 map<string, string> variables_; member in class:google::protobuf::compiler::javamicro::RepeatedPrimitiveFieldGenerator

Completed in 245 milliseconds

1 2