Searched defs:field (Results 1 - 25 of 50) sorted by last modified time

12

/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/app/wizard/
H A DGuidedDatePickerTest.java90 private int getColumnIndexForDateField(int field, int[] columnIndices) { argument
95 switch (field) {
108 private void horizontalScrollToDateField(int field, int[] columnIndices, argument
110 int columnIndex = getColumnIndexForDateField(field, columnIndices);
120 assertTrue("Date field could not be focused!", (focusedFieldPos != -1));
135 // now scroll right or left to the corresponding date field as indicated by the input field
153 * @param field The date field over which the scrolling is performed
154 * @param fieldValue The field valu
160 verticalScrollToFieldValue(int field, int fieldValue, int[] columnIndices, DatePicker pickerView, int scrollDir) argument
208 addDate(Calendar mCurrentDate, int field, int offset, Calendar mMinDate, Calendar mMaxDate) argument
[all...]
/frameworks/support/compat/java/android/support/v4/widget/
H A DTextViewCompat.java97 Field field = null;
99 field = TextView.class.getDeclaredField(fieldName);
100 field.setAccessible(true);
102 Log.e(LOG_TAG, "Could not retrieve " + fieldName + " field.");
104 return field;
107 private static int retrieveIntFromField(Field field, TextView textView) { argument
109 return field.getInt(textView);
111 Log.d(LOG_TAG, "Could not retrieve value of " + field.getName() + " field.");
/frameworks/rs/driver/
H A DrsdShader.cpp147 for (uint32_t field=0; field < e->mHal.state.fieldsCount; field++) {
148 const Element *f = e->mHal.state.fields[field];
161 s.append(e->mHal.state.fieldNames[field]);
171 for (uint32_t field=0; field < e->mHal.state.fieldsCount; field++) {
172 const Element *f = e->mHal.state.fields[field];
173 const char *fn = e->mHal.state.fieldNames[field];
315 logUniform(const Element *field, const float *fd, uint32_t arraySize ) argument
361 setUniform(const Context *rsc, const Element *field, const float *fd, int32_t slot, uint32_t arraySize ) argument
[all...]
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptGroup.java254 * @param field the field ID for the global variable
258 public Future getGlobal(Script.FieldID field) { argument
259 Future f = mGlobalFuture.get(field);
262 // If the field is not bound to this closure, this will return a future
264 // cross-module (cross-script) linking in this case where a field not
266 Object obj = mBindings.get(field);
270 f = new Future(this, field, obj);
271 mGlobalFuture.put(field, f);
599 * of connections: kernel to kernel and kernel to field
987 Binding(Script.FieldID field, Object value) argument
[all...]
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduComposer.java334 * In the implementation of EncodedStringValue, the charset field will
481 private int appendHeader(int field) { argument
482 switch (field) {
484 appendOctet(field);
486 int version = mPduHeader.getOctet(field);
497 byte[] textString = mPduHeader.getTextString(field);
502 appendOctet(field);
509 EncodedStringValue[] addr = mPduHeader.getEncodedStringValues(field);
522 appendOctet(field);
529 appendOctet(field);
[all...]
H A DPduHeaders.java98 * X-Mms-Message-Type field types.
137 * field types.
145 * field type components.
151 * X-Mms-MMS-Version field types.
162 * From field type components.
183 * MM-Flags field type components.
190 * X-Mms-Message-Class field types.
203 * X-Mms-Priority field types.
210 * X-Mms-Response-Status field types.
245 * X-Mms-Retrieve-Status field type
342 getOctet(int field) argument
358 setOctet(int value, int field) argument
502 getTextString(int field) argument
515 setTextString(byte[] value, int field) argument
551 getEncodedStringValue(int field) argument
562 getEncodedStringValues(int field) argument
581 setEncodedStringValue(EncodedStringValue value, int field) argument
618 setEncodedStringValues(EncodedStringValue[] value, int field) argument
651 appendEncodedStringValue(EncodedStringValue value, int field) argument
683 getLongInteger(int field) argument
698 setLongInteger(long value, int field) argument
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DExprModel.java168 public FieldAccessExpr field(Expr parent, String name) { method in class:ExprModel
389 L.d("checking field access expr %s. getter: %s", fae,fae.getGetter());
396 L.d("notifiable field %s : %s for %s : %s", parent.getUniqueKey(),
486 * Some expressions (e.g. field access) may replace themselves and add/remove new dependencies
H A DFieldAccessExpr.java41 // notification name for the field. Important when we map this to a method w/ different name
69 return "Cannot change a final field in " + getResolvedType().toJavaCode() +
173 // Make this the ".get()" and add an extra field access for the observable field
249 private static boolean attributeMatchesName(String attribute, String field) { argument
251 return attribute.substring(colonIndex + 1).equals(field);
307 return model.field(clonedTarget, mName);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DInjectedClass.java44 public void addField(InjectedField field) { argument
45 mFields.add(field);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
H A DAnnotationField.java32 public AnnotationField(TypeElement declaredClass, VariableElement field) { argument
34 mField = field;
/frameworks/data-binding/compiler/src/test/java/android/databinding/tool/reflection/java/
H A DJavaField.java26 public JavaField(Field field) { argument
27 mField = field;
/frameworks/data-binding/integration-tests/IndependentLibrary/app/src/main/java/android/databinding/test/independentlibrary/vo/
H A DMyBindableObject.java32 public void setField(String field) { argument
33 mField = field;
34 notifyPropertyChanged(BR.field);
/frameworks/data-binding/integration-tests/MultiModuleTestApp/testlibrary/src/main/java/android/databinding/testlibrary/
H A DTestLibObject.java31 public void setField(String field) { argument
32 this.mField = field;
33 notifyPropertyChanged(BR.field);
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DPublicFinalTestVo.java19 public PublicFinalTestVo(int field) { argument
20 myField = field;
H A DPublicFinalWithObservableTestVo.java25 public PublicFinalWithObservableTestVo(int field) { argument
26 myField = field;
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/compile/libbcc/bcinfo/Wrap/
H A Dbitcode_wrapperer.cpp219 BCHeaderField field(BCHeaderField::kInvalid, 0,
221 field.Read(&buffer_[cursor_], buffer_size_);
222 header_fields_.push_back(field);
223 size_t field_size = field.GetTotalSize();
229 "variable field data\n");
240 switch (field.getID()) {
242 if (field.Write((uint8_t*)&tempIntField,
248 if (field.Write((uint8_t*)&tempIntField,
254 // Ignore other field types for now
332 void BitcodeWrapperer::AddHeaderField(BCHeaderField* field) { argument
[all...]
/frameworks/base/tools/streaming_proto/
H A Dmain.cpp136 * Get the string name for a field.
139 get_proto_type(const FieldDescriptorProto& field) argument
141 switch (field.type()) {
163 return field.type_name();
169 return field.type_name();
185 get_field_id(const FieldDescriptorProto& field) argument
188 uint64_t result = (uint32_t)field.number();
191 switch (field.type()) {
248 if (field.options().packed()) {
250 } else if (field
263 write_field(stringstream& text, const FieldDescriptorProto& field, const string& indent) argument
[all...]
/frameworks/base/tools/incident_report/
H A Dmain.cpp53 FieldDescriptor const* field = descriptor->FindFieldByNumber(fieldId); local
54 if (field != NULL) {
55 int type = field->type();
60 bool rv = read_message(in, field->message_type(), child);
74 // TODO: Save bytes field.
131 print_value(Out* out, FieldDescriptor const* field, GenericMessage::Node const& node) argument
134 FieldDescriptor::Type type = field->type();
186 print_message(out, field->message_type(), node.message);
206 FieldDescriptor const* field = descriptor->field( local
304 FieldDescriptor const* field; local
[all...]
/frameworks/base/tools/incident_section_gen/
H A Dmain.cpp43 const FieldDescriptor* field = descriptor->field(i); local
44 if (field->type() == FieldDescriptor::TYPE_MESSAGE) {
45 sections[field->name()] = field;
54 const FieldDescriptor* field = it->second; local
55 printf(" { %d, \"%s\" }", field->number(), field->name().c_str());
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java317 * Tests if the field is pubic, static and one of int or int[].
319 private static boolean isValidRField(Field field) { argument
320 int modifiers = field.getModifiers();
322 Class<?> type = field.getType();
361 for (Field field : fields) {
362 if (!isValidRField(field)) {
367 String name = field.getName();
368 if (field.getType().isArray()) {
369 int[] styleableValue = (int[]) field.get(null);
388 index = (Integer) field
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DScriptGroup.java257 * @param field the field ID for the global variable
261 public Future getGlobal(Script.FieldID field) { argument
262 Future f = mGlobalFuture.get(field);
265 // If the field is not bound to this closure, this will return a future
267 // cross-module (cross-script) linking in this case where a field not
269 Object obj = mBindings.get(field);
273 f = new Future(this, field, obj);
274 mGlobalFuture.put(field, f);
536 * of connections: kernel to kernel and kernel to field
870 Binding(Script.FieldID field, Object value) argument
[all...]

Completed in 731 milliseconds

12