/external/libxml2/result/ |
att11.rde | 1 0 10 attributes 0 0 2 0 1 attributes 1 0
|
att11.rdr | 1 0 10 attributes 0 0 2 0 1 attributes 1 0
|
att11 | 2 <!DOCTYPE attributes [ 3 <!ELEMENT attributes EMPTY> 4 <!ATTLIST attributes nmtoken NMTOKEN #IMPLIED> 5 <!ATTLIST attributes nmtokens NMTOKENS #IMPLIED> 9 <attributes nmtoken="&ent; &ent; &ent;" nmtokens="Test this normalization"/>
|
att11.sax | 3 SAX.internalSubset(attributes, , ) 4 SAX.elementDecl(attributes, 1, ...) 5 SAX.attributeDecl(attributes, nmtoken, 7, 3, NULL, ...) 6 SAX.attributeDecl(attributes, nmtokens, 8, 3, NULL, ...) 11 SAX.externalSubset(attributes, , ) 16 SAX.startElement(attributes, nmtoken=' &ent; &ent; &ent; ', nmtokens=' Test
18 SAX.endElement(attributes)
|
/external/e2fsprogs/tests/d_xattr_edits/ |
name | 1 edit extended attributes in debugfs
|
/external/e2fsprogs/tests/d_xattr_sorting/ |
name | 1 sort extended attributes in debugfs
|
/external/e2fsprogs/tests/f_special_ea/ |
name | 1 Special files with extended attributes
|
/external/llvm/lib/IR/ |
AttributesCompatFunc.td | 1 include "llvm/IR/Attributes.td"
|
/external/deqp/doc/testspecs/VK/ |
apitests.conf | 0 [attributes]
|
/external/e2fsprogs/tests/r_inline_xattr/ |
name | 1 shrinking filesystem with in-inode extended attributes
|
/frameworks/native/vulkan/doc/implementors_guide/ |
implementors_guide.conf | 0 [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/libxml2/result/noent/ |
att11 | 2 <!DOCTYPE attributes [ 3 <!ELEMENT attributes EMPTY> 4 <!ATTLIST attributes nmtoken NMTOKEN #IMPLIED> 5 <!ATTLIST attributes nmtokens NMTOKENS #IMPLIED> 9 <attributes nmtoken="entityreference entityreference entityreference" nmtokens="Test this normalization"/>
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/ |
attr-arch-opts-none-1.d | 2 #name: C6X arch attributes, no options 1 7 File Attributes
|
attr-arch-opts-none-2.d | 2 #name: C6X arch attributes, no options 2 7 File Attributes
|
/external/libxml2/result/schematron/ |
zvon11_0.err | 1 Pattern: Attributes present
|
zvon11_3.err | 1 Pattern: Attributes present
|
/external/libxml2/test/ |
att11 | 2 <!DOCTYPE attributes [ 3 <!ELEMENT attributes EMPTY> 4 <!ATTLIST attributes 10 <attributes
|
/external/proguard/src/proguard/classfile/attribute/annotation/ |
package.html | 2 This package contains classes to represent the annotation attributes inside
|
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/ |
package.html | 2 This package contains visitors for annotation attributes and their components.
|
/external/proguard/src/proguard/classfile/attribute/ |
package.html | 2 This package contains classes to represent the attributes inside class files.
|
/external/proguard/src/proguard/classfile/attribute/visitor/ |
package.html | 2 This package contains visitors for attributes and their components.
|
/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/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...] |
/packages/apps/Camera2/src/com/android/camera/data/ |
FilmstripItemAttributes.java | 22 * Represents an immutable set of item attributes 25 public enum Attributes { 39 private final EnumSet<Attributes> mAttributes; 44 private FilmstripItemAttributes(EnumSet<Attributes> attributes) { 45 mAttributes = attributes; 49 return mAttributes.contains(Attributes.HAS_DETAILED_CAPTURE_INFO); 54 return mAttributes.contains(Attributes.CAN_SHARE); 59 return mAttributes.contains(Attributes.CAN_EDIT); 64 return mAttributes.contains(Attributes.CAN_DELETE) [all...] |