Searched defs:attributes (Results 1 - 18 of 18) sorted by relevance

/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.cpp57 std::vector<std::string> attributes; local
58 GetFeatureVector(attributes, /* pEnableNEON */mEnableNEON);
59 setFeatureString(attributes);
67 std::vector<std::string> attributes; local
68 GetFeatureVector(attributes, pEnable);
69 setFeatureString(attributes);
/frameworks/base/drm/java/android/drm/
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 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
/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/core/java/android/content/pm/
H A DManifestDigest.java52 static ManifestDigest fromAttributes(Attributes attributes) { argument
53 if (attributes == null) {
60 final String value = attributes.getValue(DIGEST_TYPES[i]);
/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/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeLayoutParamsMapAttributes.java36 public BridgeLayoutParamsMapAttributes(Map<String, String> attributes) { argument
37 mAttributes = attributes;
/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/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/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/java/android/text/
H A DHtml.java468 private void handleStartTag(String tag, Attributes attributes) { argument
493 startFont(mSpannableStringBuilder, attributes);
500 startA(mSpannableStringBuilder, attributes);
513 startImg(mSpannableStringBuilder, attributes, mImageGetter);
624 Attributes attributes, Html.ImageGetter img) {
625 String src = attributes.getValue("", "src");
646 Attributes attributes) {
647 String color = attributes.getValue("", "color");
648 String face = attributes.getValue("", "face");
692 private static void startA(SpannableStringBuilder text, Attributes attributes) { argument
623 startImg(SpannableStringBuilder text, Attributes attributes, Html.ImageGetter img) argument
645 startFont(SpannableStringBuilder text, Attributes attributes) argument
754 startElement(String uri, String localName, String qName, Attributes attributes) argument
[all...]
/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/media/java/android/media/
H A DMediaScanner.java1708 public void start(Attributes attributes) { argument
1709 String path = attributes.getValue("", "src");
/frameworks/base/core/java/android/widget/
H A DGridLayout.java2000 protected void setBaseAttributes(TypedArray attributes, int widthAttr, int heightAttr) { argument
2001 this.width = attributes.getLayoutDimension(widthAttr, DEFAULT_WIDTH);
2002 this.height = attributes.getLayoutDimension(heightAttr, DEFAULT_HEIGHT);
/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 233 milliseconds