Searched refs:attributes (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/base/sax/java/android/sax/
H A DStartElementListener.java29 * @param attributes from the element
31 void start(Attributes attributes); argument
H A DRootElement.java111 Attributes attributes) throws SAXException {
116 startRoot(uri, localName, attributes);
134 start(child, attributes);
140 void startRoot(String uri, String localName, Attributes attributes) argument
150 start(root, attributes);
153 void start(Element e, Attributes attributes) { argument
158 e.startElementListener.start(attributes);
110 startElement(String uri, String localName, String qName, Attributes attributes) argument
/frameworks/compile/libbcc/lib/Support/
H A DTargetCompilerConfigs.cpp85 std::vector<std::string> attributes; local
86 GetFeatureVector(attributes, mInThumbMode, mEnableNEON);
87 setFeatureString(attributes);
95 std::vector<std::string> attributes; local
96 GetFeatureVector(attributes, mInThumbMode, pEnable);
97 setFeatureString(attributes);
/frameworks/base/drm/java/android/drm/
H A DDrmEvent.java39 * The key that is used in the <code>attributes</code> HashMap to pass the return status.
43 * The key that is used in the <code>attributes</code> HashMap to pass the
60 * @param attributes Attributes for extensible information.
63 HashMap<String, Object> attributes) {
71 if (null != attributes) {
72 mAttributes = attributes;
122 * @return One of the attributes or null if no mapping for
62 DrmEvent(int uniqueId, int type, String message, HashMap<String, Object> attributes) argument
H A DDrmErrorEvent.java93 * @param attributes Attributes for extensible information. Could be any
97 HashMap<String, Object> attributes) {
98 super(uniqueId, type, message, attributes);
96 DrmErrorEvent(int uniqueId, int type, String message, HashMap<String, Object> attributes) argument
H A DDrmInfoEvent.java84 * @param attributes Attributes for extensible information. Could be any
88 HashMap<String, Object> attributes) {
89 super(uniqueId, type, message, attributes);
87 DrmInfoEvent(int uniqueId, int type, String message, HashMap<String, Object> attributes) argument
H A DDrmManagerClient.java137 HashMap<String, Object> attributes = new HashMap<String, Object>();
144 attributes.put(DrmEvent.DRM_INFO_STATUS_OBJECT, status);
145 attributes.put(DrmEvent.DRM_INFO_OBJECT, drmInfo);
149 getEventType(status.infoType), null, attributes);
153 getErrorType(infoType), null, attributes);
/frameworks/base/core/java/android/hardware/usb/
H A DUsbEndpoint.java44 public UsbEndpoint(int address, int attributes, int maxPacketSize, int interval) { argument
46 mAttributes = attributes;
89 * Returns the endpoint's attributes field.
91 * @return the endpoint's attributes
141 int attributes = in.readInt();
144 return new UsbEndpoint(address, attributes, maxPacketSize, interval);
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java58 public void start(Attributes attributes) { argument
71 public void start(Attributes attributes) { argument
245 public void start(Attributes attributes) {
246 String url = attributes.getValue("", "url");
255 public void start(Attributes attributes) {
256 String url = attributes.getValue("", "url");
265 public void start(Attributes attributes) {
266 String url = attributes.getValue("", "url");
303 public void start(Attributes attributes) {
304 String seconds = attributes
339 start(Attributes attributes) argument
362 startElement(String uri, String localName, String qName, Attributes attributes) argument
[all...]
/frameworks/native/opengl/tests/configdump/
H A Dconfigdump.cpp29 Attribute attributes[] = { variable
79 for (int attr = 0 ; attr<sizeof(attributes)/sizeof(Attribute) ; attr++) {
81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
82 printf("\t%-32s: %10d (0x%08x)\n", attributes[attr].name, value, value);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeLayoutParamsMapAttributes.java36 public BridgeLayoutParamsMapAttributes(Map<String, String> attributes) { argument
37 mAttributes = attributes;
H A DBridgeContext.java728 List<Pair<String, Boolean>> attributes = searchAttrs(attrs);
735 Pair<String, Boolean> attribute = attributes.get(i);
757 * The input int[] attrs is a list of attributes. The returns a list of information about
758 * each attributes. The information is (name, isFramework)
/frameworks/wilhelm/src/
H A Dlocks.c145 * attributes
149 void object_unlock_exclusive_attributes_(IObject *thiz, unsigned attributes, argument
152 void object_unlock_exclusive_attributes(IObject *thiz, unsigned attributes)
176 // first synchronously handle updates to attributes here, while object is still locked.
178 unsigned asynchronous = attributes;
179 while (attributes) {
181 unsigned bit = ctz(attributes);
189 attributes &= ~(1 << bit);
192 // any remaining attributes are handled asynchronously in the sync thread
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.cpp557 } attributes[] = { local
569 for (attrib = attributes; attrib < attributes + NUMA(attributes);
573 if (attrib >= attributes + NUMA(attributes)) {
611 } attributes[] = { local
640 for (attrib = attributes; attrib < attributes + NUMA(attributes);
805 } attributes[] = { local
[all...]
/frameworks/base/core/java/android/widget/
H A DRadioGroup.java49 * for layout attributes.</p>
81 TypedArray attributes = context.obtainStyledAttributes(
84 int value = attributes.getResourceId(R.styleable.RadioGroup_checkedButton, View.NO_ID);
89 final int index = attributes.getInt(com.android.internal.R.styleable.RadioGroup_orientation, VERTICAL);
92 attributes.recycle();
262 * for a list of all child view attributes that this class supports.</p>
307 * @param a the styled attributes set
H A DSpellChecker.java336 final int attributes = suggestionsInfo.getSuggestionsAttributes();
338 ((attributes & SuggestionsInfo.RESULT_ATTR_IN_THE_DICTIONARY) > 0);
340 ((attributes & SuggestionsInfo.RESULT_ATTR_LOOKS_LIKE_TYPO) > 0);
H A DGridLayout.java1999 protected void setBaseAttributes(TypedArray attributes, int widthAttr, int heightAttr) { argument
2000 this.width = attributes.getLayoutDimension(widthAttr, DEFAULT_WIDTH);
2001 this.height = attributes.getLayoutDimension(heightAttr, DEFAULT_HEIGHT);
/frameworks/base/core/java/android/text/
H A DHtml.java469 private void handleStartTag(String tag, Attributes attributes) { argument
494 startFont(mSpannableStringBuilder, attributes);
501 startA(mSpannableStringBuilder, attributes);
514 startImg(mSpannableStringBuilder, attributes, mImageGetter);
623 Attributes attributes, Html.ImageGetter img) {
624 String src = attributes.getValue("", "src");
645 Attributes attributes) {
646 String color = attributes.getValue("", "color");
647 String face = attributes.getValue("", "face");
691 private static void startA(SpannableStringBuilder text, Attributes attributes) { argument
622 startImg(SpannableStringBuilder text, Attributes attributes, Html.ImageGetter img) argument
644 startFont(SpannableStringBuilder text, Attributes attributes) argument
753 startElement(String uri, String localName, String qName, Attributes attributes) argument
[all...]
/frameworks/base/services/java/com/android/server/usb/
H A DUsbHostManager.java102 /* array of quadruples containing address, attributes, max packet size
132 int attributes = endpointValues[eval++];
135 endpoints[endp] = new UsbEndpoint(address, attributes,
/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java189 int[] attributes = {
260 for (int i = 0; i < attributes.length; i++) {
261 int attribute = attributes[i];
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.java189 int[] attributes = {
260 for (int i = 0; i < attributes.length; i++) {
261 int attribute = attributes[i];
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java192 int[] attributes = {
263 for (int i = 0; i < attributes.length; i++) {
264 int attribute = attributes[i];
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DFontLoader.java206 public void startElement(String uri, String localName, String name, Attributes attributes) argument
218 super.startElement(uri, localName, name, attributes);
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DAccessPointParserHelper.java126 Attributes attributes) throws SAXException {
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1933 protected void setBaseAttributes(TypedArray attributes, int widthAttr, int heightAttr) { argument
1934 this.width = attributes.getLayoutDimension(widthAttr, DEFAULT_WIDTH);
1935 this.height = attributes.getLayoutDimension(heightAttr, DEFAULT_HEIGHT);

Completed in 511 milliseconds

12