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

1 2 34 5 6 7 8 91011>>

  /external/tpm2/
NV_UndefineSpace.c 39 if(SET == nvIndex.publicArea.attributes.TPMA_NV_POLICY_DELETE)
45 && nvIndex.publicArea.attributes.TPMA_NV_PLATFORMCREATE == SET)
SequenceUpdate.c 35 if(object->attributes.eventSeq == SET)
51 if(hashObject->attributes.hashSeq == SET)
54 if(hashObject->attributes.firstBlock == CLEAR)
57 hashObject->attributes.firstBlock = SET;
63 hashObject->attributes.ticketSafe = SET;
69 else if(object->attributes.hmacSeq == SET)
SequenceComplete.c 32 if( object->attributes.hashSeq == CLEAR
33 && object->attributes.hmacSeq == CLEAR)
38 if(object->attributes.hashSeq == SET) // sequence object for hash
56 if(hashObject->attributes.firstBlock == CLEAR)
61 hashObject->attributes.ticketSafe = SET;
73 else if(object->attributes.ticketSafe == CLEAR)
107 object->attributes.evict = SET;
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/hp/
MDnsUtils.java 39 Map<String,byte[]> attributes = networkDevice.getAttributes(); local
40 String product = getString(attributes.get(ATTRIBUTE__PRODUCT));
41 String ty = getString(attributes.get(ATTRIBUTE__TY));
42 String usbMfg = getString(attributes.get(ATTRIBUTE__USB_MFG));
43 String mfg = getString(attributes.get(ATTRIBUTE__MFG));
51 Map<String,byte[]> attributes = networkDevice.getAttributes(); local
52 vendor = getString(attributes.get(ATTRIBUTE__MFG));
54 vendor = getString(attributes.get(ATTRIBUTE__USB_MFG));
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
attr-arch-directive-4.d 2 #name: C6X arch attributes, directives 4
7 File Attributes
attr-arch-directive-5.d 2 #name: C6X arch attributes, directives 5
7 File Attributes
attr-arch-opts-none-1.d 2 #name: C6X arch attributes, no options 1
7 File Attributes
attr-arch-opts-none-2.d 2 #name: C6X arch attributes, no options 2
7 File Attributes
  /cts/tests/tests/drm/src/android/drm/cts/
