HomeSort by relevance Sort by last modified time
    Searched full:attributes (Results 51 - 75 of 21946) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
CurrentXmlHandler.java 19 import org.xml.sax.Attributes;
61 public void startElement(String uri, String localName, String name, Attributes attributes)
63 super.startElement(uri, localName, name, attributes);
65 mCurrentPackageName = getValue(attributes, "name");
71 if (isEnum(attributes)) {
76 mCurrentClassName = getValue(attributes, "name");
77 mDeprecated = isDeprecated(attributes);
78 String superClass = attributes.getValue("extends");
80 mCurrentClassName, mDeprecated, is(attributes, "abstract"), superClass)
    [all...]
  /external/proguard/src/proguard/classfile/editor/
AttributesEditor.java 27 * This class can add and delete attributes to and from classes, fields,
28 * methods, and code attributes. Attributes to be added must be filled out
30 * attributes of the same type are always replaced.
43 * Creates a new AttributeAdder that will edit attributes in the given
54 * Creates a new AttributeAdder that will edit attributes in the given
66 * Creates a new AttributeAdder that will edit attributes in the given
90 targetAttribute.attributes,
94 targetMember.attributes,
97 targetClass.attributes,
    [all...]
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/manifest/
ServiceData.java 16 private final Map<String, String> attributes; field in class:ServiceData
21 Map<String, String> attributes, MetaData metaData, List<IntentFilterData> intentFilters) {
22 super(attributes.get(NAME), metaData);
23 this.attributes = attributes;
37 attributes.put(PERMISSION, permission);
41 return attributes.get(PERMISSION);
54 * Get the map for all attributes defined for the service.
56 * @return map of attributes names to values from the manifest.
59 return attributes;
    [all...]
BroadcastReceiverData.java 14 private final Map<String, String> attributes; field in class:BroadcastReceiverData
19 Map<String, String> attributes, MetaData metaData, List<IntentFilterData> intentFilters) {
20 super(attributes.get(NAME), metaData);
21 this.attributes = attributes;
29 this.attributes = new HashMap<>();
42 attributes.put(PERMISSION, permission);
46 return attributes.get(PERMISSION);
59 * Get the map for all attributes defined for the broadcast receiver.
61 * @return map of attributes names to values from the manifest
    [all...]
  /external/tensorflow/tensorflow/core/debug/
debug_graph_utils_test.cc 28 std::unordered_map<string, string>* attributes) {
30 debug_op_name, debug_op_name_proper, attributes);
36 std::unordered_map<string, string> attributes; local
38 ParseDebugOpName("DebugIdentity", &debug_op_name_proper, &attributes));
40 ASSERT_EQ(0, attributes.size());
45 std::unordered_map<string, string> attributes; local
48 &attributes);
52 &attributes);
56 &attributes);
62 std::unordered_map<string, string> attributes; local
92 std::unordered_map<string, string> attributes; local
109 std::unordered_map<string, string> attributes; local
131 std::unordered_map<string, string> attributes; local
141 std::unordered_map<string, string> attributes; local
    [all...]
  /external/python/cpython3/Include/
pydtrace.d 15 #pragma D attributes Evolving/Evolving/Common provider python provider
16 #pragma D attributes Evolving/Evolving/Common provider python module
17 #pragma D attributes Evolving/Evolving/Common provider python function
18 #pragma D attributes Evolving/Evolving/Common provider python name
19 #pragma D attributes Evolving/Evolving/Common provider python args
  /external/libxml2/result/
att11.sax2 3 SAX.internalSubset(attributes, , )
4 SAX.elementDecl(attributes, 1, ...)
5 SAX.attributeDecl(attributes, nmtoken, 7, 3, NULL, ...)
6 SAX.attributeDecl(attributes, nmtokens, 8, 3, NULL, ...)
11 SAX.externalSubset(attributes, , )
16 SAX.startElementNs(attributes, NULL, NULL, 0, 2, 0, nmtoken='&ent...', 17, nmtokens='Test...', 25)
17 SAX.endElementNs(attributes, NULL, NULL)
  /external/libxml2/result/noent/
att11.sax2 3 SAX.internalSubset(attributes, , )
4 SAX.elementDecl(attributes, 1, ...)
5 SAX.attributeDecl(attributes, nmtoken, 7, 3, NULL, ...)
6 SAX.attributeDecl(attributes, nmtokens, 8, 3, NULL, ...)
11 SAX.externalSubset(attributes, , )
18 SAX.startElementNs(attributes, NULL, NULL, 0, 2, 0, nmtoken='enti...', 47, nmtokens='Test...', 25)
19 SAX.endElementNs(attributes, NULL, NULL)
  /libcore/luni/src/test/java/libcore/xml/
