Searched refs:field (Results 251 - 275 of 1411) sorted by relevance

<<11121314151617181920>>

/external/mockito/src/main/java/org/mockito/internal/configuration/
H A DFieldAnnotationProcessor.java14 Object process(A annotation, Field field); argument
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_helpers.h83 // Get the (unqualified) name that should be used for this field in C++ code.
85 // should be using lowercase-with-underscores style for proto field names
86 // anyway, so normally this just returns field->name().
87 string FieldName(const FieldDescriptor* field);
92 // Get the unqualified name that should be used for a field's field
94 string FieldConstantName(const FieldDescriptor *field);
96 // Returns the scope where the field was defined (for extensions, this is
97 // different from the message type to which the field applies).
98 inline const Descriptor* FieldScope(const FieldDescriptor* field) { argument
274 SupportsArenas(const FieldDescriptor* field) argument
[all...]
/external/strace/mpers-m32/
H A Dstruct_v4l2_framebuffer.h12 uint32_t field; member in struct:__anon17730::__anon17731
/external/strace/mpers-mx32/
H A Dstruct_v4l2_framebuffer.h12 uint32_t field; member in struct:__anon17879::__anon17880
/external/syslinux/gpxe/src/include/gpxe/
H A Dcpio.h14 * All field are hexadecimal ASCII numbers padded with '0' on the
15 * left to the full width of the field.
32 /** Size of data field */
44 /** Checksum of data field if c_magic is 070702, othersize zero */
51 extern void cpio_set_field ( char *field, unsigned long value );
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/
H A Doobe.py111 def _NavigateWebViewEntry(self, field, value, next_field):
112 self._WaitForField(field)
116 document.getElementById({{ field }}).value= {{ value }};
118 field=field, value=value, next_field=next_field)
120 def _WaitForField(self, field):
124 "document.getElementById({{ field }}) != null",
125 field=field, timeout=20)
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DMessage.java47 * the field values dynamically.
77 * contents (known and unknown field values). Subclasses must implement this;
121 * Merging occurs as follows. For each field:<br>
122 * * For singular primitive fields, if the field is set in {@code other},
124 * * For singular message fields, if the field is set in {@code other},
130 * the group of this message is cleared and replaced by the field
164 * field. Messages built with this can then be passed to setField(),
167 Builder newBuilderForField(Descriptors.FieldDescriptor field); argument
170 * Get a nested builder instance for the given field.
173 * message type field
185 getFieldBuilder(Descriptors.FieldDescriptor field) argument
203 getRepeatedFieldBuilder(Descriptors.FieldDescriptor field, int index) argument
211 setField(Descriptors.FieldDescriptor field, Object value) argument
217 clearField(Descriptors.FieldDescriptor field) argument
233 setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value) argument
241 addRepeatedField(Descriptors.FieldDescriptor field, Object value) argument
[all...]
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DInternalNano.java140 * Checks repeated int field equality; null-value and 0-length fields are
152 * Checks repeated long field equality; null-value and 0-length fields are
164 * Checks repeated float field equality; null-value and 0-length fields are
176 * Checks repeated double field equality; null-value and 0-length fields are
188 * Checks repeated boolean field equality; null-value and 0-length fields are
200 * Checks repeated bytes field equality. Only non-null elements are tested.
235 * Checks repeated string/message field equality. Only non-null elements are
270 * Computes the hash code of a repeated int field. Null-value and 0-length
273 public static int hashCode(int[] field) { argument
274 return field
281 hashCode(long[] field) argument
289 hashCode(float[] field) argument
297 hashCode(double[] field) argument
305 hashCode(boolean[] field) argument
314 hashCode(byte[][] field) argument
331 hashCode(Object[] field) argument
[all...]
/external/protobuf/src/google/protobuf/util/
H A Dfield_mask_util.cc60 // The field name must not contain uppercase letters.
88 // The field name must not contain "_"s.
139 const FieldDescriptor* field = descriptor->FindFieldByName(field_name); local
140 if (field == NULL) {
143 if (!field->is_repeated() &&
144 field->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
145 descriptor = field->message_type();
156 out->add_paths(descriptor->field(i)->name());
170 // In the tree, each leaf node represents a field path.
179 // Add a field pat
348 const FieldDescriptor* field = descriptor->FindFieldByName(field_name); local
[all...]
/external/toybox/toys/other/
H A Dmodinfo.c13 usage: modinfo [-0] [-b basedir] [-k kernrelease] [-F field] [modulename...]
23 char *field;
30 static void output_field(char *field, char *value) argument
32 if (!TT.field) xprintf("%s:%*c", field, 15-(int)strlen(field), ' ');
33 else if (strcmp(TT.field, field)) return;
/external/vogar/src/vogar/
H A DOptionParser.java80 * by the option parser. The collection field should be initialized
104 * String mode = "standard; // Supply a default just by setting the field.
117 * // The collection field itself must be non-null.
194 throw new RuntimeException("cannot handle unknown field type " + type);
280 final Field field = optionMap.get(name);
281 if (field == null) {
284 return field;
298 final Field field = fieldForArg(name);
299 final Handler handler = getHandler(field.getGenericType());
304 value = grabNextValue(args, name, field);
337 setValue(Field field, String arg, Handler handler, String valueText) argument
375 grabNextValue(Iterator<String> args, String name, Field field) argument
[all...]
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
H A Ddata.py63 example, given a struct field like
255 def FieldToData(field):
257 istr(0, 'name'): field.name,
258 istr(1, 'kind'): KindToData(field.kind)
260 AddOptional(data, istr(2, 'ordinal'), field.ordinal)
261 AddOptional(data, istr(3, 'default'), field.default)
262 AddOptional(data, istr(4, 'attributes'), field.attributes)
266 field = mojom.StructField()
267 PopulateField(field, module, data, struct)
268 return field
[all...]
/external/mockito/src/test/java/org/mockito/internal/util/reflection/
H A DParameterizedConstructorInstantiatorTest.java56 new ParameterizedConstructorInstantiator(this, field("whateverForNow"), resolver);
62 new ParameterizedConstructorInstantiator(this, field("withNoArgConstructor"), resolver).instantiate();
75 new ParameterizedConstructorInstantiator(this, field("withMultipleConstructor"), resolver).instantiate();
89 new ParameterizedConstructorInstantiator(this, field("withMultipleConstructor"), resolver).instantiate();
101 new ParameterizedConstructorInstantiator(this, field("withThrowingConstructor"), resolver).instantiate();
113 new ParameterizedConstructorInstantiator(this, field("withVarargConstructor"), resolver).instantiate();
118 private Field field(String fieldName) throws NoSuchFieldException { method in class:ParameterizedConstructorInstantiatorTest
119 Field field = this.getClass().getDeclaredField(fieldName);
120 field.setAccessible(true);
121 return field;
[all...]
/external/tpm2/generator/
H A Dstructure_generator.py118 """Represents a field in TPM structure or union.
132 from zero to MAX_SIZE. The field 'size' denotes the actual number of
144 the field named 'rsa' will have its 'selector_value' set to 'TPM_ALG_RSA'.
147 field_type: a string, the type of field.
148 field_name: a string, the name of the field.
178 field_type: Initial value for the field type attribute.
179 field_name: Initial value for the field name attribute.
189 # (processing of TPM_ALG_NULL in this example). Setting field name to ''
191 # entry for this field, setting type of such field t
[all...]
/external/nanopb-c/tests/encode_unittests/
H A Dencode_unittests.c20 bool fieldcallback(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) argument
23 if (!pb_encode_tag_for_field(stream, field))
28 bool crazyfieldcallback(pb_ostream_t *stream, const pb_field_t *field, void * const *arg) argument
33 if (!pb_encode_tag_for_field(stream, field))
99 pb_field_t field = {10, PB_LTYPE_SVARINT}; local
102 TEST(WRITES(pb_encode_tag_for_field(&s, &field), "\x50"));
104 field.type = PB_LTYPE_FIXED64;
105 TEST(WRITES(pb_encode_tag_for_field(&s, &field), "\x51"));
107 field.type = PB_LTYPE_STRING;
108 TEST(WRITES(pb_encode_tag_for_field(&s, &field), "\x5
132 pb_field_t field = {1, PB_LTYPE_VARINT, 0, 0, sizeof(value)}; local
[all...]
/external/protobuf/src/google/protobuf/
H A Dtext_format.h84 // Outputs a textual representation of the value of the field supplied on
87 // field if it is not set.
89 const FieldDescriptor* field,
114 const FieldDescriptor* field) const;
147 const FieldDescriptor* field,
167 // If use_field_number is true, uses field number instead of field name.
188 // don't have a field-specific printer registered.
194 // tag number of the field instead of field nam
502 RecordLocation(ParseInfoTree* info_tree, const FieldDescriptor* field, ParseLocation location) argument
509 CreateNested( ParseInfoTree* info_tree, const FieldDescriptor* field) argument
[all...]
H A Dwire_format.h78 // Given a field return its WireType
80 const FieldDescriptor* field);
130 // Skips a field value of the given WireType. The input should start
132 // the contents of the field will be added to it.
141 // Read a packed enum field. If the is_valid function is not NULL, values for
187 // This is different from MakeTag(field->number(), field->type()) in the case
189 static uint32 MakeTag(const FieldDescriptor* field);
191 // Parse a single field. The input should start out positioned immediately
195 const FieldDescriptor* field, // Ma
282 WireTypeForField( const FieldDescriptor* field) argument
300 MakeTag(const FieldDescriptor* field) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DSparseFieldVector.java30 * @param <T> the type of the field elements
41 private final Field<T> field; field in class:SparseFieldVector
55 * @param field field to which the elements belong
57 public SparseFieldVector(Field<T> field) { argument
58 this(field, 0);
64 * @param field field to which the elements belong
67 public SparseFieldVector(Field<T> field, int dimension) { argument
68 this.field
91 SparseFieldVector(Field<T> field, int dimension, int expectedSize) argument
103 SparseFieldVector(Field<T> field, T[] values) argument
[all...]
/external/protobuf/src/google/protobuf/compiler/csharp/
H A Dcsharp_message.cc68 // sorted field names
70 field_names_.push_back(descriptor_->field(i)->name());
76 fields_by_number_.push_back(descriptor_->field(i));
154 const FieldDescriptor* fieldDescriptor = descriptor_->field(i);
158 "/// <summary>Field number for the \"$field_name$\" field.</summary>\n"
182 const FieldDescriptor* field = descriptor_->oneof_decl(i)->field(j); local
184 "field_property_name", GetPropertyName(field),
185 "index", SimpleItoa(field->number()));
265 if (!descriptor_->field(
279 const FieldDescriptor* field = descriptor_->oneof_decl(i)->field(j); local
424 const FieldDescriptor* field = descriptor_->oneof_decl(i)->field(j); local
450 const FieldDescriptor* field = fields_by_number()[i]; local
[all...]
/external/protobuf/src/google/protobuf/compiler/javanano/
H A Djavanano_message.cc70 fields[i] = descriptor->field(i);
195 const FieldDescriptor* field = oneof_desc->field(j); local
196 vars["number"] = SimpleItoa(field->number());
197 vars["cap_field_name"] = ToUpper(field->name());
267 PrintFieldComment(printer, descriptor_->field(i));
268 field_generators_.get(descriptor_->field(i)).GenerateMembers(
279 " // Lazily initializes the field defaults\n"
290 field_generators_.get(descriptor_->field(i))
443 const FieldDescriptor* field local
507 GenerateSerializeOneField( io::Printer* printer, const FieldDescriptor* field) argument
540 const FieldDescriptor* field = descriptor_->field(i); local
620 const FieldDescriptor* field = descriptor_->field(i); local
654 const FieldDescriptor* field = descriptor_->field(i); local
[all...]
/external/v8/tools/clang/blink_gc_plugin/
H A DDiagnosticsReporter.cpp30 "[blink-gc] Untraced field %0 declared here:";
33 "[blink-gc] Untraceable field %0 declared here:";
39 "[blink-gc] Class %0 contains GC root in field %1.";
48 "[blink-gc] Finalizer %0 accesses potentially finalized field %1.";
51 "[blink-gc] Finalizer %0 accesses eagerly finalized field %1.";
54 "[blink-gc] Raw pointer field %0 to a GC managed class declared here:";
57 "[blink-gc] RefPtr field %0 to a GC managed class declared here:";
60 "[blink-gc] Reference pointer field %0 to a GC managed class"
64 "[blink-gc] OwnPtr field %0 to a GC managed class declared here:";
67 "[blink-gc] std::unique_ptr field
507 NoteFieldRequiresTracing( RecordInfo* holder, FieldDecl* field) argument
513 NoteFieldShouldNotBeTraced( RecordInfo* holder, FieldDecl* field) argument
520 FieldDecl* field = point->field(); local
552 NoteField(FieldDecl* field, unsigned note) argument
[all...]
/external/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_field.cc114 FieldGenerator* FieldGenerator::Make(const FieldDescriptor* field, argument
117 if (field->is_repeated()) {
118 switch (GetObjectiveCType(field)) {
120 if (field->is_map()) {
121 result = new MapFieldGenerator(field, options);
123 result = new RepeatedMessageFieldGenerator(field, options);
128 result = new RepeatedEnumFieldGenerator(field, options);
131 result = new RepeatedPrimitiveFieldGenerator(field, options);
135 switch (GetObjectiveCType(field)) {
137 result = new MessageFieldGenerator(field, option
[all...]
/external/protobuf/src/google/protobuf/util/internal/
H A Dprotostream_objectsource.cc76 // Finds a field with the given number. NULL if none found.
80 // Returns true if the field is packable.
81 bool IsPackable(const google::protobuf::Field& field);
91 const google::protobuf::Field& field) {
92 switch (field.kind()) {
154 // Lookup the new field in the type by tag number.
155 const google::protobuf::Field* field = FindFieldByNumber(type, tag >> 3); local
156 // Verify if the field corresponds to the wire type in tag.
157 // If there is any discrepancy, mark the field as not found.
158 if (field !
90 MapKeyDefaultValueAsString( const google::protobuf::Field& field) argument
183 const google::protobuf::Field* field = NULL; local
230 RenderList( const google::protobuf::Field* field, StringPiece name, uint32 list_tag, ObjectWriter* ow) const argument
252 RenderMap( const google::protobuf::Field* field, StringPiece name, uint32 list_tag, ObjectWriter* ow) const argument
265 const google::protobuf::Field* field = local
298 RenderPacked( const google::protobuf::Field* field, ObjectWriter* ow) const argument
508 const google::protobuf::Field* field = NULL; local
526 const google::protobuf::Field* field = NULL; local
553 const google::protobuf::Field* field = os->FindAndVerifyField(type, tag); local
575 const google::protobuf::Field* field = os->FindAndVerifyField(type, tag); local
649 const google::protobuf::Field* field = os->FindAndVerifyField(type, tag); local
724 RenderField( const google::protobuf::Field* field, StringPiece field_name, ObjectWriter* ow) const argument
767 RenderNonMessageField( const google::protobuf::Field* field, StringPiece field_name, ObjectWriter* ow) const argument
1029 const google::protobuf::Field* field = FindAndVerifyField(type, tag); local
1074 IsPackable(const google::protobuf::Field& field) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECNamedCurveSpec.java12 import org.bouncycastle.math.field.FiniteField;
13 import org.bouncycastle.math.field.Polynomial;
14 import org.bouncycastle.math.field.PolynomialExtensionField;
30 ECField field = convertField(curve.getField());
32 return new EllipticCurve(field, a, b, seed);
35 private static ECField convertField(FiniteField field) argument
37 if (ECAlgorithms.isFpField(field))
39 return new ECFieldFp(field.getCharacteristic());
43 Polynomial poly = ((PolynomialExtensionField)field).getMinimalPolynomial();
/external/icu/icu4c/source/i18n/unicode/
H A Dgregocal.h57 * <p>Values calculated for the <code>WEEK_OF_YEAR</code> field range from 1 to
236 * @param year The value used to set the YEAR time field in the calendar.
237 * @param month The value used to set the MONTH time field in the calendar. Month
239 * @param date The value used to set the DATE time field in the calendar.
250 * @param year The value used to set the YEAR time field in the calendar.
251 * @param month The value used to set the MONTH time field in the calendar. Month
253 * @param date The value used to set the DATE time field in the calendar.
254 * @param hour The value used to set the HOUR_OF_DAY time field in the calendar.
255 * @param minute The value used to set the MINUTE time field in the calendar.
266 * @param year The value used to set the YEAR time field i
[all...]

Completed in 588 milliseconds

<<11121314151617181920>>