HomeSort by relevance Sort by last modified time
    Searched refs:attributes (Results 176 - 200 of 4518) sorted by null

1 2 3 4 5 6 78 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
attr-arch-opts-c62x.d 2 #name: C6X arch attributes, -march=c62x
7 File Attributes
attr-arch-opts-c64x+.d 2 #name: C6X arch attributes, -march=c64x+
7 File Attributes
attr-arch-opts-c64x.d 2 #name: C6X arch attributes, -march=c64x
7 File Attributes
attr-arch-opts-c674x.d 2 #name: C6X arch attributes, -march=c674x
7 File Attributes
attr-arch-opts-c67x+.d 2 #name: C6X arch attributes, -march=c67x+
7 File Attributes
attr-arch-opts-c67x.d 2 #name: C6X arch attributes, -march=c67x
7 File Attributes
attr-arch-opts-override-1.d 2 #name: C6X arch attributes, -march=c674x -march=c62x
7 File Attributes
attr-arch-opts-override-2.d 2 #name: C6X arch attributes, -march=c62x -march=c674x
7 File Attributes
attr-array-directive-1.d 2 #name: C6X array alignment attributes, directives 1
7 File Attributes
attr-array-directive-2.d 2 #name: C6X array alignment attributes, directives 2
7 File Attributes
attr-array-directive-3.d 2 #name: C6X array alignment attributes, directives 3
7 File Attributes
attr-array-directive-4.d 2 #name: C6X array alignment attributes, directives 4
7 File Attributes
attr-stack-directive-1.d 2 #name: C6X stack alignment attributes, directives 1
7 File Attributes
attr-stack-directive-2.d 2 #name: C6X stack alignment attributes, directives 2
7 File Attributes
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
aarch64.ld 18 .ARM.attributes 0 : { *(.ARM.atttributes) }
relocs.ld 18 .ARM.attributes 0 : { *(.ARM.atttributes) }
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
attributes.d 2 #ld: -T attributes.ld
  /tools/metalava/src/main/java/com/android/tools/metalava/model/text/
TextBackedAnnotationItem.kt 31 private val attributes: List<AnnotationAttribute>
46 attributes = if (index == -1) {
56 override fun attributes(): List<AnnotationAttribute> = attributes
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
GraphReader.java 30 import org.xml.sax.Attributes;
245 public void startElement(String uri, String localName, String qName, Attributes attr)
278 private void addImportCommand(Attributes attributes) throws SAXException {
279 String packageName = getRequiredAttribute(attributes, "package");
283 private void addLibraryCommand(Attributes attributes) throws SAXException {
284 String libraryName = getRequiredAttribute(attributes, "name");
288 private void addConnectCommand(Attributes attributes) {
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/util/
MetricsXmlParser.java 25 import org.xml.sax.Attributes;
56 * Parses the xml format. Expected tags/attributes are:
81 public void startElement(String uri, String localName, String name, Attributes attributes)
85 String testCount = getMandatoryAttribute(name, "tests", attributes);
87 mMetrics.addRunMetric(TIME_TAG, getMandatoryAttribute(name, TIME_TAG, attributes));
91 String testClassName = getMandatoryAttribute(name, "classname", attributes);
92 String methodName = getMandatoryAttribute(name, "testname", attributes);
96 String metricName = getMandatoryAttribute(name, "name", attributes);
97 String metricValue = getMandatoryAttribute(name, "value", attributes);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ElementImpl.java 47 private List<AttrImpl> attributes = new ArrayList<AttrImpl>(); field in class:ElementImpl
60 for (int i = 0; i < attributes.size(); i++) {
61 AttrImpl attr = attributes.get(i);
71 for (int i = 0; i < attributes.size(); i++) {
72 AttrImpl attr = attributes.get(i);
109 return attributes.get(i);
119 return attributes.get(i);
133 for (Attr attr : attributes) {
142 * Document.getElementById(): "Attributes with the name "ID"
213 return !attributes.isEmpty()
    [all...]
  /external/deqp/modules/egl/
teglChooseConfigTests.cpp 113 ChooseConfigCase (EglTestContext& eglTestCtx, const char* name, const char* description, bool checkOrder, const EGLint* attributes)
118 // Parse attributes
119 while (attributes[0] != EGL_NONE)
121 m_attributes.push_back(std::make_pair((EGLenum)attributes[0], (EGLint)attributes[1]));
122 attributes += 2;
126 ChooseConfigCase (EglTestContext& eglTestCtx, const char* name, const char* description, bool checkOrder, const std::vector<std::pair<EGLenum, EGLint> >& attributes)
129 , m_attributes (attributes)
161 void executeTest (const std::vector<std::pair<EGLenum, EGLint> >& attributes, bool checkOrder)
166 // Build attributes for EG
250 } attributes[] = local
321 std::vector<std::pair<EGLenum, EGLint> > attributes; local
360 std::vector<std::pair<EGLenum, EGLint> > attributes = genRandomAttributes(m_attribSet, numAttribs, rnd); local
417 static const struct AttribSpec attributes[] = local
496 std::vector<std::pair<EGLenum, EGLint> > attributes; local
541 } attributes[] = local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/RenderUtils/
ShaderHelper.java 174 * @param attributes Attributes that need to be bound to the program.
177 public static int createAndLinkProgram(final int vertexShaderHandle, final int fragmentShaderHandle, final String[] attributes) {
187 // Bind attributes
188 if (attributes != null) {
189 final int size = attributes.length;
191 GLES20.glBindAttribLocation(programHandle, i, attributes[i]);
  /external/annotation-tools/asmx/test/conform/org/objectweb/asm/attrs/
StackMapTableAttributeTest.java 59 Attribute[] attributes = new Attribute[] { new ASMStackMapTableAttribute() }; local
64 cr1.accept(cw, attributes, true);
73 cr1.accept(cv1, attributes, true);
74 cr2.accept(cv2, attributes, true);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementProcessor.java 33 import org.xml.sax.Attributes;
155 * @param attributes The specified or defaulted attributes.
158 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
260 * @param attributes The list of attributes.
264 StylesheetHandler handler, String rawName, Attributes attributes,
268 setPropertiesFromAttributes(handler, rawName, attributes, target, true)
    [all...]

Completed in 735 milliseconds

1 2 3 4 5 6 78 91011>>