Searched defs:repeated (Results 1 - 11 of 11) sorted by relevance

/external/protobuf/objectivec/
H A DGPBDescriptor.h50 GPBFieldTypeRepeated, // repeated
133 @property(nonatomic, readonly, getter=isRepeated) BOOL repeated; variable
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_extension.cc84 bool repeated = descriptor->is_repeated(); local
85 (*variables)["repeated"] = repeated ? "Repeated" : "";
92 if (repeated) {
97 // for both singular and repeated cases.
101 if (!repeated) {
140 " com.google.protobuf.nano.Extension.create$repeated$$ext_type$(\n"
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyMessageBuilderContext.java114 * MessageBuilderContext.repeated(name, type, number, type_class = nil)
116 * Defines a new repeated field on this message type with the given type, tag
122 public IRubyObject repeated(ThreadContext context, IRubyObject[] args) { method in class:RubyMessageBuilderContext
125 msgdefAddField(context, "repeated", args[0], args[1], args[2], typeClass);
160 // repeated submessage field here with that type.
187 msgdefAddField(context, "repeated", name, runtime.newSymbol("message"), number, mapentryDescName);
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DExtension.java107 * Creates a repeated {@code Extension} of the given message type and tag number.
130 * Creates a repeated {@code Extension} of the given primitive type and tag number.
150 * Protocol Buffer {@link #type}; for a repeated extension, this is an array type whose
153 * repeated {@code int32} extension, this equals {@code int[].class}.
163 * Whether this extension is repeated.
165 protected final boolean repeated; field in class:Extension
167 private Extension(int type, Class<T> clazz, int tag, boolean repeated) { argument
171 this.repeated = repeated;
186 return repeated
350 PrimitiveExtension(int type, Class<T> clazz, int tag, boolean repeated, int nonPackedTag, int packedTag) argument
[all...]
/external/protobuf/src/google/protobuf/
H A Dmap_field_test.cc70 // Get underlined repeated field without synchronizing map.
142 const RepeatedPtrField<Message>& repeated = local
145 EXPECT_EQ(2, repeated.size());
146 for (int i = 0; i < repeated.size(); i++) {
147 const Message& message = repeated.Get(i);
155 RepeatedPtrField<Message>* repeated = local
158 EXPECT_EQ(2, repeated->size());
159 for (int i = 0; i < repeated->size(); i++) {
160 const Message& message = repeated->Get(i);
177 // repeated field
[all...]
H A Dgenerated_message_reflection.cc161 "Field is repeated; the method requires a singular field.")
164 "Field is singular; the method requires a repeated field.")
1666 RepeatedPtrFieldBase* repeated = NULL; local
1668 repeated =
1671 repeated = MutableRaw<RepeatedPtrFieldBase>(message, field);
1673 result = repeated->AddFromCleared<GenericTypeHandler<Message> >();
1677 if (repeated->size() == 0) {
1680 prototype = &repeated->Get<GenericTypeHandler<Message> >(0);
1683 // We can guarantee here that repeated and result are either both heap
1686 repeated
1701 RepeatedPtrFieldBase* repeated = NULL; local
2211 RepeatedPtrField<Type>* repeated = local
2225 RepeatedPtrField<Type>* repeated = local
[all...]
H A Ddescriptor.cc141 "repeated", // LABEL_REPEATED
1170 // TODO(kenton): There's a lot of repeated code here, but I'm not sure if
1973 bool repeated = false; local
1976 repeated = true;
1985 repeated ? j : -1, &tmp);
1992 repeated ? j : -1, &fieldval);
3740 // A common pattern: We want to convert a repeated field in the descriptor
5273 // Only repeated primitive fields may be packed.
5278 "[packed = true] can only be specified for repeated primitive fields.");
5705 "\" is a repeated messag
[all...]
/external/protobuf/conformance/
H A Dconformance_test.cc149 uint32_t GetFieldNumberForType(FieldDescriptor::Type type, bool repeated) { argument
153 if (f->type() == type && f->is_repeated() == repeated) {
1254 // Trailing comma in the repeated field is not allowed.
/external/icu/icu4c/source/i18n/
H A Ddtitvfmt.cpp1251 * the first repeated pattern letter, which breaks the interval pattern
1261 UBool repeated = patternRepeated[(int)(prevCh - PATTERN_CHAR_BASE)]; local
1262 if ( repeated == FALSE ) {
1289 // "d-d"(last char repeated ), and
/external/flatbuffers/src/
H A Didl_parser.cpp1626 bool repeated = false; local
1635 } else if (attribute_ == "repeated") {
1636 repeated = true;
1656 if (repeated) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 300 milliseconds