Searched defs:fields (Results 1 - 25 of 251) sorted by relevance

1234567891011

/external/dbus/dbus/
H A Ddbus-marshal-header.h54 DBusHeaderField fields[DBUS_HEADER_FIELD_LAST + 1]; /**< Track the location member in struct:DBusHeader
/external/emma/core/java12/com/vladium/jcd/cls/
H A DAbstractClassDefVisitor.java43 public Object visit (final IFieldCollection fields, final Object ctx) argument
H A DIClassDefVisitor.java23 Object visit (IFieldCollection fields, Object ctx); argument
/external/google-breakpad/src/testing/src/
H A Dgmock-matchers.cc68 // Joins a vector of strings as if they are fields of a tuple; returns
70 GTEST_API_ string JoinAsTuple(const Strings& fields) { argument
71 switch (fields.size()) {
75 return fields[0];
77 string result = "(" + fields[0];
78 for (size_t i = 1; i < fields.size(); i++) {
80 result += fields[i];
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_array.h37 int stride, fields, type; member in struct:nouveau_array
49 int fields, int type, struct gl_buffer_object *obj,
H A Dnouveau_array.c101 int fields, int type, struct gl_buffer_object *obj,
108 a->fields = fields;
143 a->fields = 0;
100 nouveau_init_array(struct nouveau_array *a, int attr, int stride, int fields, int type, struct gl_buffer_object *obj, const void *ptr, GLboolean map, struct gl_context *ctx) argument
/external/nanopb-c/examples/using_union_messages/
H A Ddecode.c45 bool decode_unionmessage_contents(pb_istream_t *stream, const pb_field_t fields[], void *dest_struct) argument
52 status = pb_decode(&substream, fields, dest_struct);
/external/toybox/toys/other/
H A Dlspci.c43 driver[256], *vbig = 0, *dbig = 0, **fields; local
58 for (fields = (char*[]){"class", "vendor", "device", 0}; *fields; fields++) {
62 if (-1 == (fd = openat(dirfd, *fields, O_RDONLY))) {
/external/v8/tools/
H A Dgen-postmortem-metadata.py38 # v8dbg_class_CLASS__FIELD__TYPE = OFFSET Describes class fields
187 # The following useful fields are missing accessors, so we define fake ones.
247 fields = []; # field declarations variable
491 # Each class's fields and the corresponding offsets are described in the
522 fields.append(parse_field(current));
537 fields.append(parse_field(current));
541 fields.append(parse_field('ACCESSORS(%s)' % body));
600 emit_set(out, fields);
/external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
H A DDelimitedWriter.java68 * Write multiple fields at once. Values will be auto escaped and quoted as
71 * @param fields
76 public void write(final String... fields) throws IOException { argument
77 for (final String field : fields) {
/external/autotest/scheduler/
H A Drdb_unittest.py21 from django.db.models import fields namespace
97 3. The hosts returned have all the fields needed to create an
172 fields.FieldDoesNotExist]
H A Drdb.py13 from django.db.models import fields namespace
38 """Update fields on a hosts.
194 # If fields of the update don't match columns in the database,
201 fields.FieldDoesNotExist, ValueError) as e:
/external/emma/core/java12/com/vladium/jcd/parser/
H A DClassDefParser.java122 fields ();
220 void fields () throws IOException method in class:ClassDefParser.classParser
/external/iproute2/misc/
H A Dlnstat.h33 unsigned int num_fields; /* number of fields */
34 struct lnstat_field fields[LNSTAT_MAX_FIELDS_PER_LINE]; member in struct:lnstat_file
/external/mockito/src/org/mockito/internal/configuration/injection/
H A DMockInjection.java40 * Create a new configuration setup for fields
43 * @param fields Fields needing mock injection
47 public static OngoingMockInjection onFields(Set<Field> fields, Object ofInstance) { argument
48 return new OngoingMockInjection(fields, ofInstance);
55 private Set<Field> fields = new HashSet<Field>(); field in class:MockInjection.OngoingMockInjection
65 private OngoingMockInjection(Set<Field> fields, Object fieldOwner) { argument
67 this.fields.addAll(checkItemsNotNull(fields, "fields"));
91 for (Field field : fields) {
[all...]
/external/mockito/src/org/mockito/internal/util/reflection/
H A DFields.java18 * Small fluent reflection tools to work with fields.
26 * Instance fields declared in the class and superclasses of the given instance.
28 * @param instance Instance from which declared fields will be retrieved.
40 * Instance fields declared in the class of the given instance.
42 * @param instance Instance from which declared fields will be retrieved.
51 private static List<InstanceField> instanceFieldsIn(Object instance, Field[] fields) { argument
53 for (Field field : fields) {
61 * Accept fields annotated by the given annotations.
82 * Accept fields with non null value.
/external/protobuf/src/google/protobuf/
H A Dgenerated_message_reflection_unittest.cc79 // the fields have been set and then cleared.)
117 << "For simple string fields, GetStringReference() should return a "
122 << "For simple string fields, GetRepeatedStringReference() should return "
128 // Check that after setting all fields and then clearing, getting an
219 vector<const FieldDescriptor*> fields; local
221 fields.push_back(descriptor->FindFieldByName("optional_double"));
222 fields.push_back(descriptor->FindFieldByName("repeated_int32"));
223 fields.push_back(descriptor->FindFieldByName("optional_string"));
224 fields.push_back(descriptor->FindFieldByName("optional_uint64"));
227 reflection->SwapFields(&message1, &message2, fields);
252 vector<const FieldDescriptor*> fields; local
267 vector<const FieldDescriptor*> fields; local
303 vector<const FieldDescriptor*> fields; local
554 vector<const FieldDescriptor*> fields; local
[all...]
H A Dreflection_ops.cc66 vector<const FieldDescriptor*> fields; local
67 from_reflection->ListFields(from, &fields);
68 for (int i = 0; i < fields.size(); i++) {
69 const FieldDescriptor* field = fields[i];
132 vector<const FieldDescriptor*> fields; local
133 reflection->ListFields(*message, &fields);
134 for (int i = 0; i < fields.size(); i++) {
135 reflection->ClearField(message, fields[i]);
145 // Check required fields of this message.
155 vector<const FieldDescriptor*> fields; local
186 vector<const FieldDescriptor*> fields; local
241 vector<const FieldDescriptor*> fields; local
[all...]
/external/webrtc/webrtc/base/
H A Dstringencode_unittest.cc218 std::vector<std::string> fields; local
220 EXPECT_EQ(5ul, tokenize("one two three four five", ' ', &fields));
221 fields.clear();
222 EXPECT_EQ(1ul, tokenize("one", ' ', &fields));
225 fields.clear();
226 EXPECT_EQ(5ul, tokenize(" one two three four five ", ' ', &fields));
227 fields.clear();
228 EXPECT_EQ(1ul, tokenize(" one ", ' ', &fields));
229 fields.clear();
230 EXPECT_EQ(0ul, tokenize(" ", ' ', &fields));
235 std::vector<std::string> fields; local
254 std::vector<std::string> fields; local
269 std::vector<std::string> fields; local
303 std::vector<std::string> fields; local
366 std::vector<std::string> fields; local
383 std::vector<std::string> fields; local
[all...]
/external/autotest/client/cros/
H A Ddhcp_handling_rule.py95 def fields(self): member in class:DhcpHandlingRule
97 Returns a dictionary that maps from DhcpPacket fields to their values.
193 |packet| is a valid DHCP packet, but the values of fields and presence
238 Adds fields listed in |self.fields| to |packet|.
242 Subclassed handling rules may call this to inject fields into response
247 for field, value in self.fields.items():
396 self.logger.info("Received REQUEST packet, checking fields...")
477 self.logger.info("Received REQUEST packet, checking fields...")
528 self.logger.info("Received RELEASE packet, checking fields
[all...]
/external/autotest/frontend/client/src/autotest/tko/
H A DHeaderSelect.java83 private void setSelectedItemsInView(List<HeaderField> fields) { argument
85 for (HeaderField field : fields) {
95 public void setSelectedItems(List<HeaderField> fields) { argument
96 savedState.selectedFields = new ArrayList<HeaderField>(fields);
104 List<HeaderField> fields = getSelectedItemsFromView();
105 if (!fields.contains(field)) {
106 fields.add(field);
107 setSelectedItemsInView(fields);
112 List<HeaderField> fields = getSelectedItemsFromView();
113 if (fields
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
H A Dprotorpc_test_pb2.py71 fields=[ variable
99 fields=[ variable
134 fields=[ variable
162 fields=[ variable
247 fields=[ variable
332 fields=[ variable
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
H A DProducerFactoryGenerator.java108 ImmutableMap<BindingKey, FrameworkField> fields =
116 fields.get(binding.monitorRequest().get().bindingKey()).name(),
147 for (FrameworkField bindingField : fields.values()) {
174 String name = fields.get(dependency.bindingKey()).name();
190 FutureTransform futureTransform = FutureTransform.create(fields, binding, asyncDependencies);
225 protected final ImmutableMap<BindingKey, FrameworkField> fields; field in class:ProducerFactoryGenerator.FutureTransform
228 FutureTransform(ImmutableMap<BindingKey, FrameworkField> fields, ProductionBinding binding) { argument
229 this.fields = fields;
251 ImmutableMap<BindingKey, FrameworkField> fields,
250 create( ImmutableMap<BindingKey, FrameworkField> fields, ProductionBinding binding, ImmutableList<DependencyRequest> asyncDependencies) argument
266 NoArgFutureTransform( ImmutableMap<BindingKey, FrameworkField> fields, ProductionBinding binding) argument
305 SingleArgFutureTransform( ImmutableMap<BindingKey, FrameworkField> fields, ProductionBinding binding, DependencyRequest asyncDependency) argument
350 MultiArgFutureTransform( ImmutableMap<BindingKey, FrameworkField> fields, ProductionBinding binding, ImmutableList<DependencyRequest> asyncDependencies) argument
420 getParameterSnippets( ProductionBinding binding, ImmutableMap<BindingKey, FrameworkField> fields, String listArgName) argument
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DDexMaker.java54 * including their member methods and fields, executable code, and debugging
292 if (typeDeclaration.fields.containsKey(fieldId)) {
308 typeDeclaration.fields.put(fieldId, fieldDeclaration);
452 private final Map<FieldId, FieldDeclaration> fields field in class:DexMaker.TypeDeclaration
464 + fields.keySet() + " " + methods.keySet());
483 for (FieldDeclaration field : fields.values()) {
503 throw new IllegalArgumentException("instance fields may not have a value");
/external/guice/extensions/grapher/src/com/google/inject/grapher/graphviz/
H A DGraphvizNode.java48 private Map<String, String> fields = Maps.newLinkedHashMap(); field in class:GraphvizNode
109 fields.put(portId, title);
113 return ImmutableMap.copyOf(fields);

Completed in 3282 milliseconds

1234567891011