HomeSort by relevance Sort by last modified time
    Searched defs:attributes (Results 1 - 25 of 2500) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tpm2/
NV_DefineSpace.c 14 // TPM_RC_NV_ATTRIBUTES attributes of the index are not consistent
21 // consistent with 'publicInfo->attributes'.
29 TPMA_NV attributes; local
48 attributes = in->publicInfo.t.nvPublic.attributes;
52 if ( (attributes.TPMA_NV_COUNTER == SET || attributes.TPMA_NV_BITS == SET)
68 if( attributes.TPMA_NV_WRITTEN == SET
69 || attributes.TPMA_NV_WRITELOCKED == SET
70 || attributes.TPMA_NV_READLOCKED == SET
    [all...]
PropertyCap.c 149 TPMA_MEMORY attributes = {0}; local
150 attributes.sharedNV = SET;
151 attributes.objectCopiedToRam = SET;
154 memcpy(value, &attributes, sizeof(UINT32));
AlgorithmCap.c 12 TPMA_ALGORITHM attributes; member in struct:__anon40311
155 s_algorithms[i].attributes;
  /external/ImageMagick/Magick++/demo/
analyze.cpp 28 std::list<std::string> attributes; local
30 attributes.push_back("TopLeftColor");
31 attributes.push_back("TopRightColor");
32 attributes.push_back("BottomLeftColor");
33 attributes.push_back("BottomRightColor");
34 attributes.push_back("filter:brightness:mean");
35 attributes.push_back("filter:brightness:standard-deviation");
36 attributes.push_back("filter:brightness:kurtosis");
37 attributes.push_back("filter:brightness:skewness");
38 attributes.push_back("filter:saturation:mean")
    [all...]
  /external/tensorflow/tensorflow/core/framework/
device_base.cc 22 const DeviceAttributes& DeviceBase::attributes() const { function in class:tensorflow::DeviceBase
23 LOG(FATAL) << "Device does not implement attributes()";
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SimpleAttributeTableGenerator.java 13 private final AttributeTable attributes; field in class:SimpleAttributeTableGenerator
16 AttributeTable attributes)
18 this.attributes = attributes;
23 return attributes;
  /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/testng/src/main/java/org/testng/xml/dom/
OnElement.java 14 String[] attributes(); method in interface:OnElement
OnElementList.java 14 String[] attributes(); method in interface:OnElementList
  /developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 22 * This class includes a small subset of standard GATT attributes for demonstration purposes.
25 private static HashMap<String, String> attributes = new HashMap(); field in class:SampleGattAttributes
31 attributes.put("0000180d-0000-1000-8000-00805f9b34fb", "Heart Rate Service");
32 attributes.put("0000180a-0000-1000-8000-00805f9b34fb", "Device Information Service");
34 attributes.put(HEART_RATE_MEASUREMENT, "Heart Rate Measurement");
35 attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String");
39 String name = attributes.get(uuid);
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 22 * This class includes a small subset of standard GATT attributes for demonstration purposes.
25 private static HashMap<String, String> attributes = new HashMap(); field in class:SampleGattAttributes
31 attributes.put("0000180d-0000-1000-8000-00805f9b34fb", "Heart Rate Service");
32 attributes.put("0000180a-0000-1000-8000-00805f9b34fb", "Device Information Service");
34 attributes.put(HEART_RATE_MEASUREMENT, "Heart Rate Measurement");
35 attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String");
39 String name = attributes.get(uuid);
  /development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/
SampleGattAttributes.java 22 * This class includes a small subset of standard GATT attributes for demonstration purposes.
25 private static HashMap<String, String> attributes = new HashMap(); field in class:SampleGattAttributes
31 attributes.put("0000180d-0000-1000-8000-00805f9b34fb", "Heart Rate Service");
32 attributes.put("0000180a-0000-1000-8000-00805f9b34fb", "Device Information Service");
34 attributes.put(HEART_RATE_MEASUREMENT, "Heart Rate Measurement");
35 attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String");
39 String name = attributes.get(uuid);
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/
MockView.java 57 // inherit any attributes from parent (MockView). So it only needs layout width and height.
58 Map<String, String> attributes = new HashMap<>(); local
59 attributes.put(SdkConstants.ATTR_LAYOUT_WIDTH, SdkConstants.VALUE_MATCH_PARENT);
60 attributes.put(SdkConstants.ATTR_LAYOUT_HEIGHT, SdkConstants.VALUE_MATCH_PARENT);
61 mView = new TextView(context, new BridgeLayoutParamsMapAttributes(attributes));
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/manifest/
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...]
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...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Attributes.java 20 * Attributes ::=
24 public class Attributes
27 private ASN1Set attributes; field in class:Attributes
29 private Attributes(ASN1Set set)
31 attributes = set;
34 public Attributes(ASN1EncodableVector v)
36 attributes = new DLSet(v);
45 * <li> {@link Attributes} object
46 * <li> {@link org.bouncycastle.asn1.ASN1Set#getInstance(java.lang.Object) ASN1Set} input formats with Attributes structure inside
52 public static Attributes getInstance(Object obj
    [all...]
  /external/gptfdisk/
attributes.h 10 #define NUM_ATR 64 /* # of attributes -- 64, since it's a 64-bit field */
15 class Attributes {
20 uint64_t attributes; member in class:Attributes
23 Attributes(void);
24 Attributes(const uint64_t a);
25 ~Attributes(void);
26 void operator=(uint64_t a) {attributes = a;}
28 uint64_t GetAttributes(void) const {return attributes;}
37 }; // class Attributes
39 ostream & operator<<(ostream & os, const Attributes & data)
    [all...]
  /external/testng/src/test/java/test/attributes/
AttributeTest.java 1 package test.attributes;
  /frameworks/compile/libbcc/lib/
CompilerConfig.cpp 37 void AddX86NativeCPUFeatures(std::vector<std::string>* attributes) {
41 attributes->push_back((f.second ? '+' : '-') + f.first().str());
46 attributes->push_back("-avx");
105 std::vector<std::string> attributes; local
113 attributes.push_back("+vfp3");
115 attributes.push_back("+d16");
122 attributes.push_back("+neon");
125 attributes.push_back("-neon");
126 attributes.push_back("-neonfp");
133 attributes.push_back("+hwdiv-arm")
    [all...]
  /frameworks/layoutlib/bridge/tests/src/android/util/
BridgeXmlPullAttributesTest.java 52 BridgeXmlPullAttributes attributes = new BridgeXmlPullAttributes( local
74 assertEquals(123, attributes.getAttributeIntValue(BridgeConstants.NS_RESOURCES,
76 assertEquals(123, attributes.getAttributeIntValue(0, 500));
78 assertEquals(500, attributes.getAttributeIntValue(BridgeConstants.NS_RESOURCES,
80 assertEquals(500, attributes.getAttributeIntValue(2, 500));
83 assertEquals(1, attributes.getAttributeIntValue("http://custom",
85 assertEquals(1, attributes.getAttributeIntValue(1, 500));
86 assertEquals(2, attributes.getAttributeIntValue("http://custom",
88 assertEquals(2, attributes.getAttributeIntValue(1, 500));
92 attributes.getAttributeIntValue("http://custom", "my_custom_attr", 500)
    [all...]
  /frameworks/native/opengl/tests/configdump/
configdump.cpp 31 Attribute attributes[] = { variable
81 for (unsigned attr = 0 ; attr<sizeof(attributes)/sizeof(Attribute) ; attr++) {
83 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
84 printf("\t%-32s: %10d (0x%08x)\n", attributes[attr].name, value, value);
  /external/turbine/java/com/google/turbine/bytecode/
LowerAttributes.java 31 /** Lower information in {@link ClassFile} structures to attributes. */
36 List<Attribute> attributes = new ArrayList<>(); local
38 attributes.add(new InnerClasses(classfile.innerClasses()));
40 addAllAnnotations(attributes, classfile.annotations());
41 addAllTypeAnnotations(attributes, classfile.typeAnnotations());
43 attributes.add(new Signature(classfile.signature()));
45 return attributes;
50 List<Attribute> attributes = new ArrayList<>(); local
51 addAllAnnotations(attributes, method.annotations());
52 addAllTypeAnnotations(attributes, method.typeAnnotations())
71 List<Attribute> attributes = new ArrayList<>(); local
    [all...]
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ServletTestUtils.java 48 * Returns a fake, HttpServletRequest which stores attributes in a HashMap.
56 final Map<String, Object> attributes = Maps.newHashMap();
64 return attributes.get(name);
68 attributes.put(name, value);
100 final Map<String, Object> attributes = Maps.newHashMap(); field in class:FakeHttpSessionHandler
105 attributes.put((String) args[0], args[1]);
108 return attributes.get(args[0]);
116 * Returns a fake, serializable HttpSession which stores attributes in a HashMap.
  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
msisupport.c 29 DWORD attributes; local
38 attributes = GetFileAttributesW(wpath);
39 if (attributes == INVALID_FILE_ATTRIBUTES ||
40 !(attributes & FILE_ATTRIBUTE_DIRECTORY))

Completed in 543 milliseconds

1 2 3 4 5 6 7 8 91011>>