SaxTest.java 26 import org.xml.sax.Attributes;
41 String qName, Attributes attributes) {
45 assertEquals(1, attributes.getLength());
46 assertEquals("", attributes.getURI(0));
47 assertOneOf("bar", "", attributes.getLocalName(0));
48 assertEquals("bar", attributes.getQName(0));
54 String qName, Attributes attributes) {
58 assertEquals(1, attributes.getLength())
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/internal/jar/
SignatureFileWriter.java 22 import java.util.jar.Attributes;
32 public static void writeMainSection(OutputStream out, Attributes attributes)
37 String signatureVersion = attributes.getValue(Attributes.Name.SIGNATURE_VERSION);
40 "Mandatory " + Attributes.Name.SIGNATURE_VERSION + " attribute missing");
42 ManifestWriter.writeAttribute(out, Attributes.Name.SIGNATURE_VERSION, signatureVersion);
44 if (attributes.size() > 1) {
46 ManifestWriter.getAttributesSortedByName(attributes);
47 namedAttributes.remove(Attributes.Name.SIGNATURE_VERSION.toString())
    [all...]
  /external/testng/src/main/java/org/testng/reporters/
XMLUtils.java 30 * @param attributes tag attributes (or null)
35 @Nullable Properties attributes) {
37 xmlOpen(result, indent, name, attributes, true /* no newline */);
41 xmlClose(result, "", name, XMLUtils.extractComment(name, attributes));
49 String[] attributes = new String[] { "id", "name", "class" };
50 for (String a : attributes) {
61 String elementName, Boolean value, Properties attributes) {
63 xmlRequired(result, sp, elementName, value.toString(), attributes);
68 String elementName, @Nullable String value, Properties attributes) {
    [all...]
  /tools/loganalysis/tests/src/com/android/loganalysis/item/
GenericItemTest.java 33 private static final Set<String> ATTRIBUTES = new HashSet<String>(Arrays.asList(
39 /** Empty item with no attributes set */
41 /** Empty item with no attributes set */
47 /** Item with both attributes set, product of mStringItem and mIntegerItem */
49 /** Item with both attributes set, product of mStringItem and mIntegerItem */
56 mEmptyItem1 = new GenericItem(ATTRIBUTES);
57 mEmptyItem2 = new GenericItem(ATTRIBUTES);
58 mStringItem = new GenericItem(ATTRIBUTES);
60 mIntegerItem = new GenericItem(ATTRIBUTES);
62 mFullItem1 = new GenericItem(ATTRIBUTES);
77 Map<String, Object> attributes; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/jar/
OldAttributesTest.java 20 import java.util.jar.Attributes;
24 private Attributes a;
28 a = new Attributes();
45 Attributes attr = new Attributes();
50 Attributes attr = new Attributes(10);
56 .get(new Attributes.Name("1")));
63 .getValue(new Attributes.Name("1")));
65 .getValue(new Attributes.Name("0")))
    [all...]
  /external/clang/test/CodeGenCXX/
2009-05-04-PureConstNounwind.cpp 17 // CHECK: attributes [[TF]] = { {{.*}} }
18 // CHECK: attributes [[NUW_RN]] = { nounwind readnone{{.*}} }
19 // CHECK: attributes [[NUW_RO]] = { nounwind readonly{{.*}} }
20 // CHECK: attributes [[TF2]] = { {{.*}} }
21 // CHECK: attributes [[NUW_RN_CALL]] = { nounwind readnone }
22 // CHECK: attributes [[NUW_RO_CALL]] = { nounwind readonly }
  /external/jacoco/jacoco-maven-plugin/
.classpath 4 <attributes>
6 </attributes>
9 <attributes>
11 </attributes>
14 <attributes>
17 </attributes>
  /external/jacoco/org.jacoco.agent/
.classpath 4 <attributes>
6 </attributes>
9 <attributes>
11 </attributes>
14 <attributes>
17 </attributes>
  /external/jacoco/org.jacoco.agent.rt/
.classpath 4 <attributes>
6 </attributes>
9 <attributes>
11 </attributes>
14 <attributes>
17 </attributes>
  /external/jacoco/org.jacoco.agent.rt.test/
.classpath 4 <attributes>
6 </attributes>
9 <attributes>
11 </attributes>
14 <attributes>
17 </attributes>
  /external/jacoco/org.jacoco.agent.test/
.classpath 4 <attributes>
6 </attributes>
9 <attributes>
11 </attributes>
14 <attributes>
17 </attributes>
  /external/jacoco/org.jacoco.ant/
.classpath 4 <attributes>
6 </attributes>
9 <attributes>
11 </attributes>
14 <attributes>
17 </attributes>
  /external/jacoco/org.jacoco.ant.test/
.classpath 4 <attributes>
6 </attributes>
9 <attributes>
11 </attributes>
14 <attributes>
17 </attributes>
  /external/jacoco/org.jacoco.cli/
.classpath 4 <attributes>
6 </attributes>
9 <attributes>
11 </attributes>
14 <attributes>
17 </attributes>
  /external/jacoco/org.jacoco.cli.test/
.classpath 4 <attributes>
6 </attributes>
9 <attributes>
11 </attributes>
14 <attributes>
17 </attributes>
  /external/jacoco/org.jacoco.core/
.classpath 4 <attributes>
6 </attributes>
9 <attributes>
11 </attributes>
14 <attributes>
17 </attributes>
  /external/jacoco/org.jacoco.core.test/
.classpath 4 <attributes>
6 </attributes>
9 <attributes>
11 </attributes>
14 <attributes>
17 </attributes>

Completed in 1015 milliseconds

1 23 4 5 6 7 8 91011>>