Searched refs:Attributes (Results 1 - 25 of 140) sorted by relevance

123456

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttributes.java20 * Attributes ::=
24 public class Attributes class in inherits:ASN1Object
29 private Attributes(ASN1Set set) method in class:Attributes
34 public Attributes(ASN1EncodableVector v) method in class:Attributes
45 * <li> {@link Attributes} object
46 * <li> {@link org.bouncycastle.asn1.ASN1Set#getInstance(java.lang.Object) ASN1Set} input formats with Attributes structure inside
52 public static Attributes getInstance(Object obj)
54 if (obj instanceof Attributes)
56 return (Attributes)obj;
60 return new Attributes(ASN1Se
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorUnknown.java23 import org.xml.sax.Attributes;
H A DProcessorDecimalFormat.java24 import org.xml.sax.Attributes;
53 * Attributes object.
58 * @see org.xml.sax.Attributes
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
H A DProcessorAttributeSet.java28 import org.xml.sax.Attributes;
53 * Attributes object.
58 * @see org.xml.sax.Attributes
61 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
H A DProcessorExsltFuncResult.java29 import org.xml.sax.Attributes;
46 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
H A DProcessorNamespaceAlias.java25 import org.xml.sax.Attributes;
59 * Attributes object.
62 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
H A DProcessorPreserveSpace.java29 import org.xml.sax.Attributes;
56 * Attributes object.
60 Attributes attributes)
H A DProcessorStripSpace.java29 import org.xml.sax.Attributes;
56 * Attributes object.
59 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
H A DProcessorKey.java29 import org.xml.sax.Attributes;
62 * Attributes object.
65 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
87 StylesheetHandler handler, String rawName, Attributes attributes,
H A DProcessorStylesheetElement.java30 import org.xml.sax.Attributes;
57 * Attributes object.
60 StylesheetHandler handler, String uri, String localName, String rawName, Attributes attributes)
/external/llvm/bindings/python/llvm/
H A Denumerations.py22 'Attributes',
33 Attributes = [ variable
/external/gptfdisk/
H A Dattributes.h15 class Attributes { class
23 Attributes(void);
24 Attributes(const uint64_t a);
25 ~Attributes(void);
37 }; // class Attributes
39 ostream & operator<<(ostream & os, const Attributes & data);
H A Dattributes.cc22 string Attributes::atNames[NUM_ATR];
23 int Attributes::numAttrs = 0;
24 //Attributes::staticInit Attributes::staticInitializer;
27 Attributes::Attributes(void) { function in class:Attributes
35 Attributes::Attributes(const uint64_t a) { function in class:Attributes
43 Attributes::~Attributes(voi
[all...]
H A Dgptpart.h52 Attributes attributes;
67 Attributes GetAttributes(void) {return attributes;}
/external/clang/include/clang/Basic/
H A DBuiltins.h53 const char *Name, *Type, *Attributes, *HeaderName; member in struct:clang::Builtin::Info
59 !strcmp(Attributes, RHS.Attributes);
97 return strchr(GetRecord(ID).Attributes, 'c') != nullptr;
102 return strchr(GetRecord(ID).Attributes, 'n') != nullptr;
107 return strchr(GetRecord(ID).Attributes, 'r') != nullptr;
112 return strchr(GetRecord(ID).Attributes, 'j') != nullptr;
118 return strchr(GetRecord(ID).Attributes, 'u') != nullptr;
124 return strchr(GetRecord(ID).Attributes, 'F') != nullptr;
131 return strchr(GetRecord(ID).Attributes, '
[all...]
/external/jetty/src/java/org/eclipse/jetty/server/handler/jmx/
H A DContextHandlerMBean.java26 import org.eclipse.jetty.util.Attributes;
38 Attributes attrs = ((ContextHandler)_managed).getAttributes();
51 Attributes attrs = ((ContextHandler)_managed).getAttributes();
57 Attributes attrs = ((ContextHandler)_managed).getAttributes();
63 Attributes attrs = ((ContextHandler)_managed).getAttributes();
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializerTrace.java23 import org.xml.sax.Attributes;
123 public void fireGenerateEvent(int eventType, String name, Attributes atts);
/external/jetty/src/java/org/eclipse/jetty/util/
H A DAttributes.java24 /** Attributes.
29 public interface Attributes interface
H A DAttributesMap.java34 public class AttributesMap implements Attributes
58 * @see org.eclipse.jetty.util.Attributes#removeAttribute(java.lang.String)
67 * @see org.eclipse.jetty.util.Attributes#setAttribute(java.lang.String, java.lang.Object)
79 * @see org.eclipse.jetty.util.Attributes#getAttribute(java.lang.String)
88 * @see org.eclipse.jetty.util.Attributes#getAttributeNames()
97 * @see org.eclipse.jetty.util.Attributes#getAttributeNames()
112 * @see org.eclipse.jetty.util.Attributes#getAttributeNames()
114 public static Enumeration<String> getAttributeNamesCopy(Attributes attrs)
126 * @see org.eclipse.jetty.util.Attributes#clear()
153 public void addAll(Attributes attribute
[all...]
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp148 unsigned Attributes = ODS.getPropertyAttributes(); local
151 Attributes |= deduceWeakPropertyFromType(*this, T);
153 bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) ||
155 !(Attributes & ObjCDeclSpec::DQ_PR_readonly));
158 bool isAssign = ((Attributes & ObjCDeclSpec::DQ_PR_assign) ||
160 !(Attributes & ObjCDeclSpec::DQ_PR_retain) &&
161 !(Attributes & ObjCDeclSpec::DQ_PR_strong) &&
162 !(Attributes & ObjCDeclSpec::DQ_PR_copy) &&
163 !(Attributes & ObjCDeclSpec::DQ_PR_unsafe_unretained) &&
164 !(Attributes
245 makePropertyAttributesAsWritten(unsigned Attributes) argument
315 HandlePropertyInClassExtension(Scope *S, SourceLocation AtLoc, SourceLocation LParenLoc, FieldDeclarator &FD, Selector GetterSel, Selector SetterSel, const bool isAssign, const bool isReadWrite, const unsigned Attributes, const unsigned AttributesAsWritten, bool *isOverridingProperty, TypeSourceInfo *T, tok::ObjCKeywordKind MethodImplKind) argument
523 CreatePropertyDecl(Scope *S, ObjCContainerDecl *CDecl, SourceLocation AtLoc, SourceLocation LParenLoc, FieldDeclarator &FD, Selector GetterSel, Selector SetterSel, const bool isAssign, const bool isReadWrite, const unsigned Attributes, const unsigned AttributesAsWritten, TypeSourceInfo *TInfo, tok::ObjCKeywordKind MethodImplKind, DeclContext *lexicalDC) argument
1767 unsigned Attributes = Property->getPropertyAttributes(); local
2116 CheckObjCPropertyAttributes(Decl *PDecl, SourceLocation Loc, unsigned &Attributes, bool propertyInPrimaryClass) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
H A DClassCache.java11 import java.util.jar.Attributes;
18 private static final Attributes.Name VERSION_ATTRIBUTE = new Attributes.Name("version");
31 Attributes attributes = manifest.getEntries().get("robolectric");
51 Attributes attributes = new Attributes();
/external/jmonkeyengine/engine/src/core/com/jme3/util/xml/
H A DSAXUtil.java37 import org.xml.sax.Attributes;
126 public static Vector3f parseVector3(Attributes attribs) throws SAXException{
133 public static ColorRGBA parseColor(Attributes attribs) throws SAXException{
/external/llvm/unittests/IR/
H A DAttributesTest.cpp1 //===- llvm/unittest/IR/AttributesTest.cpp - Attributes unit tests --------===//
10 #include "llvm/IR/Attributes.h"
17 TEST(Attributes, Uniquing) {
34 TEST(Attributes, Ordering) {
/external/clang/lib/Basic/
H A DBuiltins.cpp52 strchr(BuiltinInfo.Attributes, 'f');
87 if (!strchr(BuiltinInfo[i].Attributes, 'f'))
92 if (!strchr(TSRecords[i].Attributes, 'f'))
108 const char *Like = ::strpbrk(GetRecord(ID).Attributes, Fmt);
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAbbreviationDeclaration.cpp102 const DWARFAttribute::collection& attributes = abbr_decl.Attributes();
152 const DWARFAttribute::collection& attributes = abbr_decl.Attributes();
193 && Attributes() == rhs.Attributes();

Completed in 6134 milliseconds

123456