Home
last modified time | relevance | path

Searched refs:attributes (Results 1 – 25 of 175) sorted by relevance

1234567

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DGraphReader.java278 private void addImportCommand(Attributes attributes) throws SAXException { in addImportCommand() argument
279 String packageName = getRequiredAttribute(attributes, "package"); in addImportCommand()
283 private void addLibraryCommand(Attributes attributes) throws SAXException { in addLibraryCommand() argument
284 String libraryName = getRequiredAttribute(attributes, "name"); in addLibraryCommand()
288 private void addConnectCommand(Attributes attributes) { in addConnectCommand() argument
295 String sourceTag = attributes.getValue("source"); in addConnectCommand()
308 sourceFilterName = attributes.getValue("sourceFilter"); in addConnectCommand()
309 sourcePortName = attributes.getValue("sourcePort"); in addConnectCommand()
312 String targetTag = attributes.getValue("target"); in addConnectCommand()
325 targetFilterName = attributes.getValue("targetFilter"); in addConnectCommand()
[all …]
/frameworks/base/sax/tests/saxtests/src/android/sax/
DSafeSaxTest.java58 public void start(Attributes attributes) { in start() argument
71 public void start(Attributes attributes) { in start() argument
245 public void start(Attributes attributes) { in newContentHandler()
246 String url = attributes.getValue("", "url"); in newContentHandler()
255 public void start(Attributes attributes) { in newContentHandler()
256 String url = attributes.getValue("", "url"); in newContentHandler()
265 public void start(Attributes attributes) { in newContentHandler()
266 String url = attributes.getValue("", "url"); in newContentHandler()
303 public void start(Attributes attributes) { in newContentHandler()
304 String seconds = attributes.getValue("", "seconds"); in newContentHandler()
[all …]
/frameworks/compile/libbcc/lib/Support/
DTargetCompilerConfigs.cpp98 std::vector<std::string> attributes; in ARMBaseCompilerConfig() local
99 GetFeatureVector(attributes, mInThumbMode, mEnableNEON); in ARMBaseCompilerConfig()
100 setFeatureString(attributes); in ARMBaseCompilerConfig()
108 std::vector<std::string> attributes; in enableNEON() local
109 GetFeatureVector(attributes, mInThumbMode, pEnable); in enableNEON()
110 setFeatureString(attributes); in enableNEON()
/frameworks/base/sax/java/android/sax/
DRootElement.java111 Attributes attributes) throws SAXException { in startElement() argument
116 startRoot(uri, localName, attributes); in startElement()
134 start(child, attributes); in startElement()
140 void startRoot(String uri, String localName, Attributes attributes) in startRoot() argument
150 start(root, attributes); in startRoot()
153 void start(Element e, Attributes attributes) { in start() argument
158 e.startElementListener.start(attributes); in start()
DStartElementListener.java31 void start(Attributes attributes); in start() argument
/frameworks/base/core/java/android/hardware/usb/
DUsbEndpoint.java44 public UsbEndpoint(int address, int attributes, int maxPacketSize, int interval) { in UsbEndpoint() argument
46 mAttributes = attributes; in UsbEndpoint()
141 int attributes = in.readInt();
144 return new UsbEndpoint(address, attributes, maxPacketSize, interval);
/frameworks/native/opengl/tests/configdump/
Dconfigdump.cpp29 Attribute attributes[] = { variable
79 for (int attr = 0 ; attr<sizeof(attributes)/sizeof(Attribute) ; attr++) { in main()
81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value); in main()
82 printf("\t%-32s: %10d (0x%08x)\n", attributes[attr].name, value, value); in main()
/frameworks/native/opengl/tests/hwc/
DhwcTestLib.cpp557 } attributes[] = { in hwcTestColor2Pixel() local
567 for (attrib = attributes; attrib < attributes + NUMA(attributes); in hwcTestColor2Pixel()
571 if (attrib >= attributes + NUMA(attributes)) { in hwcTestColor2Pixel()
609 } attributes[] = { in hwcTestSetPixel() local
636 for (attrib = attributes; attrib < attributes + NUMA(attributes); in hwcTestSetPixel()
640 if (attrib >= attributes + NUMA(attributes)) { in hwcTestSetPixel()
801 } attributes[] = { in hwcTestColorConvert() local
817 for (fromAttrib = attributes; fromAttrib < attributes + NUMA(attributes); in hwcTestColorConvert()
821 if (fromAttrib >= attributes + NUMA(attributes)) { in hwcTestColorConvert()
828 for (toAttrib = attributes; toAttrib < attributes + NUMA(attributes); in hwcTestColorConvert()
[all …]
/frameworks/base/drm/java/android/drm/
DDrmEvent.java63 HashMap<String, Object> attributes) { in DrmEvent() argument
71 if (null != attributes) { in DrmEvent()
72 mAttributes = attributes; in DrmEvent()
DDrmErrorEvent.java97 HashMap<String, Object> attributes) { in DrmErrorEvent() argument
98 super(uniqueId, type, message, attributes); in DrmErrorEvent()
DDrmInfoEvent.java88 HashMap<String, Object> attributes) { in DrmInfoEvent() argument
89 super(uniqueId, type, message, attributes); in DrmInfoEvent()
/frameworks/base/core/java/android/print/pdf/
DPrintedPdfDocument.java84 public PrintedPdfDocument(Context context, PrintAttributes attributes) { in PrintedPdfDocument() argument
85 MediaSize mediaSize = attributes.getMediaSize(); in PrintedPdfDocument()
94 Margins minMargins = attributes.getMinMargins(); in PrintedPdfDocument()
/frameworks/base/core/java/android/printservice/
DPrintServiceInfo.java128 TypedArray attributes = resources.obtainAttributes(allAttributes, in create() local
131 settingsActivityName = attributes.getString( in create()
134 addPrintersActivityName = attributes.getString( in create()
137 advancedPrintOptionsActivityName = attributes.getString(com.android.internal in create()
140 attributes.recycle(); in create()
/frameworks/wilhelm/src/
Dlocks.c149 void object_unlock_exclusive_attributes_(IObject *thiz, unsigned attributes, in object_unlock_exclusive_attributes_() argument
152 void object_unlock_exclusive_attributes(IObject *thiz, unsigned attributes) in object_unlock_exclusive_attributes_()
178 unsigned asynchronous = attributes; in object_unlock_exclusive_attributes_()
179 while (attributes) { in object_unlock_exclusive_attributes_()
181 unsigned bit = ctz(attributes); in object_unlock_exclusive_attributes_()
189 attributes &= ~(1 << bit); in object_unlock_exclusive_attributes_()
/frameworks/support/v7/gridlayout/
DREADME.txt18 Additionally, all of GridLayout's attributes should be put in the
19 namespace of the app, as those attributes have been redefined in
21 those attributes in their namespace.
23 To know which attributes need the application namespace, look at
/frameworks/base/docs/html/training/custom-views/
Dcreate-view.jd45 <li>Provide custom styleable attributes that work with Android XML layouts</li>
81 appearance and behavior with element attributes. Well-written custom views can also be added and
86 <li>Define custom attributes for your view in a {@code
90 <li>Specify values for the attributes in your XML layout</li>
95 <p>This section discusses how to define custom attributes and specify their values.
99 <p>To define custom attributes, add {@code
118 <p>This code declares two custom attributes, {@code showText} and {@code labelPosition}, that belong
126 <p>Once you define the custom attributes, you can use them in layout XML files just like built-in
127 attributes. The only
128 difference is that your custom attributes belong to a different namespace. Instead of belonging
[all …]
/frameworks/base/docs/html/guide/topics/manifest/
Ddata-element.jd24 attributes for each of its parts:
30 These attributes are optional, but also mutually dependent:
32 intent filter, all the other URI attributes are ignored. If a
34 the {@code port} attribute and all the path attributes are ignored.
59 options. None of its attributes have default values.
71 <dt>attributes:</dt>
130 <p>These attributes are meaningful only if the
132 attributes are also specified for the filter.
138 <code><a href="#host">host</a></code> attributes are also specified for
144 for the filter, or none of the other URI attributes are meaningful.
/frameworks/base/docs/html/guide/topics/resources/
Dlayout-resource.jd41 [<em>ViewGroup-specific attributes</em>] &gt;
46 [<em>View-specific attributes</em>] &gt;
76 <p class="caps">attributes:</p>
96 <p>More attributes are supported by the {@link android.view.ViewGroup}
98 {@link android.view.ViewGroup}. For a reference of all available attributes,
102 attributes</a>).</p>
108 <p class="caps">attributes:</p>
128 <p>More attributes are supported by the {@link android.view.View}
132 a reference of all available attributes,
134 … href="{@docRoot}reference/android/widget/TextView.html#lattrs">TextView XML attributes</a>).</p>
[all …]
Danimation-resource.jd115 <p class="caps">attributes:</p>
135 <p class="caps">attributes:</p>
223 <p class="caps">attributes:</p>
293 </dd> <!-- end elements and attributes -->
418 <p class="caps">attributes:</p>
435 <p class="caps">attributes:</p>
444 <p>For more attributes supported by <code>&lt;alpha&gt;</code>, see the
445 {@link android.view.animation.Animation} class reference (of which, all XML attributes are
453 <p class="caps">attributes:</p>
468 <p>For more attributes supported by <code>&lt;scale&gt;</code>, see the
[all …]
Dmore-resources.jd70 <p>No attributes.</p>
74 <p class="caps">attributes:</p>
82 </dd> <!-- end elements and attributes -->
166 <p>No attributes.</p>
170 <p class="caps">attributes:</p>
179 </dd> <!-- end elements and attributes -->
280 <p>No attributes.</p>
285 <p class="caps">attributes:</p>
294 </dd> <!-- end elements and attributes -->
313 <p>This layout XML applies dimensions to attributes:</p>
[all …]
Dstyle-resource.jd61 <p>No attributes.</p>
65 <p class="caps">attributes:</p>
81 <p class="caps">attributes:</p>
91 </dd> <!-- end elements and attributes -->
/frameworks/base/core/java/android/text/
DHtml.java478 private void handleStartTag(String tag, Attributes attributes) { in handleStartTag() argument
503 startFont(mSpannableStringBuilder, attributes); in handleStartTag()
510 startA(mSpannableStringBuilder, attributes); in handleStartTag()
523 startImg(mSpannableStringBuilder, attributes, mImageGetter); in handleStartTag()
632 Attributes attributes, Html.ImageGetter img) { in startImg() argument
633 String src = attributes.getValue("", "src"); in startImg()
654 Attributes attributes) { in startFont() argument
655 String color = attributes.getValue("", "color"); in startFont()
656 String face = attributes.getValue("", "face"); in startFont()
700 private static void startA(SpannableStringBuilder text, Attributes attributes) { in startA() argument
[all …]
/frameworks/base/core/java/android/widget/
DRadioGroup.java81 TypedArray attributes = context.obtainStyledAttributes( in RadioGroup() local
84 int value = attributes.getResourceId(R.styleable.RadioGroup_checkedButton, View.NO_ID); in RadioGroup()
89 …final int index = attributes.getInt(com.android.internal.R.styleable.RadioGroup_orientation, VERTI… in RadioGroup()
92 attributes.recycle(); in RadioGroup()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
DBridgeLayoutParamsMapAttributes.java36 public BridgeLayoutParamsMapAttributes(Map<String, String> attributes) { in BridgeLayoutParamsMapAttributes() argument
37 mAttributes = attributes; in BridgeLayoutParamsMapAttributes()
/frameworks/base/core/java/android/print/
DPrintJobInfo.java478 public void setAttributes(PrintAttributes attributes) { in setAttributes() argument
479 mAttributes = attributes; in setAttributes()
700 public void setAttributes(PrintAttributes attributes) { in setAttributes() argument
701 mPrototype.mAttributes = attributes; in setAttributes()

1234567