/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/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/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/turbine/java/com/google/turbine/bytecode/ |
D | LowerAttributes.java | 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() 55 addAllTypeAnnotations(attributes, method.typeAnnotations()); in methodAttributes() [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/u-boot/env/ |
D | attr.c | 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() 88 attributes = strim(attributes); in env_attr_walk() 97 retval = callback(name, attributes, priv); in env_attr_walk() 116 char *attributes; member 119 static int regex_callback(const char *name, const char *attributes, void *priv) in regex_callback() argument 134 if (!attributes) { in regex_callback() [all …]
|
/external/ImageMagick/MagickCore/ |
D | xml-tree.c | 81 **attributes, member 121 ***attributes; member 180 child->attributes=sentinel; in AddChildToXMLTree() 439 static char **DestroyXMLTreeAttributes(char **attributes) in DestroyXMLTreeAttributes() argument 447 if ((attributes == (char **) NULL) || (attributes == sentinel)) in DestroyXMLTreeAttributes() 449 for (i=0; attributes[i] != (char *) NULL; i+=2) in DestroyXMLTreeAttributes() 454 if (attributes[i] != (char *) NULL) in DestroyXMLTreeAttributes() 455 attributes[i]=DestroyString(attributes[i]); in DestroyXMLTreeAttributes() 456 if (attributes[i+1] != (char *) NULL) in DestroyXMLTreeAttributes() 457 attributes[i+1]=DestroyString(attributes[i+1]); in DestroyXMLTreeAttributes() [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/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/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/ |
D | FieldOrMethod.java | 50 protected Attribute[] attributes; // Collection of attributes field in FieldOrMethod 107 attributes = new Attribute[attributes_count]; in FieldOrMethod() 109 attributes[i] = Attribute.readAttribute(file, constant_pool); in FieldOrMethod() 123 final Attribute[] attributes, final ConstantPool constant_pool) { in FieldOrMethod() argument 128 setAttributes(attributes); in FieldOrMethod() 142 file.writeShort(attributes.length); in dump() 143 for (final Attribute attribute : attributes) { in dump() 153 return attributes; in getAttributes() 160 public final void setAttributes( final Attribute[] attributes ) { in setAttributes() argument 161 this.attributes = attributes; in setAttributes() [all …]
|
D | Code.java | 50 private Attribute[] attributes; // or LocalVariable field in Code 89 attributes = new Attribute[attributes_count]; in Code() 91 attributes[i] = Attribute.readAttribute(file, constant_pool); in Code() 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() 153 file.writeShort(attributes.length); in dump() 154 for (final Attribute attribute : attributes) { in dump() 165 return attributes; in getAttributes() 173 for (final Attribute attribute : attributes) { in getLineNumberTable() 186 for (final Attribute attribute : attributes) { in getLocalVariableTable() [all …]
|
/external/ImageMagick/coders/ |
D | msl.c | 138 **attributes, member 236 attributes; in IsPathDirectory() local 240 status=GetPathAttributes(path,&attributes); in IsPathDirectory() 243 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/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/swiftshader/third_party/llvm-7.0/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 | 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 …]
|
/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/v8/src/ |
D | property.cc | 17 const PropertyAttributes& attributes) { in operator <<() argument 19 os << (((attributes & READ_ONLY) == 0) ? "W" : "_"); // writable in operator <<() 20 os << (((attributes & DONT_ENUM) == 0) ? "E" : "_"); // enumerable in operator <<() 21 os << (((attributes & DONT_DELETE) == 0) ? "C" : "_"); // configurable in operator <<() 29 PropertyKind kind, PropertyAttributes attributes, in Descriptor() argument 34 details_(kind, attributes, location, constness, representation, in Descriptor() 48 int field_index, PropertyAttributes attributes, in DataField() argument 50 return DataField(key, field_index, attributes, PropertyConstness::kMutable, in DataField() 55 PropertyAttributes attributes, in DataField() argument 60 PropertyDetails details(kData, attributes, kField, constness, representation, in DataField() [all …]
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | attribute.cpp | 117 TAttributes *attributes = nullptr; in makeAttributes() local 118 attributes = NewPoolObject(attributes); in makeAttributes() 120 attributes->push_back(args); in makeAttributes() 121 return attributes; in makeAttributes() 127 TAttributes *attributes = nullptr; in makeAttributes() local 128 attributes = NewPoolObject(attributes); in makeAttributes() 134 attributes->push_back(args); in makeAttributes() 135 return attributes; in makeAttributes() 149 void TParseContext::handleSelectionAttributes(const TAttributes& attributes, TIntermNode* node) in handleSelectionAttributes() argument 155 for (auto it = attributes.begin(); it != attributes.end(); ++it) { in handleSelectionAttributes() [all …]
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/manifest/ |
D | BroadcastReceiverData.java | 15 private final Map<String, String> attributes; field in BroadcastReceiverData 20 Map<String, String> attributes, MetaData metaData, List<IntentFilterData> intentFilters) { in BroadcastReceiverData() argument 21 super(attributes.get(NAME), metaData); in BroadcastReceiverData() 22 this.attributes = attributes; in BroadcastReceiverData() 30 this.attributes = new HashMap<>(); in BroadcastReceiverData() 43 attributes.put(PERMISSION, permission); in setPermission() 47 return attributes.get(PERMISSION); in getPermission() 65 return attributes; in getAllAttributes() 75 return (attributes.containsKey(EXPORTED) in isExported() 76 ? Boolean.parseBoolean(attributes.get(EXPORTED)) in isExported() [all …]
|
/external/skia/tools/sk_app/mac/ |
D | GLWindowContext_mac.mm | 60 NSOpenGLPixelFormatAttribute attributes[kMaxAttributes]; 62 attributes[numAttributes++] = NSOpenGLPFAAccelerated; 63 attributes[numAttributes++] = NSOpenGLPFAClosestPolicy; 64 attributes[numAttributes++] = NSOpenGLPFADoubleBuffer; 65 attributes[numAttributes++] = NSOpenGLPFAOpenGLProfile; 66 attributes[numAttributes++] = NSOpenGLProfileVersion3_2Core; 67 attributes[numAttributes++] = NSOpenGLPFAColorSize; 68 attributes[numAttributes++] = 24; 69 attributes[numAttributes++] = NSOpenGLPFAAlphaSize; 70 attributes[numAttributes++] = 8; [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
D | CertificationRequestInfo.java | 42 ASN1Set attributes = null; field in CertificationRequestInfo 75 ASN1Set attributes) in CertificationRequestInfo() argument 82 validateAttributes(attributes); in CertificationRequestInfo() 86 this.attributes = attributes; in CertificationRequestInfo() 95 ASN1Set attributes) in CertificationRequestInfo() argument 97 this(X500Name.getInstance(subject.toASN1Primitive()), pkInfo, attributes); in CertificationRequestInfo() 118 attributes = ASN1Set.getInstance(tagobj, false); in CertificationRequestInfo() 121 validateAttributes(attributes); in CertificationRequestInfo() 146 return attributes; in getAttributes() 157 if (attributes != null) in toASN1Primitive() [all …]
|