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

1234

/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/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/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoDumper.java80 serializer.attribute("", "rotation", Integer.toString(
99 serializer.attribute("", "NAF", Boolean.toString(true));
100 serializer.attribute("", "index", Integer.toString(index));
101 serializer.attribute("", "text", safeCharSeqToString(node.getText()));
102 serializer.attribute("", "class", safeCharSeqToString(node.getClassName()));
103 serializer.attribute("", "package", safeCharSeqToString(node.getPackageName()));
104 serializer.attribute("", "content-desc", safeCharSeqToString(node.getContentDescription()));
105 serializer.attribute("", "checkable", Boolean.toString(node.isCheckable()));
106 serializer.attribute("", "checked", Boolean.toString(node.isChecked()));
107 serializer.attribute("", "clickabl
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DBridgeXmlPullAttributes.java49 * the name of the attribute.
54 // get the attribute name.
57 // get the attribute namespace
69 // this is not an attribute in the android namespace, we query the customviewloader, if
82 public int getAttributeListValue(String namespace, String attribute, argument
84 String value = getAttributeValue(namespace, attribute);
99 public boolean getAttributeBooleanValue(String namespace, String attribute, argument
101 String value = getAttributeValue(namespace, attribute);
116 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { argument
117 String value = getAttributeValue(namespace, attribute);
123 getAttributeIntValue(String namespace, String attribute, int defaultValue) argument
140 getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) argument
157 getAttributeFloatValue(String namespace, String attribute, float defaultValue) argument
[all...]
/frameworks/av/libvideoeditor/osal/src/
H A DM4OSA_Mutex.c60 pthread_mutexattr_t attribute = { 0 }; local
78 /* Initialize the mutex attribute. */
79 if ( 0 == pthread_mutexattr_init( &attribute ) )
82 if ( 0 == pthread_mutexattr_settype( &attribute, PTHREAD_MUTEX_RECURSIVE ) )
85 if (0 == pthread_mutex_init( &pMutexContext->mutex, &attribute ) )
91 /* Destroy the mutex attribute. */
92 pthread_mutexattr_destroy( &attribute );
H A DM4OSA_Thread.c210 pthread_attr_t attribute = { 0, 0, 0, 0, 0, 0 }; local
241 if ( 0 == pthread_attr_init( &attribute ) )
243 if ( 0 == pthread_attr_setdetachstate( &attribute, PTHREAD_CREATE_DETACHED ) )
245 if ( 0 == pthread_attr_setstacksize( &attribute, (size_t)threadContext->stackSize ) )
247 if ( 0 == pthread_attr_setschedpolicy( &attribute, SCHED_OTHER ) )
285 if ( 0 == pthread_attr_setschedparam( &attribute, &sched ) )
288 &attribute,
303 pthread_attr_destroy( &attribute );
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethod.aidl43 void startInput(in IInputContext inputContext, in EditorInfo attribute);
45 void restartInput(in IInputContext inputContext, in EditorInfo attribute);
H A DIInputMethodManager.aidl46 IInputContext inputContext, in EditorInfo attribute, int controlFlags);
52 // Report that a window has gained focus. If 'attribute' is non-null,
56 in EditorInfo attribute, IInputContext inputContext);
/frameworks/base/media/java/android/media/videoeditor/
H A DVideoEditorImpl.java1377 serializer.attribute("",
1380 serializer.attribute("", ATTR_REGENERATE_PCM,
1386 serializer.attribute("", ATTR_ID, mediaItem.getId());
1387 serializer.attribute("", ATTR_TYPE,
1389 serializer.attribute("", ATTR_FILENAME, mediaItem.getFilename());
1390 serializer.attribute("", ATTR_RENDERING_MODE, Integer.toString(
1395 .attribute("", ATTR_BEGIN_TIME,
1397 serializer.attribute("", ATTR_END_TIME,
1399 serializer.attribute("", ATTR_VOLUME,
1401 serializer.attribute("", ATTR_MUTE
[all...]
/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/av/libvideoeditor/vss/common/inc/
H A DM4SYS_AccessUnit.h34 /** The attribute of a fragment*/
50 M4SYS_FragAttr isCorrupted; /**< The attribute of this fragment*/
53 /**< The attribute of an access unit*/
70 M4SYS_AU_Attr attribute; /**< The attribute of the access unit*/ member in struct:__anon179
/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/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/core/java/com/android/internal/util/
H A DXmlUtils.java217 * @param name Name attribute to include with this list's tag, or null for
240 out.attribute(null, "name", name);
256 * @param name Name attribute to include with this list's tag, or null for
276 out.attribute(null, "name", name);
299 out.attribute(null, "name", name);
314 * @param name Name attribute to include with this array's tag, or null for
333 out.attribute(null, "name", name);
337 out.attribute(null, "num", Integer.toString(N));
358 * @param name Name attribute to include with this array's tag, or null for
378 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/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/core/java/android/content/
H A DSyncAdaptersCache.java81 out.attribute(null, "authority", item.authority);
82 out.attribute(null, "accountType", item.accountType);
/frameworks/native/opengl/tests/lib/
H A DglTestLib.cpp73 struct {EGLint attribute; const char* name;} names[] = { member in struct:__anon1495
111 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute,
/frameworks/av/libvideoeditor/osal/inc/
H A DM4OSA_FileCommon_priv.h86 M4OSA_FileAttribute* attribute);
/frameworks/base/services/java/com/android/server/
H A DPreferredComponent.java169 serializer.attribute(null, "name", mShortComponent);
171 serializer.attribute(null, "match", Integer.toHexString(mMatch));
173 serializer.attribute(null, "set", Integer.toString(NS));
176 serializer.attribute(null, "name", mSetComponents[s]);
/frameworks/base/services/java/com/android/server/pm/
H A DPackageSignatures.java53 serializer.attribute(null, "count",
64 serializer.attribute(null, "index", Integer.toString(j));
70 serializer.attribute(null, "index", Integer.toString(numPast));
71 serializer.attribute(null, "key", sig.toCharsString());
/frameworks/compile/mclinker/include/mcld/MC/
H A DMCLDInput.h63 const Attribute* attribute() const function in class:mcld::Input

Completed in 1321 milliseconds

1234