/frameworks/base/core/java/android/util/jar/ |
D | StrictJarManifest.java | 35 import java.util.jar.Attributes; 51 static final Attributes.Name ATTRIBUTE_NAME_NAME = new Attributes.Name("Name"); 53 private final Attributes mainAttributes; 54 private final HashMap<String, Attributes> entries; 78 entries = new HashMap<String, Attributes>(); in StrictJarManifest() 79 mainAttributes = new Attributes(); in StrictJarManifest() 105 mainAttributes = (Attributes) man.mainAttributes.clone(); in StrictJarManifest() 106 entries = (HashMap<String, Attributes>) ((HashMap<String, Attributes>) man in StrictJarManifest() 136 public Attributes getAttributes(String name) { in getAttributes() 146 public Map<String, Attributes> getEntries() { in getEntries() [all …]
|
D | StrictJarManifestReader.java | 25 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() 66 Attributes entry = entries.get(entryNameValue); in readEntries() 68 entry = new Attributes(12); in readEntries() 131 name = new Attributes.Name(nameString); in readName()
|
D | StrictJarVerifier.java | 39 import java.util.jar.Attributes; 92 private final Hashtable<String, HashMap<String, Attributes>> signatures = 93 new Hashtable<String, HashMap<String, Attributes>>(5); 218 Attributes attributes = manifest.getAttributes(name); in initEntry() 225 … Iterator<Map.Entry<String, HashMap<String, Attributes>>> it = signatures.entrySet().iterator(); in initEntry() 227 Map.Entry<String, HashMap<String, Attributes>> entry = it.next(); in initEntry() 228 HashMap<String, Attributes> hm = entry.getValue(); in initEntry() 390 Attributes attributes = new Attributes(); in verifyCertificate() 391 HashMap<String, Attributes> entries = new HashMap<String, Attributes>(); in verifyCertificate() 450 if (attributes.get(Attributes.Name.SIGNATURE_VERSION) == null) { in verifyCertificate() [all …]
|
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/ |
D | Serializer.cpp | 76 struct Attributes struct 106 struct Attributes struct 119 struct Attributes struct 138 struct Attributes struct 159 struct Attributes struct 180 struct Attributes struct 198 struct Attributes struct 222 struct Attributes struct 302 std::string name = getXmlAttribute(child, Trait::Attributes::referenceName); in getReference() 354 using Attributes = AudioGainTraits::Attributes; in deserialize() typedef [all …]
|
/frameworks/av/services/audiopolicy/engine/config/src/ |
D | EngineConfig.cpp | 165 struct Attributes { struct 176 struct Attributes { struct 185 struct Attributes { struct 198 struct Attributes { struct 210 struct Attributes { struct 224 struct Attributes { struct 237 struct Attributes { struct 421 std::string volumeGroup = getXmlAttribute(child, Attributes::volumeGroup); in deserialize() 423 ALOGE("%s: No attribute %s found", __FUNCTION__, Attributes::volumeGroup); in deserialize() 425 ALOGV("%s: %s = %s", __FUNCTION__, Attributes::volumeGroup, volumeGroup.c_str()); in deserialize() [all …]
|
/frameworks/base/sax/java/android/sax/ |
D | StartElementListener.java | 19 import org.xml.sax.Attributes; 31 void start(Attributes attributes); in start()
|
D | RootElement.java | 20 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()
|
/frameworks/base/sax/tests/saxtests/src/android/sax/ |
D | SafeSaxTest.java | 30 import org.xml.sax.Attributes; 54 public void start(Attributes attributes) { in start() 67 public void start(Attributes attributes) { in start() 240 public void start(Attributes attributes) { in newContentHandler() 250 public void start(Attributes attributes) { in newContentHandler() 260 public void start(Attributes attributes) { in newContentHandler() 298 public void start(Attributes attributes) { in newContentHandler() 307 public void start(Attributes attributes) { in newContentHandler() 316 public void start(Attributes attributes) { in newContentHandler() 334 public void start(Attributes attributes) { in start() [all …]
|
/frameworks/av/media/libmedia/include/media/ |
D | MediaCodecInfo.h | 56 enum Attributes : int32_t { enum 193 Attributes getAttributes() const; 235 Attributes mAttributes; 294 void setAttributes(typename std::underlying_type<MediaCodecInfo::Attributes>::type attributes);
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
D | GraphReader.java | 30 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/av/media/libmedia/ |
D | MediaCodecInfo.cpp | 146 MediaCodecInfo::Attributes MediaCodecInfo::getAttributes() const { in getAttributes() 186 Attributes attributes = static_cast<Attributes>(parcel.readInt32()); in FromParcel() 240 : mAttributes((MediaCodecInfo::Attributes)0), in MediaCodecInfo() 257 typename std::underlying_type<MediaCodecInfo::Attributes>::type attributes) { in setAttributes() 258 mInfo->mAttributes = (MediaCodecInfo::Attributes)attributes; in setAttributes()
|
/frameworks/av/drm/libmediadrm/protos/ |
D | metrics.proto | 28 // Attributes are associated with a recorded value. E.g. A counter may 31 message Attributes { message 50 optional Attributes attributes = 2; 64 optional Attributes attributes = 6;
|
/frameworks/base/core/java/android/content/ |
D | DefaultDataHandler.java | 22 import org.xml.sax.Attributes; 99 private void parseRow(Attributes atts) throws SAXException { in parseRow() 134 Attributes atts) throws SAXException { in startElement()
|
/frameworks/base/core/java/android/text/ |
D | Html.java | 49 import org.xml.sax.Attributes; 784 private void handleStartTag(String tag, Attributes attributes) { in handleStartTag() 967 private static void startBlockElement(Editable text, Attributes attributes, int margin) { in startBlockElement() 1007 private void startLi(Editable text, Attributes attributes) { in startLi() 1019 private void startBlockquote(Editable text, Attributes attributes) { in startBlockquote() 1029 private void startHeading(Editable text, Attributes attributes, int level) { in startHeading() 1087 private void startCssStyle(Editable text, Attributes attributes) { in startCssStyle() 1133 private static void startImg(Editable text, Attributes attributes, Html.ImageGetter img) { in startImg() 1154 private void startFont(Editable text, Attributes attributes) { in startFont() 1183 private static void startA(Editable text, Attributes attributes) { in startA() [all …]
|
/frameworks/layoutlib/bridge/bridge_client/src/com/android/ide/common/resources/deprecated/ |
D | ValueResourceParser.java | 32 import org.xml.sax.Attributes; 108 public void startElement(String uri, String localName, String qName, Attributes attributes) in startElement()
|
/frameworks/base/tools/powermodel/src/com/android/powermodel/ |
D | PowerProfile.java | 29 import org.xml.sax.Attributes; 320 Attributes attr) throws SAXException { in startElement() 437 private void saveNameAttribute(Attributes attr) throws SAXParseException { in saveNameAttribute()
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_front_buffer_auto_refresh.txt | 57 "Surface Attributes", page 43:
|
D | EGL_ANDROID_get_frame_timestamps.txt | 101 "Surface Attributes", page 43:
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | ResourceHelper.java | 40 import org.xml.sax.Attributes; 563 Attributes attributes) { in parseHtml() 611 Attributes attrs = tag.mAttributes; in applyStyles() 904 private Attributes mAttributes;
|
/frameworks/av/media/libstagefright/ |
D | OmxInfoBuilder.cpp | 191 typename std::underlying_type<MediaCodecInfo::Attributes>::type attrs = 0; in buildMediaCodecList()
|
/frameworks/opt/telephony/proto/src/ |
D | carrierId.proto | 49 // Attributes used to match a carrier.
|
/frameworks/compile/mclinker/lib/Script/ |
D | ScriptParser.yy | 164 /* Output Section Attributes */ 384 /* Output Section Attributes */
|
D | ScriptScanner.ll | 153 /* Output Section Attributes */
|
/frameworks/base/core/proto/android/service/ |
D | print.proto | 375 // Attributes of the job
|
/frameworks/av/media/codec2/sfplugin/ |
D | Codec2InfoBuilder.cpp | 638 typename std::underlying_type<MediaCodecInfo::Attributes>::type attrs = 0; in buildMediaCodecList()
|