Searched refs:attribute (Results 51 - 75 of 192) sorted by relevance

12345678

/frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
H A DTabHostBindingAdapter.java26 @InverseBindingAdapter(attribute = "android:currentTab")
31 @InverseBindingAdapter(attribute = "android:currentTab")
H A DViewGroupBindingAdapter.java31 @BindingMethod(type = android.view.ViewGroup.class, attribute = "android:alwaysDrawnWithCache", method = "setAlwaysDrawnWithCacheEnabled"),
32 @BindingMethod(type = android.view.ViewGroup.class, attribute = "android:animationCache", method = "setAnimationCacheEnabled"),
33 @BindingMethod(type = android.view.ViewGroup.class, attribute = "android:splitMotionEvents", method = "setMotionEventSplittingEnabled"),
H A DCalendarViewBindingAdapter.java26 @InverseBindingMethod(type = CalendarView.class, attribute = "android:date"),
H A DRadioGroupBindingAdapter.java26 @InverseBindingMethod(type = RadioGroup.class, attribute = "android:checkedButton", method = "getCheckedRadioButtonId"),
H A DRatingBarBindingAdapter.java26 @InverseBindingMethod(type = RatingBar.class, attribute = "android:rating"),
H A DTextViewBindingAdapter.java44 @BindingMethod(type = TextView.class, attribute = "android:autoLink", method = "setAutoLinkMask"),
45 @BindingMethod(type = TextView.class, attribute = "android:drawablePadding", method = "setCompoundDrawablePadding"),
46 @BindingMethod(type = TextView.class, attribute = "android:editorExtras", method = "setInputExtras"),
47 @BindingMethod(type = TextView.class, attribute = "android:inputType", method = "setRawInputType"),
48 @BindingMethod(type = TextView.class, attribute = "android:scrollHorizontally", method = "setHorizontallyScrolling"),
49 @BindingMethod(type = TextView.class, attribute = "android:textAllCaps", method = "setAllCaps"),
50 @BindingMethod(type = TextView.class, attribute = "android:textColorHighlight", method = "setHighlightColor"),
51 @BindingMethod(type = TextView.class, attribute = "android:textColorHint", method = "setHintTextColor"),
52 @BindingMethod(type = TextView.class, attribute = "android:textColorLink", method = "setLinkTextColor"),
53 @BindingMethod(type = TextView.class, attribute
[all...]
H A DTimePickerBindingAdapter.java56 @InverseBindingAdapter(attribute = "android:hour")
71 @InverseBindingAdapter(attribute = "android:minute")
/frameworks/native/opengl/tools/glgen/specs/egl/
H A DEGL14.spec8 EGLBoolean eglGetConfigAttrib ( EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value )
13 EGLBoolean eglQuerySurface ( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value )
19 EGLBoolean eglSurfaceAttrib ( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value )
29 EGLBoolean eglQueryContext ( EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *value )
/frameworks/base/tools/aapt2/link/
H A DXmlReferenceLinker.cpp83 // There is a valid package name for this attribute. We will look this up.
97 // Convert the string value into a compiled Value if this is a valid attribute.
108 const Attribute* attribute = &attr.compiledAttribute.value().attribute; variable
110 attribute);
112 !(attribute->typeMask & android::ResTable_map::TYPE_STRING)) {
116 << "is incompatible with attribute "
118 << *attribute);
124 << "attribute '" << package << ":"
H A DReferenceLinker.cpp73 // Transform the attribute reference so that it is using the fully qualified package
80 // Find the attribute in the symbol table and check if it is visible from this callsite.
89 // attribute it is set to.
91 symbol->attribute.get());
96 // Now verify that the type of this item is compatible with the attribute it
99 if (!symbol->attribute->matches(entry.value.get(), nullptr)) {
100 // The actual type of this item is incompatible with the attribute.
105 symbol->attribute->matches(entry.value.get(), &msg);
112 msg << "style attribute '";
220 if (!symbol->attribute) {
[all...]
/frameworks/base/core/java/android/content/res/
H A DXmlBlock.java314 public int getAttributeListValue(String namespace, String attribute, argument
316 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
322 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
324 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
330 public int getAttributeResourceValue(String namespace, String attribute, argument
332 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
338 public int getAttributeIntValue(String namespace, String attribute, argument
340 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
346 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
349 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
355 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/setup/
H A DLayoutPullParser.java85 String attribute = getAttributeName(i);
86 if (attribute.equals(ATTR_IGNORE)) {
92 map.put(attribute, getAttributeValue(i));
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java77 // order by attribute name
92 for (String attribute : o1.mKey.attributeIndices.keySet()) {
93 final int index1 = o1.mKey.attributeIndices.get(attribute);
94 final int index2 = o2.mKey.attributeIndices.get(attribute);
178 public void addRenamedMethod(String attribute, String declaringClass, String method, argument
180 attribute = stripNamespace(attribute);
181 HashMap<String, MethodDescription> renamed = mStore.renamedMethods.get(attribute);
184 mStore.renamedMethods.put(attribute, renamed);
192 public void addInverseMethod(String attribute, Strin argument
207 addBindingAdapter(ProcessingEnvironment processingEnv, String attribute, ExecutableElement bindingMethod, boolean takesComponent) argument
232 addInverseAdapter(ProcessingEnvironment processingEnv, String attribute, String event, ExecutableElement bindingMethod, boolean takesComponent) argument
446 stripNamespace(String attribute) argument
456 isTwoWayEventAttribute(String attribute) argument
647 getSetterCall(String attribute, ModelClass viewType, ModelClass valueType, Map<String, String> imports) argument
712 getGetterCall(String attribute, ModelClass viewType, ModelClass valueType, Map<String, String> imports) argument
786 getBestSetter(ModelClass viewType, ModelClass argumentType, String attribute, Map<String, String> imports) argument
830 getBestGetter(ModelClass viewType, ModelClass valueType, String attribute, Map<String, String> imports) argument
909 trimAttributeNamespace(String attribute) argument
914 getDefaultSetter(String attribute) argument
1654 ViewDataBindingGetterCall(String attribute) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethod.java143 * @param attribute The attribute of the text box (typically, a EditText)
148 public void restartInput(InputConnection inputConnection, EditorInfo attribute); argument
/frameworks/base/core/java/com/android/internal/util/
H A DXmlUtils.java224 * @param name Name attribute to include with this list's tag, or null for
243 * @param name Name attribute to include with this list's tag, or null for
266 out.attribute(null, "name", name);
277 * name attribute have already been written and does not write an end tag.
309 * @param name Name attribute to include with this list's tag, or null for
329 out.attribute(null, "name", name);
352 out.attribute(null, "name", name);
367 * @param name Name attribute to include with this array's tag, or null for
386 out.attribute(null, "name", name);
390 out.attribute(nul
[all...]
/frameworks/native/opengl/tests/configdump/
H A Dconfigdump.cpp25 EGLint attribute; member in struct:Attribute
81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DLayoutParserWrapper.java184 for (Attribute attribute : mAttributes) {
186 if (attribute.name.equals(name) && (attribute.namespace == namespace ||
187 attribute.namespace != null && attribute.namespace.equals(namespace))) {
188 returnValue = attribute.value;
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPrintSpoolerService.java896 serializer.attribute(null, ATTR_ID, printJob.getId().flattenToString());
897 serializer.attribute(null, ATTR_LABEL, printJob.getLabel().toString());
898 serializer.attribute(null, ATTR_STATE, String.valueOf(printJob.getState()));
899 serializer.attribute(null, ATTR_APP_ID, String.valueOf(printJob.getAppId()));
902 serializer.attribute(null, ATTR_TAG, tag);
904 serializer.attribute(null, ATTR_CREATION_TIME, String.valueOf(
906 serializer.attribute(null, ATTR_COPIES, String.valueOf(printJob.getCopies()));
909 serializer.attribute(null, ATTR_PRINTER_NAME, printerName);
911 serializer.attribute(null, ATTR_CANCELLING, String.valueOf(
916 serializer.attribute(nul
[all...]
/frameworks/base/tools/aapt2/process/
H A DSymbolTable.cpp108 // Recurse and try looking up a private attribute.
129 symbol->attribute = std::make_shared<Attribute>(*attr);
157 // Check to see if it is an attribute.
160 s->attribute = std::make_shared<Attribute>(false);
161 s->attribute->typeMask = entry[i].map.value.data;
166 if (s->attribute) {
172 s->attribute->minInt = static_cast<int32_t>(mapEntry.value.data);
175 s->attribute->maxInt = static_cast<int32_t>(mapEntry.value.data);
201 s->attribute->symbols.push_back(std::move(symbol));
/frameworks/base/services/core/java/com/android/server/job/
H A DJobStore.java287 out.attribute(null, "version", Integer.toString(JOBS_FILE_VERSION));
324 out.attribute(null, "jobid", Integer.toString(jobStatus.getJobId()));
325 out.attribute(null, "package", jobStatus.getServiceComponent().getPackageName());
326 out.attribute(null, "class", jobStatus.getServiceComponent().getClassName());
328 out.attribute(null, "sourcePackageName", jobStatus.getSourcePackageName());
331 out.attribute(null, "sourceTag", jobStatus.getSourceTag());
333 out.attribute(null, "sourceUserId", String.valueOf(jobStatus.getSourceUserId()));
334 out.attribute(null, "uid", Integer.toString(jobStatus.getUid()));
335 out.attribute(null, "priority", String.valueOf(jobStatus.getPriority()));
336 out.attribute(nul
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DEGLLogWrapper.java166 int attribute, int[] value) {
170 arg("attribute", attribute);
172 boolean result = mEgl10.eglGetConfigAttrib(display, config, attribute,
278 int attribute, int[] value) {
282 arg("attribute", attribute);
284 boolean result = mEgl10.eglQueryContext(display, context, attribute,
304 int attribute, int[] value) {
308 arg("attribute", attribut
165 eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value) argument
277 eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value) argument
303 eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DDisplaySettings.java211 out.attribute(null, "name", entry.name);
213 out.attribute(null, "overscanLeft", Integer.toString(entry.overscanLeft));
216 out.attribute(null, "overscanTop", Integer.toString(entry.overscanTop));
219 out.attribute(null, "overscanRight", Integer.toString(entry.overscanRight));
222 out.attribute(null, "overscanBottom", Integer.toString(entry.overscanBottom));
/frameworks/base/core/java/android/app/admin/
H A DSystemUpdatePolicy.java266 out.attribute(null, KEY_POLICY_TYPE, Integer.toString(mPolicyType));
267 out.attribute(null, KEY_INSTALL_WINDOW_START, Integer.toString(mMaintenanceWindowStart));
268 out.attribute(null, KEY_INSTALL_WINDOW_END, Integer.toString(mMaintenanceWindowEnd));
/frameworks/base/opengl/java/javax/microedition/khronos/egl/
H A DEGL10.java105 boolean eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value); argument
114 boolean eglQueryContext(EGLDisplay display, EGLContext context, int attribute, int[] value); argument
116 boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value); argument
/frameworks/base/tools/aapt2/test/
H A DContext.h159 if (sym->attribute) {
160 clone->attribute = std::unique_ptr<Attribute>(sym->attribute->clone(nullptr));

Completed in 640 milliseconds

12345678