HomeSort by relevance Sort by last modified time
    Searched refs:field (Results 301 - 325 of 3501) sorted by null

<<11121314151617181920>>

  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
EntrySchema.java 25 import java.lang.reflect.Field;
107 Field field = column.field; local
110 field.set(object, cursor.isNull(columnIndex)
115 field.setBoolean(object, cursor.getShort(columnIndex) == 1);
118 field.setShort(object, cursor.getShort(columnIndex));
121 field.setInt(object, cursor.getInt(columnIndex));
124 field.setLong(object, cursor.getLong(columnIndex));
127 field.setFloat(object, cursor.getFloat(columnIndex))
158 Field field = column.field; local
196 Field field = column.field; local
235 Field field = column.field; local
252 Field field = column.field; local
477 Field field = fields[i]; local
521 public final Field field; field in class:EntrySchema.ColumnInfo
    [all...]
  /art/runtime/mirror/
object.cc 70 ArtField* field = klass->GetInstanceField(i); local
71 MemberOffset field_offset = field->GetOffset();
97 ArtField* field = fields->Get(i); local
98 if (field->GetOffset().Int32Value() == field_offset.Int32Value()) {
99 FieldHelper fh(field);
115 ArtField* field = fields->Get(i); local
116 if (field->GetOffset().Int32Value() == field_offset.Int32Value()) {
117 FieldHelper fh(field);
124 LOG(FATAL) << "Failed to find field for assignment to " << reinterpret_cast<void*>(this)
  /cts/tools/signature-tools/test/signature/converter/
ConvertParameterizedTypeTest.java 22 import java.lang.reflect.Field;
53 IField field = ModelUtil.getField(sigClass, "f"); local
55 ITypeReference type = field.getType();
87 Field field = A.class.getDeclaredField("f"); local
88 ParameterizedType paramType = (ParameterizedType)field.getGenericType();
98 Field field = ConvertParameterizedTypeTest.class.getDeclaredField("f"); local
99 ParameterizedType paramType = (ParameterizedType)field.getGenericType();
111 Field field = E.class.getDeclaredField("f") local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
FieldIdItem.java 22 * Representation of a field reference inside a Dalvik file.
28 * @param field {@code non-null;} the constant for the field
30 public FieldIdItem(CstFieldRef field) {
31 super(field);
50 * Gets the field constant.
  /dalvik/dx/src/com/android/dx/dex/file/
FieldIdItem.java 22 * Representation of a field reference inside a Dalvik file.
28 * @param field {@code non-null;} the constant for the field
30 public FieldIdItem(CstFieldRef field) {
31 super(field);
50 * Gets the field constant.
  /external/chromium_org/components/autofill/core/browser/
password_autofill_manager.h 33 bool DidAcceptAutofillSuggestion(const FormFieldData& field,
59 bool FindLoginInfo(const FormFieldData& field,
  /external/chromium_org/third_party/icu/source/tools/toolutil/
udbgutil.h 49 * @param field field number
52 U_CAPI const char * U_EXPORT2 udbg_enumName(UDebugEnumType type, int32_t field);
65 * @param field field number
66 * @return should be equal to 'field' or -1 if out of range.
68 U_CAPI int32_t U_EXPORT2 udbg_enumArrayValue(UDebugEnumType type, int32_t field);
71 * Locate the specified field value by name.
74 * @return should be a field value or -1 if not found.
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.h 71 // Get the (unqualified) name that should be used for this field in C++ code.
73 // should be using lowercase-with-underscores style for proto field names
74 // anyway, so normally this just returns field->name().
75 string FieldName(const FieldDescriptor* field);
77 // Get the unqualified name that should be used for a field's field
79 string FieldConstantName(const FieldDescriptor *field);
81 // Returns the scope where the field was defined (for extensions, this is
82 // different from the message type to which the field applies).
83 inline const Descriptor* FieldScope(const FieldDescriptor* field) {
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
dynamic_message.cc 93 // Compute the byte size of the in-memory representation of the field.
94 int FieldSpaceUsed(const FieldDescriptor* field) {
96 if (field->label() == FD::LABEL_REPEATED) {
97 switch (field->cpp_type()) {
109 switch (field->options().ctype()) {
117 switch (field->cpp_type()) {
131 switch (field->options().ctype()) {
185 // looking back at this field. This would assume details about the
263 const FieldDescriptor* field = descriptor->field(i) local
343 const FieldDescriptor* field = descriptor->field(i); local
411 const FieldDescriptor* field = descriptor->field(i); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
FieldIdItem.java 22 * Representation of a field reference inside a Dalvik file.
28 * @param field {@code non-null;} the constant for the field
30 public FieldIdItem(CstFieldRef field) {
31 super(field);
50 * Gets the field constant.
  /external/mockito/src/org/mockito/internal/util/reflection/
GenericMaster.java 7 import java.lang.reflect.Field;
15 * Finds the generic type (parametrized type) of the field. If the field is not generic it returns Object.class.
17 * @param field
19 public Class getGenericType(Field field) {
20 Type generic = field.getGenericType();
  /external/proguard/src/proguard/classfile/attribute/
DeprecatedAttribute.java 57 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor)
59 attributeVisitor.visitDeprecatedAttribute(clazz, field, this);
SyntheticAttribute.java 57 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor)
59 attributeVisitor.visitSyntheticAttribute(clazz, field, this);
  /external/proguard/src/proguard/classfile/attribute/annotation/
RuntimeInvisibleAnnotationsAttribute.java 60 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor)
62 attributeVisitor.visitRuntimeInvisibleAnnotationsAttribute(clazz, field, this);
RuntimeVisibleAnnotationsAttribute.java 60 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor)
62 attributeVisitor.visitRuntimeVisibleAnnotationsAttribute(clazz, field, this);
  /external/proguard/src/proguard/optimize/evaluation/
StoringInvocationUnit.java 81 generalizeFieldClassValue((Field)referencedMember, value);
96 generalizeFieldValue((Field)referencedMember, value);
133 private static void generalizeFieldClassValue(Field field, ReferenceValue value)
135 FieldOptimizationInfo info = FieldOptimizationInfo.getFieldOptimizationInfo(field);
143 public static ReferenceValue getFieldClassValue(Field field)
145 FieldOptimizationInfo info = FieldOptimizationInfo.getFieldOptimizationInfo(field);
152 private static void generalizeFieldValue(Field field, Value value
    [all...]
  /external/proguard/src/proguard/optimize/info/
ReadWriteFieldMarker.java 62 // Mark the field, if any, as being read from and written to.
70 // Mark the field as being read from.
78 // Mark the field as being written to.
94 // Mark the referenced field, if any.
101 // Mark the referenced field.
113 // Mark the field if it is being read from.
119 // Mark the field if it is being written to.
129 private static void markAsRead(Field field)
131 FieldOptimizationInfo info = FieldOptimizationInfo.getFieldOptimizationInfo(field);
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_helpers.h 53 // Converts the field's name to camel-case, e.g. "foo_bar_baz" becomes
55 string UnderscoresToCamelCase(const FieldDescriptor* field);
56 string UnderscoresToCapitalizedCamelCase(const FieldDescriptor* field);
58 // Appends an "_" to the end of a field where the name is a reserved java
108 // Get the unqualified name that should be used for a field's field
110 string FieldConstantName(const FieldDescriptor *field);
112 string FieldDefaultConstantName(const FieldDescriptor *field);
128 inline JavaType GetJavaType(const FieldDescriptor* field) {
129 return GetJavaType(field->type())
    [all...]
  /external/protobuf/src/google/protobuf/
dynamic_message.cc 93 // Compute the byte size of the in-memory representation of the field.
94 int FieldSpaceUsed(const FieldDescriptor* field) {
96 if (field->label() == FD::LABEL_REPEATED) {
97 switch (field->cpp_type()) {
109 switch (field->options().ctype()) {
117 switch (field->cpp_type()) {
129 switch (field->options().ctype()) {
243 const FieldDescriptor* field = descriptor->field(i); local
245 switch (field->cpp_type())
323 const FieldDescriptor* field = descriptor->field(i); local
390 const FieldDescriptor* field = descriptor->field(i); local
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
FinalPort.java 20 import java.lang.reflect.Field;
27 public FinalPort(Filter filter, String name, Field field, boolean hasDefault) {
28 super(filter, name, field, hasDefault);
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_camera.cpp 29 void db_Approx3DCalMat(double K[9],double Kinv[9],int im_width,int im_height,double f_correction,int field)
33 if(field) field_fact=2.0;
  /packages/apps/Camera2/jni/feature_stab/db_vlvm/
db_utilities_camera.cpp 29 void db_Approx3DCalMat(double K[9],double Kinv[9],int im_width,int im_height,double f_correction,int field)
33 if(field) field_fact=2.0;
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_camera.cpp 29 void db_Approx3DCalMat(double K[9],double Kinv[9],int im_width,int im_height,double f_correction,int field)
33 if(field) field_fact=2.0;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
Header.java 35 import org.apache.james.mime4j.field.ContentTypeField;
36 import org.apache.james.mime4j.field.Field;
47 private List<Field> fields = new LinkedList<Field>();
48 private HashMap<String, List<Field>> fieldMap = new HashMap<String, List<Field>>();
69 public void field(String fieldData) {
70 addField(Field.parse(fieldData));
77 * Adds a field to the end of the list of fields.
    [all...]
  /external/kernel-headers/original/linux/
genhd.h 147 #define __disk_stat_add(gendiskp, field, addnd) \
148 (per_cpu_ptr(gendiskp->dkstats, smp_processor_id())->field += addnd)
150 #define disk_stat_read(gendiskp, field) \
152 typeof(gendiskp->dkstats->field) res = 0; \
155 res += per_cpu_ptr(gendiskp->dkstats, i)->field; \
167 #define __disk_stat_add(gendiskp, field, addnd) \
168 (gendiskp->dkstats.field += addnd)
169 #define disk_stat_read(gendiskp, field) (gendiskp->dkstats.field)
176 #define disk_stat_add(gendiskp, field, addnd)
    [all...]

Completed in 779 milliseconds

<<11121314151617181920>>