DrmEventTest.java 30 HashMap<String, Object> attributes = new HashMap<String, Object>(3); local
31 attributes.put("Hello World", attributes);
32 attributes.put("Hello", "World");
33 attributes.put("World", "");
38 checkGetAttributeWithEventType(attributes, null, true);
39 checkGetAttributeWithEventType(attributes, "", true);
40 checkGetAttributeWithEventType(attributes, "Hello", true);
41 checkGetAttributeWithEventType(attributes, "World", true);
42 checkGetAttributeWithEventType(attributes, "Hello World", true)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
StdMember.java 37 /** {@code non-null;} list of associated attributes */
38 private final AttributeList attributes; field in class:StdMember
46 * @param attributes {@code non-null;} list of associated attributes
49 AttributeList attributes) {
58 if (attributes == null) {
59 throw new NullPointerException("attributes == null");
65 this.attributes = attributes;
108 return attributes;
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
StdMember.java 37 /** {@code non-null;} list of associated attributes */
38 private final AttributeList attributes; field in class:StdMember
46 * @param attributes {@code non-null;} list of associated attributes
49 AttributeList attributes) {
58 if (attributes == null) {
59 throw new NullPointerException("attributes == null");
65 this.attributes = attributes;
114 return attributes;
    [all...]
  /external/curl/docs/cmdline-opts/
xattr.d 2 Help: Store metadata in extended file attributes
5 metadata in extended file attributes. Currently, the URL is stored in the
8 attributes, a warning is issued.
  /external/tensorflow/tensorflow/core/common_runtime/
renamed_device.cc 37 DeviceAttributes attributes(underlying->attributes());
38 attributes.set_name(name);
39 return new RenamedDevice(underlying, attributes, owns_underlying,
44 const DeviceAttributes& attributes,
46 : Device(underlying->env(), attributes),
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapremovenameditemns04.java 36 * Attempt to remove the xmlns and dmstc attributes of the first element node with the localName
37 * employee. Verify if the 2 attributes were successfully removed.
71 NamedNodeMap attributes; local
79 attributes = element.getAttributes();
80 attributeRemoved = (Attr) attributes.removeNamedItemNS("http://www.w3.org/2000/xmlns/", "xmlns");
81 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "xmlns");
83 attributeRemoved = (Attr) attributes.removeNamedItemNS("http://www.w3.org/2000/xmlns/", "dmstc");
84 attribute = (Attr) attributes.getNamedItemNS("http://www.w3.org/2000/xmlns/", "dmstc");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/descriptors/
ManifestElementDescriptor.java 26 * element name, its possible attributes, its possible child elements but also
40 * @param attributes The list of allowed attributes. Can be null or empty.
48 AttributeDescriptor[] attributes,
51 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
61 * @param attributes The list of allowed attributes. Can be null or empty.
69 AttributeDescriptor[] attributes,
72 super(xml_name, ui_name, tooltip, sdk_url, attributes, children, mandatory);
82 * @param attributes The list of allowed attributes. Can be null or empty
    [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/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorKey.java 29 import org.xml.sax.Attributes;
60 * @param attributes The attributes attached to the element. If
61 * there are no attributes, it shall be an empty
62 * Attributes object.
65 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
73 setPropertiesFromAttributes(handler, rawName, attributes, kd);
83 * @param attributes The list of attributes
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/core/session/
StubSession.groovy 27 Map attributes = [:]
58 return attributes[name]
65 return attributes.keySet()
109 attributes.remove(name)
131 attributes[name] = value
171 "StubSession[sentReplies=$sentReplies sentData=$sentData attributes=$attributes closed=$closed " +
  /cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DexDepsXmlHandler.java 19 import org.xml.sax.Attributes;
52 public void startElement(String uri, String localName, String name, Attributes attributes)
54 super.startElement(uri, localName, name, attributes);
56 mCurrentPackageName = CurrentXmlHandler.getValue(attributes, "name");
59 mCurrentClassName = CurrentXmlHandler.getValue(attributes, "name");
63 mCurrentMethodName = CurrentXmlHandler.getValue(attributes, "name");
64 mCurrentMethodReturnType = CurrentXmlHandler.getValue(attributes, "return");
67 mCurrentParameterTypes.add(CurrentXmlHandler.getValue(attributes, "type"));
  /external/testng/src/main/java/org/testng/reporters/
XMLStringBuffer.java 100 * @param attributes A Properties file representing the attributes (or null)
102 public void push(String tagName, @Nullable String schema, @Nullable Properties attributes) {
103 XMLUtils.xmlOpen(m_buffer, m_currentIndent, tagName + schema, attributes);
104 m_tagStack.push(new Tag(m_currentIndent, tagName, attributes));
124 * @param attributes A Properties file representing the attributes (or null)
126 public void push(String tagName, @Nullable Properties attributes) {
127 push(tagName, "", attributes);
130 public void push(String tagName, String... attributes) {
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
RemoveNamedItemNS.java 38 * element from the list and get its attributes. Try to remove the attribute
81 NamedNodeMap attributes; local
87 attributes = testAddress.getAttributes();
88 removedNode = attributes.removeNamedItemNS("http://www.usa.com",
91 newAttr = (Attr) attributes.getNamedItem("dmstc:domestic");
100 NamedNodeMap attributes; local
105 attributes = testAddress.getAttributes();
110 attributes.removeNamedItemNS(namespaceURI,
130 // NamedNodeMap attributes;
147 // attributes = child2.getAttributes()
    [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...]
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
parsetree.py 211 def __call__(cls, keyword, attributes, **kwargs):
215 attributes, **kwargs)
227 return type.__call__(cls, keyword, attributes, **kwargs)
241 def __init__(self, keyword, attributes, expressions,
250 :param attributes: raw dictionary of attribute key/value pairs
252 :param expressions: a set of identifiers that are legal attributes,
256 attributes, which cannot contain embedded expressions
264 self.attributes = attributes
284 for key in self.attributes
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
AttributeTable.java 14 * This is helper tool to construct {@link Attributes} sets.
18 private Hashtable attributes = new Hashtable(); field in class:AttributeTable
23 attributes = copyTable(attrs);
55 Attributes attrs)
64 Object value = attributes.get(oid);
68 attributes.put(oid, a);
88 attributes.put(oid, v);
101 Object value = attributes.get(oid);
112 * Return all the attributes matching the OBJECT IDENTIFIER oid. The vector will be
113 * empty if there are no attributes of the required type present
    [all...]
  /external/gptfdisk/
attributes.cc 0 // attributes.cc
19 #include "attributes.h"
24 string Attributes::atNames[NUM_ATR];
25 int Attributes::numAttrs = 0;
26 //Attributes::staticInit Attributes::staticInitializer;
29 Attributes::Attributes(void) {
33 attributes = 0;
37 Attributes::Attributes(const uint64_t a)
    [all...]

Completed in 428 milliseconds

1 2 34 5 6 7 8 91011>>