Home
last modified time | relevance | path

Searched refs:Attributes (Results 1 – 25 of 32) sorted by relevance

12

/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
DSerializer.cpp117 const char AudioGainTraits::Attributes::mode[] = "mode";
118 const char AudioGainTraits::Attributes::channelMask[] = "channel_mask";
119 const char AudioGainTraits::Attributes::minValueMB[] = "minValueMB";
120 const char AudioGainTraits::Attributes::maxValueMB[] = "maxValueMB";
121 const char AudioGainTraits::Attributes::defaultValueMB[] = "defaultValueMB";
122 const char AudioGainTraits::Attributes::stepValueMB[] = "stepValueMB";
123 const char AudioGainTraits::Attributes::minRampMs[] = "minRampMs";
124 const char AudioGainTraits::Attributes::maxRampMs[] = "maxRampMs";
132 string mode = getXmlAttribute(root, Attributes::mode); in deserialize()
137 string channelsLiteral = getXmlAttribute(root, Attributes::channelMask); in deserialize()
[all …]
/frameworks/base/core/java/android/util/jar/
DStrictJarManifest.java31 import java.util.jar.Attributes;
47 private final Attributes mainAttributes;
48 private final HashMap<String, Attributes> entries;
72 entries = new HashMap<String, Attributes>(); in StrictJarManifest()
73 mainAttributes = new Attributes(); in StrictJarManifest()
99 mainAttributes = (Attributes) man.mainAttributes.clone(); in StrictJarManifest()
100 entries = (HashMap<String, Attributes>) ((HashMap<String, Attributes>) man in StrictJarManifest()
130 public Attributes getAttributes(String name) { in getAttributes()
140 public Map<String, Attributes> getEntries() { in getEntries()
150 public Attributes getMainAttributes() { in getMainAttributes()
[all …]
DStrictJarManifestReader.java25 import java.util.jar.Attributes;
34 …private final HashMap<String, Attributes.Name> attributeNameCache = new HashMap<String, Attributes
44 private Attributes.Name name;
50 public StrictJarManifestReader(byte[] buf, Attributes main) throws IOException { in StrictJarManifestReader()
58 …public void readEntries(Map<String, Attributes> entries, Map<String, StrictJarManifest.Chunk> chun… in readEntries()
61 if (!Attributes.Name.NAME.equals(name)) { in readEntries()
66 Attributes entry = entries.get(entryNameValue); in readEntries()
68 entry = new Attributes(12); in readEntries()
131 name = new Attributes.Name(nameString); in readName()
DStrictJarVerifier.java37 import java.util.jar.Attributes;
75 private final Hashtable<String, HashMap<String, Attributes>> signatures =
76 new Hashtable<String, HashMap<String, Attributes>>(5);
201 Attributes attributes = manifest.getAttributes(name); in initEntry()
208 … Iterator<Map.Entry<String, HashMap<String, Attributes>>> it = signatures.entrySet().iterator(); in initEntry()
210 Map.Entry<String, HashMap<String, Attributes>> entry = it.next(); in initEntry()
211 HashMap<String, Attributes> hm = entry.getValue(); in initEntry()
367 Attributes attributes = new Attributes(); in verifyCertificate()
368 HashMap<String, Attributes> entries = new HashMap<String, Attributes>(); in verifyCertificate()
416 if (attributes.get(Attributes.Name.SIGNATURE_VERSION) == null) { in verifyCertificate()
[all …]
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
DSerializer.h37 struct Attributes struct
68 struct Attributes struct
90 struct Attributes struct
113 struct Attributes struct
136 struct Attributes struct
161 struct Attributes struct
183 struct Attributes struct
197 struct Attributes struct
/frameworks/base/sax/tests/saxtests/src/android/sax/
DSafeSaxTest.java33 import org.xml.sax.Attributes;
58 public void start(Attributes attributes) { in start()
71 public void start(Attributes attributes) { in start()
245 public void start(Attributes attributes) { in newContentHandler()
255 public void start(Attributes attributes) { in newContentHandler()
265 public void start(Attributes attributes) { in newContentHandler()
303 public void start(Attributes attributes) { in newContentHandler()
312 public void start(Attributes attributes) { in newContentHandler()
321 public void start(Attributes attributes) { in newContentHandler()
339 public void start(Attributes attributes) { in start()
[all …]
/frameworks/base/sax/java/android/sax/
DRootElement.java20 import org.xml.sax.Attributes;
111 Attributes attributes) throws SAXException { in startElement()
140 void startRoot(String uri, String localName, Attributes attributes) in startRoot()
153 void start(Element e, Attributes attributes) { in start()
DStartElementListener.java19 import org.xml.sax.Attributes;
31 void start(Attributes attributes); in start()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DGraphReader.java30 import org.xml.sax.Attributes;
245 public void startElement(String uri, String localName, String qName, Attributes attr) in startElement()
278 private void addImportCommand(Attributes attributes) throws SAXException { in addImportCommand()
283 private void addLibraryCommand(Attributes attributes) throws SAXException { in addLibraryCommand()
288 private void addConnectCommand(Attributes attributes) { in addConnectCommand()
354 private void addVarCommand(Attributes attributes) throws SAXException { in addVarCommand()
371 private void beginFilter(Attributes attributes) throws SAXException { in beginFilter()
381 private void addFilterInput(Attributes attributes) throws SAXException { in addFilterInput()
409 private static Object getAssignmentValue(Attributes attributes) { in getAssignmentValue()
433 private static String getRequiredAttribute(Attributes attributes, String name) in getRequiredAttribute()
/frameworks/base/packages/Osu/src/com/android/hotspot2/omadm/
DOMAParser.java3 import org.xml.sax.Attributes;
38 public void startElement(String uri, String localName, String qName, Attributes attributes) in startElement()
DXMLNode.java3 import org.xml.sax.Attributes;
36 public XMLNode(XMLNode parent, String tag, Attributes attributes) throws SAXException { in XMLNode()
/frameworks/base/wifi/java/android/net/wifi/hotspot2/omadm/
DXMLParser.java19 import org.xml.sax.Attributes;
78 public void startElement(String uri, String localName, String qName, Attributes attributes) in startElement()
/frameworks/base/core/java/android/content/
DDefaultDataHandler.java22 import org.xml.sax.Attributes;
99 private void parseRow(Attributes atts) throws SAXException { in parseRow()
134 Attributes atts) throws SAXException { in startElement()
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
DXMLParser.java5 import org.xml.sax.Attributes;
39 public void startElement(String uri, String localName, String qName, Attributes attributes) in startElement()
/frameworks/base/core/java/android/text/
DHtml.java45 import org.xml.sax.Attributes;
779 private void handleStartTag(String tag, Attributes attributes) { in handleStartTag()
954 private static void startBlockElement(Editable text, Attributes attributes, int margin) { in startBlockElement()
994 private void startLi(Editable text, Attributes attributes) { in startLi()
1006 private void startBlockquote(Editable text, Attributes attributes) { in startBlockquote()
1016 private void startHeading(Editable text, Attributes attributes, int level) { in startHeading()
1071 private void startCssStyle(Editable text, Attributes attributes) { in startCssStyle()
1117 private static void startImg(Editable text, Attributes attributes, Html.ImageGetter img) { in startImg()
1138 private void startFont(Editable text, Attributes attributes) { in startFont()
1167 private static void startA(Editable text, Attributes attributes) { in startA()
[all …]
/frameworks/base/tools/preload2/src/com/android/preload/
DDumpDataIO.java19 import org.xml.sax.Attributes;
94 public void startElement(String uri, String localName, String qName, Attributes attributes) in startElement()
/frameworks/native/opengl/specs/
DEGL_ANDROID_front_buffer_auto_refresh.txt57 "Surface Attributes", page 43:
DEGL_ANDROID_get_frame_timestamps.txt101 "Surface Attributes", page 43:
/frameworks/compile/mclinker/lib/Script/
DScriptParser.yy164 /* Output Section Attributes */
384 /* Output Section Attributes */
DScriptScanner.ll153 /* Output Section Attributes */
/frameworks/base/media/java/android/media/
DMediaScanner.java55 import org.xml.sax.Attributes;
1770 public void start(Attributes attributes) {
/frameworks/opt/setupwizard/tools/docs/
Dandroid-22.txt26836 method public abstract void start(org.xml.sax.Attributes);
43069 method public java.util.jar.Attributes getAttributes() throws java.io.IOException;
43075 method public java.util.jar.Attributes getMainAttributes() throws java.io.IOException;
50285 public class Attributes implements java.lang.Cloneable java.util.Map {
50286 ctor public Attributes();
50287 ctor public Attributes(java.util.jar.Attributes);
50288 ctor public Attributes(int);
50295 method public java.lang.String getValue(java.util.jar.Attributes.Name);
50308 public static class Attributes.Name {
50309 ctor public Attributes.Name(java.lang.String);
[all …]
/frameworks/wilhelm/doc/
DDoxyfile980 # Qt Help Project / Filter Attributes</a>.
/frameworks/base/api/
Dcurrent.txt36706 method public abstract void start(org.xml.sax.Attributes);
56466 method public java.util.jar.Attributes getAttributes() throws java.io.IOException;
56472 method public java.util.jar.Attributes getMainAttributes() throws java.io.IOException;
67308 public class Attributes implements java.lang.Cloneable java.util.Map {
67309 ctor public Attributes();
67310 ctor public Attributes(int);
67311 ctor public Attributes(java.util.jar.Attributes);
67319 method public java.lang.String getValue(java.util.jar.Attributes.Name);
67331 public static class Attributes.Name {
67332 ctor public Attributes.Name(java.lang.String);
[all …]
Dtest-current.txt36903 method public abstract void start(org.xml.sax.Attributes);
56948 method public java.util.jar.Attributes getAttributes() throws java.io.IOException;
56954 method public java.util.jar.Attributes getMainAttributes() throws java.io.IOException;
67790 public class Attributes implements java.lang.Cloneable java.util.Map {
67791 ctor public Attributes();
67792 ctor public Attributes(int);
67793 ctor public Attributes(java.util.jar.Attributes);
67801 method public java.lang.String getValue(java.util.jar.Attributes.Name);
67813 public static class Attributes.Name {
67814 ctor public Attributes.Name(java.lang.String);
[all …]

12