HomeSort by relevance Sort by last modified time
    Searched defs:field (Results 251 - 275 of 1000) sorted by null

<<11121314151617181920>>

  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_message.cc 56 void PrintFieldComment(io::Printer* printer, const FieldDescriptor* field) {
57 // Print the field's proto-syntax definition as a comment. We don't want to
59 string def = field->DebugString();
77 fields[i] = descriptor->field(i);
118 const FieldDescriptor* field = type->field(i); local
119 if (field->is_required()) {
122 if (field->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) {
123 if (HasRequiredFields(field->message_type(), already_seen)) {
209 PrintFieldComment(printer, descriptor_->field(i))
328 const FieldDescriptor* field = sorted_fields[i]; local
388 const FieldDescriptor* field = descriptor_->field(i); local
413 const FieldDescriptor* field = descriptor_->field(i); local
424 const FieldDescriptor* field = descriptor_->field(i); local
    [all...]
  /external/protobuf/src/google/protobuf/
unknown_field_set.h 56 // to be updated every time a new field is added to the message definition.
90 // Get a field in the set, where 0 <= index < field_count(). The fields
92 inline const UnknownField& field(int index) const;
93 // Get a mutable pointer to a field in the set, where
107 // Adds an unknown field from another set.
108 void AddField(const UnknownField& field);
129 // Represents one field in an UnknownFieldSet.
140 // The field's tag number, as seen on the wire.
143 // The field type.
202 inline const UnknownField& UnknownFieldSet::field(int index) const function in class:google::protobuf::UnknownFieldSet
    [all...]
  /external/skia/experimental/SkV8Example/
BaseContext.cpp 20 Handle<External> field = Handle<External>::Cast(obj->GetInternalField(0)); local
21 void* ptr = field->Value();
131 Handle<External> field = Handle<External>::Cast( local
133 void* ptr = field->Value();
153 Handle<External> field = Handle<External>::Cast( local
155 void* ptr = field->Value();
  /external/smack/src/org/jivesoftware/smackx/
ReportedData.java 73 FormField field = (FormField)fields.next(); local
74 columns.add(new Column(field.getLabel(), field.getVariable(), field.getType()));
80 List<Field> fieldList = new ArrayList<Field>(columns.size());
81 FormField field; local
83 field = (FormField) fields.next();
84 // The field is created with all the values of the data form's field
236 Field field = it.next(); local
    [all...]
  /external/smack/src/org/jivesoftware/smackx/search/
UserSearch.java 219 FormField field = new FormField(name); local
223 field.setLabel("First Name");
226 field.setLabel("Last Name");
229 field.setLabel("Email Address");
232 field.setLabel("Nickname");
235 field.setType(FormField.TYPE_TEXT_SINGLE);
236 dataForm.addField(field);
  /external/stlport/stlport/stl/
_monetary.h 44 char field[4]; member in struct:money_base::pattern
  /external/wpa_supplicant_8/src/utils/
radiotap_iter.h 12 uint8_t field; member in struct:radiotap_override
  /frameworks/opt/net/wifi/service/jni/
jni_helper.cpp 53 jfieldID field = (env)->GetFieldID(cls, name, "Z"); local
54 if (field == 0) {
55 THROW(env, "Error in accessing field");
59 jboolean value = (env)->GetBooleanField(obj, field);
67 jfieldID field = (env)->GetFieldID(cls, name, "I"); local
68 if (field == 0) {
69 THROW(env, "Error in accessing field");
73 jint value = (env)->GetIntField(obj, field);
81 jfieldID field = (env)->GetFieldID(cls, name, "J"); local
82 if (field == 0)
102 jfieldID field = (env)->GetStaticFieldID(cls, name, "J"); local
115 jfieldID field = (env)->GetFieldID(cls, name, type); local
129 jfieldID field = (env)->GetFieldID(cls, name, "[J"); local
166 jfieldID field = (env)->GetStaticFieldID(cls, name, "[J"); local
189 jfieldID field = (env)->GetFieldID(cls, name, type); local
215 jfieldID field = (env)->GetFieldID(cls, name, "I"); local
233 jfieldID field = (env)->GetFieldID(cls, name, "J"); local
257 jfieldID field = (env)->GetStaticFieldID(cls, name, "J"); local
276 jfieldID field = (env)->GetFieldID(cls, name, "[J"); local
304 jfieldID field = (env)->GetStaticFieldID(cls, name, "[J"); local
324 jfieldID field = (env)->GetFieldID(cls, name, "[J"); local
360 jfieldID field = (env)->GetFieldID(cls, name, type); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DataFormatFieldTest.java 28 import java.text.DateFormat.Field;
37 MyField field = new MyField("day of month", Calendar.ERA); local
39 assertEquals("field has wrong name", "day of month", field.getName());
40 assertEquals("field has wrong Calendar field number", Calendar.ERA,
41 field.getCalendarField());
43 DateFormat.Field realField = DateFormat.Field
45 assertSame("Modified calendar field with the same field number"
70 MyField field = new MyField("a field", Calendar.DAY_OF_WEEK); local
86 MyField field = new MyField("day of month", Calendar.ERA); local
182 MyField field; local
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicIntegerFieldUpdater.java 11 import java.lang.reflect.Field;
23 * Because this class cannot ensure that all uses of the field
30 * @param <T> The type of the object holding the updatable field
34 * Creates and returns an updater for objects with the given field.
38 * @param tclass the class of the objects holding the field
39 * @param fieldName the name of the field to be updated
41 * @throws IllegalArgumentException if the field is not a
44 * exception if the class does not hold field or is the wrong type,
45 * or the field is inaccessible to the caller according to Java language
59 * Atomically sets the field of the given object managed by this update
247 final Field field; local
    [all...]
AtomicReferenceFieldUpdater.java 10 import java.lang.reflect.Field;
39 * Because this class cannot ensure that all uses of the field
46 * @param <T> The type of the object holding the updatable field
47 * @param <V> The type of the field
52 * Creates and returns an updater for objects with the given field.
56 * @param tclass the class of the objects holding the field
57 * @param vclass the class of the field
58 * @param fieldName the name of the field to be updated
60 * @throws IllegalArgumentException if the field is not a volatile reference type
62 * exception if the class does not hold field or is the wrong type
178 final Field field; local
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 44 char field[4]; member in struct:money_base::pattern
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
ContentTypeField.java 20 package org.apache.james.mime4j.field;
32 import org.apache.james.mime4j.field.contenttype.parser.ContentTypeParser;
33 import org.apache.james.mime4j.field.contenttype.parser.ParseException;
34 import org.apache.james.mime4j.field.contenttype.parser.TokenMgrError;
37 * Represents a <code>Content-Type</code> field.
44 public class ContentTypeField extends Field {
84 * the field value, if any; otherwise, null.
91 * Gets the MIME type defined in this Content-Type field.
101 * Content-Type field or derives a MIME type from the parent
173 * given field. Returns the default <code>us-ascii</code> if not set or i
    [all...]
Field.java 20 package org.apache.james.mime4j.field;
26 * The base class of all field classes.
29 * @version $Id: Field.java,v 1.6 2004/10/25 07:26:46 ntherning Exp $
31 public abstract class Field {
63 protected Field(final String name, final String body, final String raw) {
71 * <code>Field</code> class. The type of the class returned depends on
72 * the field name:
75 * <td><em>Field name</em></td><td><em>Class returned</em></td>
76 * <td>Content-Type</td><td>org.apache.james.mime4j.field.ContentTypeField</td>
77 * <td>other</td><td>org.apache.james.mime4j.field.UnstructuredField</td
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
JJTAddressListParserState.java 1 /* Generated By:JJTree: Do not edit this line. /Users/jason/Projects/apache-mime4j-0.3/target/generated-sources/jjtree/org/apache/james/mime4j/field/address/parser/JJTAddressListParserState.java */
3 package org.apache.james.mime4j.field.address.parser;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/
DateTime.java 20 package org.apache.james.mime4j.field.datetime;
22 import org.apache.james.mime4j.field.datetime.parser.DateTimeParser;
23 import org.apache.james.mime4j.field.datetime.parser.ParseException;
24 import org.apache.james.mime4j.field.datetime.parser.TokenMgrError;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
CompatUtils.java 23 import java.lang.reflect.Field;
55 public static Field getField(final Class<?> targetClass, final String name) {
108 final Field field) {
109 if (field == null) {
113 return field.get(receiver);
120 public static void setFieldValue(final Object receiver, final Field field, final Object value) {
121 if (field == null) {
125 field.set(receiver, value)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 44 char field[4]; member in struct:money_base::pattern
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 44 char field[4]; member in struct:money_base::pattern
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 44 char field[4]; member in struct:money_base::pattern
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_monetary.h 44 char field[4]; member in struct:money_base::pattern
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_monetary.h 44 char field[4]; member in struct:money_base::pattern
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
AndroidJarLoaderTest.java 23 import java.lang.reflect.Field;
134 * Retrieves the private mFrameworkClassLoader.mClassCache field using reflection.
145 Field field = AndroidJarLoader.class.getDeclaredField("mClassCache"); //$NON-NLS-1$ local
146 field.setAccessible(true);
147 return (HashMap<String, Class<?>>) field.get(mFrameworkClassLoader);
151 * Retrieves the private mFrameworkClassLoader.mEntryCache field using reflection.
162 Field field = AndroidJarLoader.class.getDeclaredField("mEntryCache"); //$NON-NLS-1$ local
163 field.setAccessible(true)
    [all...]
  /sdk/emulator/opengl/host/tools/emugen/
EntryPoint.cpp 98 std::string field; local
107 field = getNextToken(linestr, 0, &last, "(");
110 field = getNextToken(linestr, pos, &last, ",)");
112 if (!parseTypeField(field, &retTypeName, NULL)) {
113 fprintf(stderr, "line: %d: Parsing error in field <%s>\n", lc, field.c_str());
131 field = getNextToken(linestr, pos, &last, ",)");
133 if (!parseTypeField(field, &vartype, &varname)) {
134 fprintf(stderr, "line: %d: Parsing error in field <%s>\n", lc, field.c_str())
    [all...]
  /cts/tests/signature-tests/src/android/signature/cts/tests/
JDiffClassDescriptionTest.java 217 JDiffClassDescription.JDiffField field = new JDiffClassDescription.JDiffField( local
219 clz.addField(field);
221 assertEquals(field.toSignatureString(), "public final java.lang.String FINAL_FIELD");
226 JDiffClassDescription.JDiffField field = new JDiffClassDescription.JDiffField( local
228 clz.addField(field);
230 assertEquals(field.toSignatureString(), "public static java.lang.String STATIC_FIELD");
235 JDiffClassDescription.JDiffField field = new JDiffClassDescription.JDiffField( local
237 clz.addField(field);
239 assertEquals(field.toSignatureString(), "public volatile java.lang.String VOLATILE_FIELD");
244 JDiffClassDescription.JDiffField field = new JDiffClassDescription.JDiffField local
254 JDiffClassDescription.JDiffField field = new JDiffClassDescription.JDiffField( local
263 JDiffClassDescription.JDiffField field = new JDiffClassDescription.JDiffField( local
272 JDiffClassDescription.JDiffField field = new JDiffClassDescription.JDiffField( local
284 JDiffClassDescription.JDiffField field = new JDiffClassDescription.JDiffField( local
297 JDiffClassDescription.JDiffField field = new JDiffClassDescription.JDiffField( local
    [all...]

Completed in 1589 milliseconds

<<11121314151617181920>>