/external/tpm2/ |
D | NV_DefineSpace.c | 29 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 …]
|
D | EvictControl.c | 44 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()
|
/external/proguard/src/proguard/classfile/editor/ |
D | AttributesEditor.java | 90 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/deqp/modules/gles3/functional/ |
D | es3fVertexArrayObjectTests.cpp | 75 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/libgdx/gdx/src/com/badlogic/gdx/graphics/ |
D | VertexAttributes.java | 45 private final VertexAttribute[] attributes; field in VertexAttributes 56 public VertexAttributes (VertexAttribute... attributes) { in VertexAttributes() argument 57 if (attributes.length == 0) throw new IllegalArgumentException("attributes must be >= 1"); in VertexAttributes() 59 VertexAttribute[] list = new VertexAttribute[attributes.length]; in VertexAttributes() 60 for (int i = 0; i < attributes.length; i++) in VertexAttributes() 61 list[i] = attributes[i]; in VertexAttributes() 63 this.attributes = list; in VertexAttributes() 92 for (int i = 0; i < attributes.length; i++) { in calculateOffsets() 93 VertexAttribute attribute = attributes[i]; in calculateOffsets() 106 return attributes.length; in size() [all …]
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/ |
D | Attributes.java | 26 protected final Array<Attribute> attributes = new Array<Attribute>(); field in Attributes 33 attributes.sort(this); in sort() 46 if (has(type)) for (int i = 0; i < attributes.size; i++) in get() 47 if (attributes.get(i).type == type) return attributes.get(i); in get() 60 for (int i = 0; i < attributes.size; i++) in get() 61 if ((attributes.get(i).type & type) != 0) out.add(attributes.get(i)); in get() 68 attributes.clear(); in clear() 73 return attributes.size; in size() 89 attributes.add(attribute); in set() 92 attributes.set(idx, attribute); in set() [all …]
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/ |
D | TestAttributeSetTest.java | 21 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/ |
D | APIHandler.java | 73 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/ |
D | XmlApiFile.java | 72 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/ |
D | TestNGContentHandler.java | 124 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/ImageMagick/Magick++/demo/ |
D | analyze.cpp | 28 std::list<std::string> attributes; in main() local 30 attributes.push_back("TopLeftColor"); in main() 31 attributes.push_back("TopRightColor"); in main() 32 attributes.push_back("BottomLeftColor"); in main() 33 attributes.push_back("BottomRightColor"); in main() 34 attributes.push_back("filter:brightness:mean"); in main() 35 attributes.push_back("filter:brightness:standard-deviation"); in main() 36 attributes.push_back("filter:brightness:kurtosis"); in main() 37 attributes.push_back("filter:brightness:skewness"); in main() 38 attributes.push_back("filter:saturation:mean"); in main() [all …]
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/ |
D | ModelBuilder.java | 51 private MeshBuilder getBuilder (final VertexAttributes attributes) { in getBuilder() argument 53 if (mb.getAttributes().equals(attributes) && mb.lastIndex() < Short.MAX_VALUE / 2) return mb; in getBuilder() 55 result.begin(attributes); in getBuilder() 166 …public MeshPartBuilder part (final String id, int primitiveType, final VertexAttributes attributes… in part() argument 167 final MeshBuilder builder = getBuilder(attributes); in part() 179 …public MeshPartBuilder part (final String id, int primitiveType, final long attributes, final Mate… in part() argument 180 return part(id, primitiveType, MeshBuilder.createAttributes(attributes), material); in part() 187 …reateBox (float width, float height, float depth, final Material material, final long attributes) { in createBox() argument 188 return createBox(width, height, depth, GL20.GL_TRIANGLES, material, attributes); in createBox() 196 final long attributes) { in createBox() argument [all …]
|
/external/ImageMagick/MagickCore/ |
D | xml-tree.c | 80 **attributes, member 120 ***attributes; member 179 child->attributes=sentinel; in AddChildToXMLTree() 438 static char **DestroyXMLTreeAttributes(char **attributes) in DestroyXMLTreeAttributes() argument 446 if ((attributes == (char **) NULL) || (attributes == sentinel)) in DestroyXMLTreeAttributes() 448 for (i=0; attributes[i] != (char *) NULL; i+=2) in DestroyXMLTreeAttributes() 453 if (attributes[i] != (char *) NULL) in DestroyXMLTreeAttributes() 454 attributes[i]=DestroyString(attributes[i]); in DestroyXMLTreeAttributes() 455 if (attributes[i+1] != (char *) NULL) in DestroyXMLTreeAttributes() 456 attributes[i+1]=DestroyString(attributes[i+1]); in DestroyXMLTreeAttributes() [all …]
|
/external/deqp/modules/glshared/ |
D | glsAttributeLocationTests.cpp | 73 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/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/ |
D | VertexArray.java | 38 final VertexAttributes attributes; field in VertexArray 47 public VertexArray (int numVertices, VertexAttribute... attributes) { in VertexArray() argument 48 this(numVertices, new VertexAttributes(attributes)); in VertexArray() 55 public VertexArray (int numVertices, VertexAttributes attributes) { in VertexArray() argument 56 this.attributes = attributes; in VertexArray() 57 byteBuffer = BufferUtils.newUnsafeByteBuffer(this.attributes.vertexSize * numVertices); in VertexArray() 75 return buffer.limit() * 4 / attributes.vertexSize; in getNumVertices() 79 return byteBuffer.capacity() / attributes.vertexSize; in getNumMaxVertices() 104 final int numAttributes = attributes.size(); in bind() 108 final VertexAttribute attribute = attributes.get(i); in bind() [all …]
|
D | VertexBufferObject.java | 54 private VertexAttributes attributes; field in VertexBufferObject 68 public VertexBufferObject (boolean isStatic, int numVertices, VertexAttribute... attributes) { in VertexBufferObject() argument 69 this(isStatic, numVertices, new VertexAttributes(attributes)); in VertexBufferObject() 77 public VertexBufferObject (boolean isStatic, int numVertices, VertexAttributes attributes) { in VertexBufferObject() argument 80 ByteBuffer data = BufferUtils.newUnsafeByteBuffer(attributes.vertexSize * numVertices); in VertexBufferObject() 82 setBuffer(data, true, attributes); in VertexBufferObject() 86 … VertexBufferObject (int usage, ByteBuffer data, boolean ownsBuffer, VertexAttributes attributes) { in VertexBufferObject() argument 89 setBuffer(data, ownsBuffer, attributes); in VertexBufferObject() 95 return attributes; in getAttributes() 100 return buffer.limit() * 4 / attributes.vertexSize; in getNumVertices() [all …]
|
/external/llvm/test/Bitcode/ |
D | attributes-3.3.ll | 4 ; 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 …]
|
D | attributes.ll | 290 ; 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/dbus-binding-generator/chromeos-dbus-bindings/ |
D | xml_interface_parser.cc | 99 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/testng/src/main/java/org/testng/reporters/ |
D | XMLStringBuffer.java | 102 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 …]
|
D | XMLUtils.java | 35 @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/ImageMagick/coders/ |
D | msl.c | 139 **attributes, member 237 attributes; in IsPathDirectory() local 241 status=GetPathAttributes(path,&attributes); in IsPathDirectory() 244 if (S_ISDIR(attributes.st_mode) == 0) in IsPathDirectory() 563 msl_info->attributes=(Image **) ResizeQuantumMemory(msl_info->attributes, in MSLPushImage() 564 (n+1),sizeof(*msl_info->attributes)); in MSLPushImage() 569 (msl_info->attributes == (Image **) NULL) || in MSLPushImage() 576 msl_info->attributes[n]=AcquireImage(msl_info->image_info[n], in MSLPushImage() 579 msl_info->attributes[n]=CloneImage(image,0,0,MagickTrue, in MSLPushImage() 583 (msl_info->attributes[n] == (Image *) NULL)) in MSLPushImage() [all …]
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/graphics/glutils/ |
D | VertexBufferObject.java | 52 final VertexAttributes attributes; field in VertexBufferObject 65 public VertexBufferObject (boolean isStatic, int numVertices, VertexAttribute... attributes) { in VertexBufferObject() argument 66 this(isStatic, numVertices, new VertexAttributes(attributes)); in VertexBufferObject() 74 public VertexBufferObject (boolean isStatic, int numVertices, VertexAttributes attributes) { in VertexBufferObject() argument 76 this.attributes = attributes; in VertexBufferObject() 78 buffer = BufferUtils.newFloatBuffer(this.attributes.vertexSize / 4 * numVertices); in VertexBufferObject() 86 return attributes; in getAttributes() 91 return buffer.limit() / (attributes.vertexSize / 4); in getNumVertices() 96 return buffer.capacity() / (attributes.vertexSize / 4); in getNumMaxVertices() 152 final int numAttributes = attributes.size(); in bind() [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/ |
D | MenuLoader.java | 55 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/ |
D | teglChooseConfigTests.cpp | 111 …& 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 …]
|