Home
last modified time | relevance | path

Searched refs:attributes (Results 1 – 25 of 2513) sorted by relevance

12345678910>>...101

/external/tpm2/
DNV_DefineSpace.c29 TPMA_NV attributes; in TPM2_NV_DefineSpace() local
48 attributes = in->publicInfo.t.nvPublic.attributes; in TPM2_NV_DefineSpace()
52 if ( (attributes.TPMA_NV_COUNTER == SET || attributes.TPMA_NV_BITS == SET) in TPM2_NV_DefineSpace()
68 if( attributes.TPMA_NV_WRITTEN == SET in TPM2_NV_DefineSpace()
69 || attributes.TPMA_NV_WRITELOCKED == SET in TPM2_NV_DefineSpace()
70 || attributes.TPMA_NV_READLOCKED == SET) in TPM2_NV_DefineSpace()
74 if( attributes.TPMA_NV_OWNERREAD == CLEAR in TPM2_NV_DefineSpace()
75 && attributes.TPMA_NV_PPREAD == CLEAR in TPM2_NV_DefineSpace()
76 && attributes.TPMA_NV_AUTHREAD == CLEAR in TPM2_NV_DefineSpace()
77 && attributes.TPMA_NV_POLICYREAD == CLEAR) in TPM2_NV_DefineSpace()
[all …]
DNV.c852 TPMA_NV attributes; in NvEntityStartup() local
858 attributes = nvIndex.publicArea.attributes; in NvEntityStartup()
860 if(attributes.TPMA_NV_READLOCKED == SET) in NvEntityStartup()
861 attributes.TPMA_NV_READLOCKED = CLEAR; in NvEntityStartup()
862 if( attributes.TPMA_NV_WRITELOCKED == SET in NvEntityStartup()
863 && ( attributes.TPMA_NV_WRITTEN == CLEAR in NvEntityStartup()
864 || attributes.TPMA_NV_WRITEDEFINE == CLEAR in NvEntityStartup()
867 attributes.TPMA_NV_WRITELOCKED = CLEAR; in NvEntityStartup()
869 if(attributes.TPMA_NV_CLEAR_STCLEAR == SET) in NvEntityStartup()
871 attributes.TPMA_NV_WRITTEN = CLEAR; in NvEntityStartup()
[all …]
DEvictControl.c44 if( evictObject->attributes.temporary == SET in TPM2_EvictControl()
45 || evictObject->attributes.stClear == SET in TPM2_EvictControl()
46 || evictObject->attributes.publicOnly == SET in TPM2_EvictControl()
52 if( evictObject->attributes.evict == SET in TPM2_EvictControl()
61 if(evictObject->attributes.evict == CLEAR) in TPM2_EvictControl()
65 if(evictObject->attributes.ppsHierarchy == CLEAR) in TPM2_EvictControl()
77 if(evictObject->attributes.ppsHierarchy == SET) in TPM2_EvictControl()
81 if( evictObject->attributes.evict == CLEAR in TPM2_EvictControl()
96 if(evictObject->attributes.evict == CLEAR) in TPM2_EvictControl()
DObject.c52 if(s_objects[i].object.entity.attributes.evict == SET) in ObjectCleanupEvict()
105 if( object->attributes.hmacSeq == SET in ObjectIsSequence()
106 || object->attributes.hashSeq == SET in ObjectIsSequence()
107 || object->attributes.eventSeq == SET) in ObjectIsSequence()
204 if(object->attributes.spsHierarchy) in ObjectDataGetHierarchy()
208 else if(object->attributes.epsHierarchy) in ObjectDataGetHierarchy()
212 else if(object->attributes.ppsHierarchy) in ObjectDataGetHierarchy()
272 MemorySet(&((*object)->attributes), 0, sizeof(OBJECT_ATTRIBUTES)); in ObjectAllocateSlot()
332 object->attributes.publicOnly = (sensitive == NULL); in ObjectLoad()
340 object->attributes.temporary = SET; in ObjectLoad()
[all …]
/external/deqp/modules/gles3/functional/
Des3fVertexArrayObjectTests.cpp75 vector<Attribute> attributes; member
201 for (int attribNdx = 0; attribNdx < (int)state.attributes.size(); attribNdx++) in logVertexArrayState()
205 …<< "\tGL_VERTEX_ATTRIB_ARRAY_ENABLED : " << (state.attributes[attribNdx].enabled ? "GL_TRUE" : "GL… in logVertexArrayState()
206 << "\tGL_VERTEX_ATTRIB_ARRAY_SIZE : " << state.attributes[attribNdx].size << "\n" in logVertexArrayState()
207 << "\tGL_VERTEX_ATTRIB_ARRAY_STRIDE : " << state.attributes[attribNdx].stride << "\n" in logVertexArrayState()
208 << "\tGL_VERTEX_ATTRIB_ARRAY_TYPE : " << state.attributes[attribNdx].type << "\n" in logVertexArrayState()
209 …<< "\tGL_VERTEX_ATTRIB_ARRAY_NORMALIZED : " << (state.attributes[attribNdx].normalized ? "GL_TRUE"… in logVertexArrayState()
210 …<< "\tGL_VERTEX_ATTRIB_ARRAY_INTEGER : " << (state.attributes[attribNdx].integer ? "GL_TRUE" : "GL… in logVertexArrayState()
211 << "\tGL_VERTEX_ATTRIB_ARRAY_DIVISOR : " << state.attributes[attribNdx].divisor << "\n" in logVertexArrayState()
212 << "\tGL_VERTEX_ATTRIB_ARRAY_POINTER : " << state.attributes[attribNdx].offset << "\n" in logVertexArrayState()
[all …]
/external/proguard/src/proguard/classfile/editor/
DAttributesEditor.java90 targetAttribute.attributes, in findAttribute()
94 targetMember.attributes, in findAttribute()
97 targetClass.attributes, in findAttribute()
113 targetAttribute.attributes, in addAttribute()
117 targetAttribute.attributes = in addAttribute()
119 targetAttribute.attributes, in addAttribute()
130 targetMember.attributes, in addAttribute()
134 targetMember.attributes = in addAttribute()
136 targetMember.attributes, in addAttribute()
147 targetClass.attributes, in addAttribute()
[all …]
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/
DTestAttributeSetTest.java21 private HashMap<String, String> attributes; field in TestAttributeSetTest
26 attributes = new HashMap<String, String>(); in setUp()
35 attributes.put("android:id", "@android:id/text1"); in getSystemAttributeResourceValue_shouldReturnTheResourceValue()
36 …TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null… in getSystemAttributeResourceValue_shouldReturnTheResourceValue()
42 attributes.put("id", "@id/text1"); in getSystemAttributeResourceValue_shouldNotReturnTheResourceValueIfNameSpaceDoesNotMatch()
43 …TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null… in getSystemAttributeResourceValue_shouldNotReturnTheResourceValueIfNameSpaceDoesNotMatch()
49 attributes.put("id", "@null"); in getSystemAttributeResourceValue_shouldReturnDefaultValueForNullResourceId()
50 …TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null… in getSystemAttributeResourceValue_shouldReturnDefaultValueForNullResourceId()
56 attributes.put("android:id", "@+id/text1"); in shouldCopeWithDefiningSystemIds()
58 …TestAttributeSet testAttributeSet = new TestAttributeSet(attributes, resourceExtractor, null, null… in shouldCopeWithDefiningSystemIds()
[all …]
/external/jdiff/src/jdiff/
DAPIHandler.java73 java.lang.String qName, Attributes attributes) { in startElement() argument
78 String apiName = attributes.getValue("name"); in startElement()
79 String version = attributes.getValue("jdversion"); // Not used yet in startElement()
83 String pkgName = attributes.getValue("name"); in startElement()
87 String className = attributes.getValue("name"); in startElement()
88 String parentName = attributes.getValue("extends"); in startElement()
90 if (attributes.getValue("abstract").compareTo("true") == 0) in startElement()
92 XMLToAPI.addClass(className, parentName, isAbstract, getModifiers(attributes)); in startElement()
95 String className = attributes.getValue("name"); in startElement()
96 String parentName = attributes.getValue("extends"); in startElement()
[all …]
/external/doclava/src/com/google/doclava/apicheck/
DXmlApiFile.java72 public void startElement(String uri, String localName, String qName, Attributes attributes) { in startElement() argument
75 new PackageInfo(attributes.getValue("name"), SourcePositionInfo.fromXml(attributes in startElement()
84 SourcePositionInfo position = SourcePositionInfo.fromXml(attributes.getValue("source")); in startElement()
85 String visibility = attributes.getValue("visibility"); in startElement()
90 boolean isStatic = Boolean.valueOf(attributes.getValue("static")); in startElement()
92 boolean isAbstract = Boolean.valueOf(attributes.getValue("abstract")); in startElement()
98 boolean isFinal = Boolean.valueOf(attributes.getValue("final")); in startElement()
100 String name = attributes.getValue("name"); in startElement()
111 mCurrentClass.setDeprecated("deprecated".equals(attributes.getValue("deprecated"))); in startElement()
113 String superclass = attributes.getValue("extends"); in startElement()
[all …]
/external/testng/src/main/java/org/testng/xml/
DTestNGContentHandler.java124 private void xmlSuiteFile(boolean start, Attributes attributes) { in xmlSuiteFile() argument
126 String path = attributes.getValue("path"); in xmlSuiteFile()
139 private void xmlSuite(boolean start, Attributes attributes) { in xmlSuite() argument
142 String name = attributes.getValue("name"); in xmlSuite()
151 String verbose = attributes.getValue("verbose"); in xmlSuite()
155 String jUnit = attributes.getValue("junit"); in xmlSuite()
159 String parallel = attributes.getValue("parallel"); in xmlSuite()
168 String parentModule = attributes.getValue("parent-module"); in xmlSuite()
172 String guiceStage = attributes.getValue("guice-stage"); in xmlSuite()
176 String configFailurePolicy = attributes.getValue("configfailurepolicy"); in xmlSuite()
[all …]
/external/deqp/modules/glshared/
DglsAttributeLocationTests.cpp73 bool hasAttributeAliasing (const vector<Attribute>& attributes, const map<string, deUint32>& bindin… in hasAttributeAliasing() argument
77 for (int attribNdx = 0; attribNdx < (int)attributes.size(); attribNdx++) in hasAttributeAliasing()
79 const deInt32 location = getBoundLocation(bindings, attributes[attribNdx].getName()); in hasAttributeAliasing()
80 const deUint32 size = attributes[attribNdx].getType().getLocationSize(); in hasAttributeAliasing()
111 string generateAttributeDefinitions (const vector<Attribute>& attributes) in generateAttributeDefinitions() argument
115 for (vector<Attribute>::const_iterator iter = attributes.begin(); iter != attributes.end(); ++iter) in generateAttributeDefinitions()
129 string generateConditionUniformDefinitions (const vector<Attribute>& attributes) in generateConditionUniformDefinitions() argument
134 for (vector<Attribute>::const_iterator iter = attributes.begin(); iter != attributes.end(); ++iter) in generateConditionUniformDefinitions()
173 string generateOutputCode (const vector<Attribute>& attributes) in generateOutputCode() argument
177 for (vector<Attribute>::const_iterator iter = attributes.begin(); iter != attributes.end(); ++iter) in generateOutputCode()
[all …]
/external/dbus-binding-generator/chromeos-dbus-bindings/
Dxml_interface_parser.cc99 const string& element_name, const XmlAttributeMap& attributes) { in OnOpenElement() argument
109 GetElementAttribute(attributes, element_path_, kNameAttribute, &name); in OnOpenElement()
115 string interface_name = GetValidatedElementName(attributes, element_path_); in OnOpenElement()
126 Interface::Method(GetValidatedElementName(attributes, element_path_))); in OnOpenElement()
131 Interface::Signal(GetValidatedElementName(attributes, element_path_))); in OnOpenElement()
135 interfaces_.back().properties.push_back(ParseProperty(attributes, in OnOpenElement()
139 AddMethodArgument(attributes); in OnOpenElement()
141 AddSignalArgument(attributes); in OnOpenElement()
147 string name = GetValidatedElementAttribute(attributes, element_path_, in OnOpenElement()
151 GetElementAttribute(attributes, element_path_, kValueAttribute, &value); in OnOpenElement()
[all …]
/external/llvm/test/Bitcode/
Dattributes-3.3.ll4 ; attributes-3.3.ll.bc was generated by passing this file to llvm-as-3.3.
5 ; The test checks that LLVM does not silently misread attributes of
214 ; CHECK: attributes #0 = { noreturn }
215 ; CHECK: attributes #1 = { nounwind }
216 ; CHECK: attributes #2 = { readnone }
217 ; CHECK: attributes #3 = { readonly }
218 ; CHECK: attributes #4 = { noinline }
219 ; CHECK: attributes #5 = { alwaysinline }
220 ; CHECK: attributes #6 = { optsize }
221 ; CHECK: attributes #7 = { ssp }
[all …]
Dattributes.ll290 ; CHECK: attributes #0 = { noreturn }
291 ; CHECK: attributes #1 = { nounwind }
292 ; CHECK: attributes #2 = { readnone }
293 ; CHECK: attributes #3 = { readonly }
294 ; CHECK: attributes #4 = { noinline }
295 ; CHECK: attributes #5 = { alwaysinline }
296 ; CHECK: attributes #6 = { optsize }
297 ; CHECK: attributes #7 = { ssp }
298 ; CHECK: attributes #8 = { sspreq }
299 ; CHECK: attributes #9 = { noredzone }
[all …]
/external/testng/src/main/java/org/testng/reporters/
DXMLStringBuffer.java102 public void push(String tagName, @Nullable String schema, @Nullable Properties attributes) { in push() argument
103 XMLUtils.xmlOpen(m_buffer, m_currentIndent, tagName + schema, attributes); in push()
104 m_tagStack.push(new Tag(m_currentIndent, tagName, attributes)); in push()
126 public void push(String tagName, @Nullable Properties attributes) { in push() argument
127 push(tagName, "", attributes); in push()
130 public void push(String tagName, String... attributes) { in push() argument
131 push(tagName, createProperties(attributes)); in push()
134 private Properties createProperties(String[] attributes) { in createProperties() argument
136 if (attributes == null) { in createProperties()
139 if (attributes.length % 2 != 0) { in createProperties()
[all …]
DXMLUtils.java35 @Nullable Properties attributes) { in xml() argument
37 xmlOpen(result, indent, name, attributes, true /* no newline */); in xml()
41 xmlClose(result, "", name, XMLUtils.extractComment(name, attributes)); in xml()
49 String[] attributes = new String[] { "id", "name", "class" }; in extractComment()
50 for (String a : attributes) { in extractComment()
61 String elementName, Boolean value, Properties attributes) { in xmlOptional() argument
63 xmlRequired(result, sp, elementName, value.toString(), attributes); in xmlOptional()
68 String elementName, @Nullable String value, Properties attributes) { in xmlOptional() argument
70 xmlRequired(result, sp, elementName, value, attributes); in xmlOptional()
75 String elementName, @Nullable String value, @Nullable Properties attributes) { in xmlRequired() argument
[all …]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
DMenuLoader.java55 NamedNodeMap attributes = node.getAttributes(); in processNode() local
57 if (attributes != null) { in processNode()
58 int length = attributes.getLength(); in processNode()
60 Node attr = attributes.item(i); in processNode()
107 Map<String, String> attributes, Menu root) { in inflateMenu() argument
113 if (attributes != null) { in inflateMenu()
114 for (Map.Entry<String, String> entry : attributes.entrySet()) { in inflateMenu()
116 menuNode.attributes.put(entry.getKey(), in inflateMenu()
131 private final TestAttributeSet attributes; field in MenuLoader.MenuNode
135 public MenuNode(String name, Map<String, String> attributes) { in MenuNode() argument
[all …]
/external/deqp/modules/egl/
DteglChooseConfigTests.cpp111 …& eglTestCtx, const char* name, const char* description, bool checkOrder, const EGLint* attributes) in ChooseConfigCase() argument
117 while (attributes[0] != EGL_NONE) in ChooseConfigCase()
119 m_attributes.push_back(std::make_pair((EGLenum)attributes[0], (EGLint)attributes[1])); in ChooseConfigCase()
120 attributes += 2; in ChooseConfigCase()
124 …nst char* description, bool checkOrder, const std::vector<std::pair<EGLenum, EGLint> >& attributes) in ChooseConfigCase() argument
127 , m_attributes (attributes) in ChooseConfigCase()
159 void executeTest (const std::vector<std::pair<EGLenum, EGLint> >& attributes, bool checkOrder) in executeTest() argument
166 …for (vector<pair<EGLenum, EGLint> >::const_iterator i = attributes.begin(); i != attributes.end();… in executeTest()
175 …for (vector<pair<EGLenum, EGLint> >::const_iterator i = attributes.begin(); i != attributes.end();… in executeTest()
192 chooseConfigReference(egl, m_display, referenceConfigs, attributes); in executeTest()
[all …]
/external/svox/pico/tts/
Dsvox_ssml_parser.cpp103 …d SvoxSsmlParser::starttagHandler(void* data, const XML_Char* element, const XML_Char** attributes) in starttagHandler() argument
105 ((SvoxSsmlParser*)data)->startElement(element, attributes); in starttagHandler()
108 void SvoxSsmlParser::startElement(const XML_Char* element, const XML_Char** attributes) in startElement() argument
127 for (int i = 0; attributes[i]; i += 2) in startElement()
129 if (strcmp(attributes[i], "xml:lang") == 0) in startElement()
133 m_docLanguage = new char[strlen(attributes[i+1])+1]; in startElement()
135 strcpy(m_docLanguage, attributes[i+1]); in startElement()
173 for (int i = 0; attributes[i]; i += 2) in startElement()
175 if (strcmp(attributes[i], "alphabet") == 0) in startElement()
177 if (strcmp(attributes[i+1], "xsampa") == 0) in startElement()
[all …]
/external/skia/src/ports/
DSkFontMgr_android_parser.cpp60 void (*start)(FamilyData* data, const char* tag, const char** attributes);
74 const TagHandler* (*tag)(FamilyData* data, const char* tag, const char** attributes);
154 /*start*/[](FamilyData* self, const char* tag, const char** attributes) { in __anonbbaf037e0102()
160 for (size_t i = 0; ATTS_NON_NULL(attributes, i); i += 2) { in __anonbbaf037e0102()
161 const char* name = attributes[i]; in __anonbbaf037e0102()
162 const char* value = attributes[i+1]; in __anonbbaf037e0102()
202 /*start*/[](FamilyData* self, const char* tag, const char** attributes) { in __anonbbaf037e0202()
209 for (size_t i = 0; ATTS_NON_NULL(attributes, i); i += 2) { in __anonbbaf037e0202()
210 const char* name = attributes[i]; in __anonbbaf037e0202()
211 const char* value = attributes[i+1]; in __anonbbaf037e0202()
[all …]
/external/gptfdisk/
Dattributes.cc31 attributes = 0; in Attributes()
39 attributes = a; in Attributes()
76 cout << hex << attributes << dec << ". Set fields are:\n"; in DisplayAttributes()
78 if ((UINT64_C(1) << i) & attributes) { in DisplayAttributes()
96 bitset = (UINT64_C(1) << bitNum) & attributes; in ShowAttributes()
119 if (bitValue & attributes) { // bit is set in ChangeAttributes()
120 attributes &= ~bitValue; // so unset it in ChangeAttributes()
123 attributes |= bitValue; // so set it in ChangeAttributes()
189 case ao_assignall: attributes = attributeBitMask; break; in OperateOnAttributes()
193 case ao_or: attributes |= attributeBitMask; break; in OperateOnAttributes()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
DCertificationRequestInfo.java39 ASN1Set attributes = null; field in CertificationRequestInfo
72 ASN1Set attributes) in CertificationRequestInfo() argument
81 this.attributes = attributes; in CertificationRequestInfo()
90 ASN1Set attributes) in CertificationRequestInfo() argument
99 this.attributes = attributes; in CertificationRequestInfo()
120 attributes = ASN1Set.getInstance(tagobj, false); in CertificationRequestInfo()
146 return attributes; in getAttributes()
157 if (attributes != null) in toASN1Primitive()
159 v.add(new DERTaggedObject(false, 0, attributes)); in toASN1Primitive()
/external/clang/test/SemaObjC/
Dproperty-10.m6 @property(readonly, readwrite) int p0; // expected-error {{property attributes 'readonly' and 'read…
13 @property(assign, copy) id p3_0; // expected-error {{property attributes 'assign' and 'copy' are mu…
14 @property(assign, retain) id p3_1; // expected-error {{property attributes 'assign' and 'retain' ar…
15 @property(assign, strong) id s3_1; // expected-error {{property attributes 'assign' and 'strong' ar…
16 @property(copy, retain) id p3_2; // expected-error {{property attributes 'copy' and 'retain' are mu…
17 @property(copy, strong) id s3_2; // expected-error {{property attributes 'copy' and 'strong' are mu…
18 … // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}}, expected-er…
19 … // expected-error {{property attributes 'assign' and 'copy' are mutually exclusive}}, expected-er…
21 @property(unsafe_unretained, copy) id p4_0; // expected-error {{property attributes 'unsafe_unretai…
22 @property(unsafe_unretained, retain) id p4_1; // expected-error {{property attributes 'unsafe_unret…
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
DAttributeTable.java18 private Hashtable attributes = new Hashtable(); field in AttributeTable
23 attributes = copyTable(attrs); in AttributeTable()
64 Object value = attributes.get(oid); in addAttribute()
68 attributes.put(oid, a); in addAttribute()
88 attributes.put(oid, v); in addAttribute()
101 Object value = attributes.get(oid); in get()
123 Object value = attributes.get(oid); in getAll()
146 for (Enumeration en = attributes.elements(); en.hasMoreElements();) in size()
165 return copyTable(attributes); in toHashtable()
171 Enumeration e = attributes.elements(); in toASN1EncodableVector()
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DXSLTElementProcessor.java158 … StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes) in startElement() argument
264 StylesheetHandler handler, String rawName, Attributes attributes, in setPropertiesFromAttributes() argument
268 setPropertiesFromAttributes(handler, rawName, attributes, target, true); in setPropertiesFromAttributes()
286 StylesheetHandler handler, String rawName, Attributes attributes, in setPropertiesFromAttributes() argument
306 int nAttrs = attributes.getLength(); in setPropertiesFromAttributes()
310 String attrUri = attributes.getURI(i); in setPropertiesFromAttributes()
313 && (attributes.getQName(i).startsWith("xmlns:") || in setPropertiesFromAttributes()
314 attributes.getQName(i).equals("xmlns"))) in setPropertiesFromAttributes()
318 String attrLocalName = attributes.getLocalName(i); in setPropertiesFromAttributes()
327 …handler.error(XSLTErrorResources.ER_ATTR_NOT_ALLOWED, new Object[]{attributes.getQName(i), rawName… in setPropertiesFromAttributes()
[all …]

12345678910>>...101