/external/cldr/common/supplemental/ |
D | attributeValueValidity.xml | 124 <attributeValues attributes='alt' type='choice'>$alt</attributeValues> 125 <attributeValues attributes='_q' type='choice'>$integer</attributeValues> 126 <attributeValues attributes='validSubLocales' type='list'>$locale</attributeValues> 127 <attributeValues dtds='ldml' elements='alias' attributes='path' type='TODO'/> 128 …<attributeValues dtds='ldml' elements='alias' attributes='source' type='choice'>locale</attributeV… 129 …<!-- <attributeValues dtds='ldml' elements='alternate' attributes='iso4217' type='bcp47'>cu</attri… 130 <attributeValues dtds='ldml' elements='appendItem' attributes='request'>$append</attributeValues> 131 <attributeValues dtds='ldml' elements='calendar' attributes='type'>$_bcp47_ca</attributeValues> 132 …<attributeValues dtds='supplementalData' elements='character' attributes='value' type='regex'>.</a… 133 …<attributeValues dtds='ldml' elements='collation' attributes='type'>$_bcp47_collation|$collationPr… [all …]
|
/external/universal-tween-engine/java/applets/src/aurelienribon/tweenengine/applets/ |
D | TimelineApplet.form | 18 <Group type="103" groupAlignment="0" attributes="0"> 19 <Group type="102" alignment="0" attributes="0"> 20 <EmptySpace max="-2" attributes="0"/> 21 <Group type="103" groupAlignment="0" attributes="0"> 22 <Component id="jPanel1" alignment="1" max="32767" attributes="0"/> 23 <Component id="jPanel4" alignment="0" max="32767" attributes="1"/> 24 <Group type="102" alignment="1" attributes="0"> 25 <Component id="canvasWrapper" pref="448" max="32767" attributes="0"/> 26 <EmptySpace max="-2" attributes="0"/> 27 <Component id="jPanel3" min="-2" max="-2" attributes="0"/> [all …]
|
D | TweenApplet.form | 18 <Group type="103" groupAlignment="0" attributes="0"> 19 <Group type="102" alignment="0" attributes="0"> 20 <EmptySpace min="-2" max="-2" attributes="0"/> 21 <Group type="103" groupAlignment="0" attributes="0"> 22 <Component id="jPanel1" alignment="1" max="32767" attributes="0"/> 23 <Group type="102" alignment="1" attributes="0"> 24 <Component id="canvasWrapper" pref="412" max="32767" attributes="0"/> 25 <EmptySpace max="-2" attributes="0"/> 26 <Component id="jPanel3" min="-2" max="-2" attributes="0"/> 29 <EmptySpace min="-2" max="-2" attributes="0"/> [all …]
|
/external/libxml2/test/valid/dtds/ |
D | nitf-2-5.dtd | 48 <!ENTITY % global-attributes ' 51 <!ENTITY % common-attributes ' 52 %global-attributes; 74 %global-attributes; 86 %global-attributes; 91 %global-attributes; 104 %global-attributes; 112 %global-attributes; 118 %global-attributes; 124 %global-attributes; [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/ |
D | Attributes.h | 1 //===-- llvm/Attributes.h - Container for Attributes ------------*- C++ -*-===// 11 // attributes associated with functions and their calls. 25 /// Attributes - A bitset of attributes. 26 typedef unsigned Attributes; typedef 30 /// Function parameters and results can have attributes to indicate how they 32 /// lists the attributes that can be associated with parameters, function 34 /// @brief Function attributes. 36 const Attributes None = 0; ///< No attributes have been set 37 const Attributes ZExt = 1<<0; ///< Zero extended before/after call 38 const Attributes SExt = 1<<1; ///< Sign extended before/after call [all …]
|
/external/tensorflow/tensorflow/core/debug/ |
D | debug_graph_utils_test.cc | 28 std::unordered_map<string, string>* attributes) { in ParseDebugOpName() argument 30 debug_op_name, debug_op_name_proper, attributes); in ParseDebugOpName() 36 std::unordered_map<string, string> attributes; in TEST_F() local 38 ParseDebugOpName("DebugIdentity", &debug_op_name_proper, &attributes)); in TEST_F() 40 ASSERT_EQ(0, attributes.size()); in TEST_F() 45 std::unordered_map<string, string> attributes; in TEST_F() local 48 &attributes); in TEST_F() 52 &attributes); in TEST_F() 56 &attributes); in TEST_F() 62 std::unordered_map<string, string> attributes; in TEST_F() local [all …]
|
/external/proguard/src/proguard/classfile/editor/ |
D | AttributesEditor.java | 27 * This class can add and delete attributes to and from classes, fields, 28 * methods, and code attributes. Attributes to be added must be filled out 30 * attributes of the same type are always replaced. 43 * Creates a new AttributeAdder that will edit attributes in the given 54 * Creates a new AttributeAdder that will edit attributes in the given 66 * Creates a new AttributeAdder that will edit attributes in the given 90 targetAttribute.attributes, in findAttribute() 94 targetMember.attributes, in findAttribute() 97 targetClass.attributes, in findAttribute() 113 targetAttribute.attributes, in addAttribute() [all …]
|
/external/gptfdisk/ |
D | attributes.cc | 1 // 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) { in Attributes() function in Attributes 33 attributes = 0; in Attributes() 37 Attributes::Attributes(const uint64_t a) { in Attributes() function in Attributes 41 attributes = a; in Attributes() 45 Attributes::~Attributes(void) { in ~Attributes() [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/testng/src/main/java/org/testng/xml/ |
D | TestNGContentHandler.java | 11 import org.xml.sax.Attributes; 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() [all …]
|
/external/turbine/java/com/google/turbine/bytecode/ |
D | LowerAttributes.java | 31 /** Lower information in {@link ClassFile} structures to attributes. */ 36 List<Attribute> attributes = new ArrayList<>(); in classAttributes() local 38 attributes.add(new InnerClasses(classfile.innerClasses())); in classAttributes() 40 addAllAnnotations(attributes, classfile.annotations()); in classAttributes() 41 addAllTypeAnnotations(attributes, classfile.typeAnnotations()); in classAttributes() 43 attributes.add(new Signature(classfile.signature())); in classAttributes() 46 attributes.add(new Attribute.Module(classfile.module())); in classAttributes() 48 return attributes; in classAttributes() 53 List<Attribute> attributes = new ArrayList<>(); in methodAttributes() local 54 addAllAnnotations(attributes, method.annotations()); in methodAttributes() [all …]
|
/external/doclava/src/com/google/doclava/apicheck/ |
D | XmlApiFile.java | 30 import org.xml.sax.Attributes; 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() [all …]
|
/external/u-boot/env/ |
D | attr.c | 24 * attributes = [^,:\s]* 25 * entry = name[:attributes] 29 int (*callback)(const char *name, const char *attributes, void *priv), in env_attr_walk() argument 33 char *name, *attributes; in env_attr_walk() local 82 attributes = strchr(entry_cpy, ENV_ATTR_SEP); in env_attr_walk() 84 if (attributes != NULL) { in env_attr_walk() 86 *attributes++ = '\0'; in env_attr_walk() 87 /* remove white-space from attributes */ in env_attr_walk() 88 attributes = strim(attributes); in env_attr_walk() 97 retval = callback(name, attributes, priv); in env_attr_walk() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Bitcode/ |
D | attributes.ll | 354 ; CHECK: attributes #0 = { noreturn } 355 ; CHECK: attributes #1 = { nounwind } 356 ; CHECK: attributes #2 = { readnone } 357 ; CHECK: attributes #3 = { readonly } 358 ; CHECK: attributes #4 = { noinline } 359 ; CHECK: attributes #5 = { alwaysinline } 360 ; CHECK: attributes #6 = { optsize } 361 ; CHECK: attributes #7 = { ssp } 362 ; CHECK: attributes #8 = { sspreq } 363 ; CHECK: attributes #9 = { noredzone } [all …]
|
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 …]
|
/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 | 337 ; CHECK: attributes #0 = { noreturn } 338 ; CHECK: attributes #1 = { nounwind } 339 ; CHECK: attributes #2 = { readnone } 340 ; CHECK: attributes #3 = { readonly } 341 ; CHECK: attributes #4 = { noinline } 342 ; CHECK: attributes #5 = { alwaysinline } 343 ; CHECK: attributes #6 = { optsize } 344 ; CHECK: attributes #7 = { ssp } 345 ; CHECK: attributes #8 = { sspreq } 346 ; CHECK: attributes #9 = { noredzone } [all …]
|
/external/testng/src/main/java/org/testng/reporters/ |
D | XMLUtils.java | 30 * @param attributes tag attributes (or null) 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() [all …]
|
D | 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) { 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() 124 * @param attributes A Properties file representing the attributes (or null) 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 [all …]
|
/external/jdiff/src/jdiff/ |
D | APIHandler.java | 7 import org.xml.sax.Attributes; 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() [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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
D | CertificationRequestInfo.java | 25 * attributes [0] Attributes{{ CRIAttributes }} 28 * Attributes { ATTRIBUTE:IOSet } ::= SET OF Attribute{{ IOSet }} 42 ASN1Set attributes = null; field in CertificationRequestInfo 62 …* Note: Early on a lot of CAs would only accept messages with attributes missing. As the ASN.1 def… 63 …* the attributes field is not optional so should always at least contain an empty set. If a fully … 70 * @param attributes any attributes to be associated with the request. 75 ASN1Set attributes) in CertificationRequestInfo() argument 82 validateAttributes(attributes); in CertificationRequestInfo() 86 this.attributes = attributes; in CertificationRequestInfo() 95 ASN1Set attributes) in CertificationRequestInfo() argument [all …]
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/ |
D | Code.java | 34 * This attribute has attributes itself, namely <em>LineNumberTable</em> which 50 private Attribute[] attributes; // or LocalVariable field in Code 85 /* Read all attributes, currently `LineNumberTable' and in Code() 89 attributes = new Attribute[attributes_count]; in Code() 91 attributes[i] = Attribute.readAttribute(file, constant_pool); in Code() 94 * is incorrect, because it didn't take the internal attributes in Code() 108 * @param attributes Attributes of code: LineNumber or LocalVariable 112 …final CodeException[] exception_table, final Attribute[] attributes, final ConstantPool constant_p… in Code() argument 118 this.attributes = attributes != null ? attributes : new Attribute[0]; in Code() 126 * fields, attributes, etc. spawns a tree of objects. [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/ |
D | Attributes.java | 21 * Attributes ::= 25 public class Attributes class 28 private ASN1Set attributes; field in Attributes 30 private Attributes(ASN1Set set) in Attributes() method in Attributes 32 attributes = set; in Attributes() 35 public Attributes(ASN1EncodableVector v) in Attributes() method in Attributes 37 attributes = new DLSet(v); in Attributes() 46 * <li> {@link Attributes} object 47 ….asn1.ASN1Set#getInstance(java.lang.Object) ASN1Set} input formats with Attributes structure inside 53 public static Attributes getInstance(Object obj) in getInstance() [all …]
|
/external/clang/test/Index/ |
D | attributes-cuda.cu | 19 // CHECK: attributes-cuda.cu:5:30: FunctionDecl=f_device:5:30 20 // CHECK-NEXT: attributes-cuda.cu:5:16: attribute(device) 21 // CHECK: attributes-cuda.cu:6:30: FunctionDecl=f_global:6:30 22 // CHECK-NEXT: attributes-cuda.cu:6:16: attribute(global) 23 // CHECK: attributes-cuda.cu:7:32: VarDecl=g_constant:7:32 (Definition) 24 // CHECK-NEXT: attributes-cuda.cu:7:16: attribute(constant) 25 // CHECK: attributes-cuda.cu:8:32: VarDecl=g_shared:8:32 (Definition) 26 // CHECK-NEXT: attributes-cuda.cu:8:16: attribute(shared) 27 // CHECK: attributes-cuda.cu:9:28: FunctionDecl=f_host:9:28 28 // CHECK-NEXT: attributes-cuda.cu:9:16: attribute(host) [all …]
|