Searched refs:attribute (Results 1 - 25 of 105) sorted by relevance

12345

/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonEmulation.cpp27 pConfig.attribute().constraint().enableWholeArchive();
28 pConfig.attribute().constraint().enableAsNeeded();
29 pConfig.attribute().constraint().setSharedSystem();
32 pConfig.attribute().predefined().unsetWholeArchive();
33 pConfig.attribute().predefined().unsetAsNeeded();
34 pConfig.attribute().predefined().setDynamic();
/frameworks/base/core/java/android/util/
H A DXmlPullAttributes.java57 public int getAttributeListValue(String namespace, String attribute, argument
60 getAttributeValue(namespace, attribute), options, defaultValue);
63 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
66 getAttributeValue(namespace, attribute), defaultValue);
69 public int getAttributeResourceValue(String namespace, String attribute, argument
72 getAttributeValue(namespace, attribute), defaultValue);
75 public int getAttributeIntValue(String namespace, String attribute, argument
78 getAttributeValue(namespace, attribute), defaultValue);
81 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
84 getAttributeValue(namespace, attribute), defaultValu
87 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
H A DAttributeSet.java26 * the Resources API will convert resource references (attribute values such as
32 * application of themes and styles when retrieving attribute values.
56 * identifier associated with a particular XML attribute name.
67 * Returns the name of the specified attribute.
69 * @param index Index of the desired attribute, 0...count-1.
71 * @return A String containing the name of the attribute, or null if the
72 * attribute cannot be found.
77 * Returns the value of the specified attribute as a string representation.
79 * @param index Index of the desired attribute, 0...count-1.
81 * @return A String containing the value of the attribute, o
135 getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) argument
147 getAttributeBooleanValue(String namespace, String attribute, boolean defaultValue) argument
165 getAttributeResourceValue(String namespace, String attribute, int defaultValue) argument
177 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
191 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
203 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Emulation.cpp27 pConfig.attribute().constraint().enableWholeArchive();
28 pConfig.attribute().constraint().enableAsNeeded();
29 pConfig.attribute().constraint().setSharedSystem();
32 pConfig.attribute().predefined().unsetWholeArchive();
33 pConfig.attribute().predefined().unsetAsNeeded();
34 pConfig.attribute().predefined().setDynamic();
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMEmulation.cpp27 pConfig.attribute().constraint().enableWholeArchive();
28 pConfig.attribute().constraint().enableAsNeeded();
29 pConfig.attribute().constraint().setSharedSystem();
32 pConfig.attribute().predefined().unsetWholeArchive();
33 pConfig.attribute().predefined().unsetAsNeeded();
34 pConfig.attribute().predefined().setDynamic();
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsEmulation.cpp31 pConfig.attribute().constraint().enableWholeArchive();
32 pConfig.attribute().constraint().enableAsNeeded();
33 pConfig.attribute().constraint().setSharedSystem();
36 pConfig.attribute().predefined().unsetWholeArchive();
37 pConfig.attribute().predefined().unsetAsNeeded();
38 pConfig.attribute().predefined().setDynamic();
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Emulation.cpp37 pConfig.attribute().constraint().enableWholeArchive();
38 pConfig.attribute().constraint().enableAsNeeded();
39 pConfig.attribute().constraint().setSharedSystem();
42 pConfig.attribute().predefined().unsetWholeArchive();
43 pConfig.attribute().predefined().unsetAsNeeded();
44 pConfig.attribute().predefined().setDynamic();
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoDumper.java88 serializer.attribute("", "rotation", Integer.toString(rotation));
105 serializer.attribute("", "NAF", Boolean.toString(true));
106 serializer.attribute("", "index", Integer.toString(index));
107 serializer.attribute("", "text", safeCharSeqToString(node.getText()));
108 serializer.attribute("", "resource-id", safeCharSeqToString(node.getViewIdResourceName()));
109 serializer.attribute("", "class", safeCharSeqToString(node.getClassName()));
110 serializer.attribute("", "package", safeCharSeqToString(node.getPackageName()));
111 serializer.attribute("", "content-desc", safeCharSeqToString(node.getContentDescription()));
112 serializer.attribute("", "checkable", Boolean.toString(node.isCheckable()));
113 serializer.attribute("", "checke
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DInputFactory.cpp22 m_pAttrSet = new AttributeSet(16, pConfig.attribute().predefined());
24 pConfig.attribute().predefined(),
25 pConfig.attribute().constraint());
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeLayoutParamsMapAttributes.java26 * An implementation of the {@link AttributeSet} interface on top of a map of attribute in the form
79 public int getAttributeListValue(String namespace, String attribute, argument
85 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
91 public int getAttributeResourceValue(String namespace, String attribute, argument
97 public int getAttributeIntValue(String namespace, String attribute, argument
103 public int getAttributeUnsignedIntValue(String namespace, String attribute, argument
109 public float getAttributeFloatValue(String namespace, String attribute, argument
H A DBridgeXmlBlockParser.java414 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
416 return mAttrib.getAttributeBooleanValue(namespace, attribute, defaultValue);
425 public float getAttributeFloatValue(String namespace, String attribute, float defaultValue) { argument
426 return mAttrib.getAttributeFloatValue(namespace, attribute, defaultValue);
435 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) { argument
436 return mAttrib.getAttributeIntValue(namespace, attribute, defaultValue);
445 public int getAttributeListValue(String namespace, String attribute, argument
447 return mAttrib.getAttributeListValue(namespace, attribute, options, defaultValue);
461 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
462 return mAttrib.getAttributeResourceValue(namespace, attribute, defaultValu
471 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DCrossProfileIntentFilter.java109 String getStringFromXml(XmlPullParser parser, String attribute, String defaultValue) { argument
110 String value = parser.getAttributeValue(null, attribute);
112 String msg = "Missing element under " + TAG +": " + attribute + " at " +
121 int getIntFromXml(XmlPullParser parser, String attribute, int defaultValue) { argument
122 String stringValue = getStringFromXml(parser, attribute, null);
130 serializer.attribute(null, ATTR_TARGET_USER_ID, Integer.toString(mTargetUserId));
131 serializer.attribute(null, ATTR_FLAGS, Integer.toString(mFlags));
132 serializer.attribute(null, ATTR_OWNER_USER_ID, Integer.toString(mOwnerUserId));
133 serializer.attribute(null, ATTR_OWNER_PACKAGE, mOwnerPackage);
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DBridgeXmlPullAttributes.java50 * the name of the attribute.
55 // get the attribute name.
58 // get the attribute namespace
70 // this is not an attribute in the android namespace, we query the customviewloader, if
83 public int getAttributeListValue(String namespace, String attribute, argument
85 String value = getAttributeValue(namespace, attribute);
100 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
102 String value = getAttributeValue(namespace, attribute);
117 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
118 String value = getAttributeValue(namespace, attribute);
124 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
141 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
158 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp285 EGLint attribute, EGLint wanted, EGLConfig* outConfig) {
293 if (attribute != EGL_NONE) {
296 eglGetConfigAttrib(dpy, configs[i], attribute, &value);
335 EGLint attribute; member in class:android::EGLAttributeVector::Adder
336 Adder(EGLAttributeVector& v, EGLint attribute) argument
337 : v(v), attribute(attribute) {
341 if (attribute != EGL_NONE) {
342 v.mList.add(attribute, value);
345 operator EGLint () const { return v.mList[attribute]; }
284 selectConfigForAttribute(EGLDisplay dpy, EGLint const* attrs, EGLint attribute, EGLint wanted, EGLConfig* outConfig) argument
351 remove(EGLint attribute) argument
356 operator [](EGLint attribute) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethod.aidl41 void startInput(in IInputContext inputContext, in EditorInfo attribute);
43 void restartInput(in IInputContext inputContext, in EditorInfo attribute);
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DFastXmlSerializerTest.java38 out.attribute(null, "name", "meow");
/frameworks/compile/mclinker/include/mcld/
H A DLinkerConfig.h28 * attribute() - the attribute options
81 const AttributeOption& attribute() const { return m_Attribute; } function in class:mcld::LinkerConfig
82 AttributeOption& attribute() { return m_Attribute; } function in class:mcld::LinkerConfig
/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/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.java87 String attribute = getAttributeName(i);
88 if (attribute.equals(ATTR_IGNORE)) {
94 map.put(attribute, getAttributeValue(i));
/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.java219 * @param name Name attribute to include with this list's tag, or null for
238 * @param name Name attribute to include with this list's tag, or null for
261 out.attribute(null, "name", name);
272 * name attribute have already been written and does not write an end tag.
304 * @param name Name attribute to include with this list's tag, or null for
324 out.attribute(null, "name", name);
347 out.attribute(null, "name", name);
362 * @param name Name attribute to include with this array's tag, or null for
381 out.attribute(null, "name", name);
385 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/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPrintSpoolerService.java775 serializer.attribute(null, ATTR_ID, printJob.getId().flattenToString());
776 serializer.attribute(null, ATTR_LABEL, printJob.getLabel().toString());
777 serializer.attribute(null, ATTR_STATE, String.valueOf(printJob.getState()));
778 serializer.attribute(null, ATTR_APP_ID, String.valueOf(printJob.getAppId()));
781 serializer.attribute(null, ATTR_TAG, tag);
783 serializer.attribute(null, ATTR_CREATION_TIME, String.valueOf(
785 serializer.attribute(null, ATTR_COPIES, String.valueOf(printJob.getCopies()));
788 serializer.attribute(null, ATTR_PRINTER_NAME, printerName);
792 serializer.attribute(null, ATTR_STATE_REASON, stateReason);
794 serializer.attribute(nul
[all...]
/frameworks/base/services/core/java/com/android/server/job/
H A DJobStore.java300 out.attribute(null, "version", Integer.toString(JOBS_FILE_VERSION));
335 out.attribute(null, "jobid", Integer.toString(jobStatus.getJobId()));
336 out.attribute(null, "package", jobStatus.getServiceComponent().getPackageName());
337 out.attribute(null, "class", jobStatus.getServiceComponent().getClassName());
338 out.attribute(null, "uid", Integer.toString(jobStatus.getUid()));
354 out.attribute(null, "unmetered", Boolean.toString(true));
357 out.attribute(null, "connectivity", Boolean.toString(true));
360 out.attribute(null, "idle", Boolean.toString(true));
363 out.attribute(null, "charging", Boolean.toString(true));
373 out.attribute(nul
[all...]

Completed in 2921 milliseconds

12345