HomeSort by relevance Sort by last modified time
    Searched defs:Attributes (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/chromium_org/ppapi/shared_impl/
media_stream_audio_track_shared.h 15 struct Attributes {
16 Attributes() : buffers(0), duration(0) {}
21 static bool VerifyAttributes(const Attributes& attributes);
media_stream_video_track_shared.h 15 struct Attributes {
16 Attributes()
27 static bool VerifyAttributes(const Attributes& attributes);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
Attributes.java 20 * Attributes ::=
24 public class Attributes
27 private ASN1Set attributes; field in class:Attributes
29 private Attributes(ASN1Set set)
31 attributes = set;
34 public Attributes(ASN1EncodableVector v)
36 attributes = new DLSet(v);
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
    [all...]
  /external/llvm/bindings/python/llvm/
enumerations.py 22 'Attributes',
33 Attributes = [
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugInfoEntry.cpp 39 DWARFDebugInfoEntry::Attributes::Attributes() :
44 DWARFDebugInfoEntry::Attributes::~Attributes()
50 DWARFDebugInfoEntry::Attributes::FindAttributeIndex(dw_attr_t attr) const
64 DWARFDebugInfoEntry::Attributes::Append(const DWARFCompileUnit *cu, dw_offset_t attr_die_offset, dw_attr_t attr, dw_form_t form)
71 DWARFDebugInfoEntry::Attributes::ContainsAttribute(dw_attr_t attr) const
77 DWARFDebugInfoEntry::Attributes::RemoveAttribute(dw_attr_t attr)
89 DWARFDebugInfoEntry::Attributes::ExtractFormValueAtIndex (SymbolFileDWARF* dwarf2Data, uint32_t i, DWARFFormValue &form_value) const
97 DWARFDebugInfoEntry::Attributes::FormValueAsUnsigned (SymbolFileDWARF* dwarf2Data, dw_attr_t attr, uint64_t fail_value) cons
    [all...]
DWARFAbbreviationDeclaration.h 72 // DWARFAttribute::collection& Attributes() { return m_attributes; }
73 const DWARFAttribute::collection& Attributes() const { return m_attributes; }
DWARFDebugInfoEntry.h 60 class Attributes
63 Attributes();
64 ~Attributes();
166 DWARFDebugInfoEntry::Attributes& attrs,
253 const DWARFDebugInfoEntry::Attributes& attributes,
390 const DWARFDebugInfoEntry::Attributes& attributes) const;
  /external/icu/icu4c/source/i18n/unicode/
tblcoll.h 679 * a collator with the same attributes using the ucol_openFromShortString API.
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/
Attributes.java 0 // Attributes.java - attribute list with Namespace support
5 // $Id: Attributes.java,v 1.13 2004/03/18 12:28:05 dmegginson Exp $
11 * Interface for a list of XML attributes.
20 * <p>This interface allows access to a list of attributes in
29 * <p>The list will not contain attributes that were declared
31 * contain attributes used as Namespace declarations (xmlns*) unless
37 * give namespace declaration attributes a namespace URI.
42 * that those attributes be given URIs, conforming to a later
60 * <p>The order of attributes in the list is unspecified, and will
69 public interface Attributes
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserver.h 67 Attributes = 1 << 1,
70 AllMutationTypes = ChildList | Attributes | CharacterData
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FormSubmission.h 50 class Attributes {
51 WTF_MAKE_NONCOPYABLE(Attributes);
53 Attributes()
79 void copyFrom(const Attributes&);
91 static PassRefPtrWillBeRawPtr<FormSubmission> create(HTMLFormElement*, const Attributes&, PassRefPtrWillBeRawPtr<Event>, FormSubmissionTrigger);
116 // FIXME: Hold an instance of Attributes instead of individual members.
  /external/smack/src/com/kenai/jbosh/
Attributes.java 27 final class Attributes {
32 private Attributes() {
  /external/clang/include/clang/Basic/
Builtins.h 53 const char *Name, *Type, *Attributes, *HeaderName;
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, 'f') != nullptr
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
Attributes.java 27 * The {@code Attributes} class is used to store values for manifest entries.
28 * Attribute keys are generally instances of {@code Attributes.Name}. Values
31 public class Attributes implements Cloneable, Map<Object, Object> {
34 * The {@code Attributes} as name/value pairs. Maps the attribute names (as
35 * {@link Attributes.Name}) of a JAR file manifest to arbitrary values. The
184 * Constructs an {@code Attributes} instance.
186 public Attributes() {
191 * Constructs an {@code Attributes} instance obtaining keys and values from
195 * The attributes to obtain entries from.
198 public Attributes(Attributes attrib)
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebGraphicsContext3D.h 76 // Context creation attributes.
77 struct Attributes {
78 Attributes()
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 32 /// getImpliedARCOwnership - Given a set of property attributes and a
36 /// Returns OCL_None if the attributes as stated do not imply an ownership.
147 unsigned Attributes = ODS.getPropertyAttributes();
150 Attributes |= deduceWeakPropertyFromType(*this, T);
152 bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) ||
154 !(Attributes & ObjCDeclSpec::DQ_PR_readonly));
157 bool isAssign = ((Attributes & ObjCDeclSpec::DQ_PR_assign) ||
159 !(Attributes & ObjCDeclSpec::DQ_PR_retain) &&
160 !(Attributes & ObjCDeclSpec::DQ_PR_strong) &&
161 !(Attributes & ObjCDeclSpec::DQ_PR_copy) &
    [all...]
SemaOpenMP.cpp 32 // Stack of data-sharing attributes for variables
36 /// \brief Default data sharing attributes, which can be applied to directive.
64 /// clauses and their data-sharing attributes.
79 OpenMPClauseKind Attributes;
107 /// \brief Stack of used declaration and their data-sharing attributes.
128 assert(Stack.size() > 1 && "Data-sharing attributes stack is empty!");
140 /// \brief Returns data sharing attributes from top of the stack for the
143 /// \brief Returns data-sharing attributes for the specified declaration.
145 /// \brief Checks if the specified variables has data-sharing attributes which
151 /// \brief Checks if the specified variables has data-sharing attributes whic
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
clfs.h 101 ULONG Attributes;
wincon.h 110 WORD Attributes;
wincred.h 144 PCREDENTIAL_ATTRIBUTEA Attributes;
159 PCREDENTIAL_ATTRIBUTEW Attributes;
  /external/chromium_org/sandbox/win/tools/finder/
ntundoc.h 30 ULONG Attributes;
36 ULONG Attributes;
157 (p)->Attributes = a; \
  /external/clang/include/clang/AST/
Comment.h 416 /// An opening HTML tag with attributes.
455 ArrayRef<Attribute> Attributes;
477 return Attributes.size();
481 return Attributes[Idx];
485 Attributes = Attrs;
  /external/clang/lib/Lex/
ModuleMap.cpp     [all...]
  /prebuilts/tools/common/m2/repository/org/twdata/maven/mojo-executor/2.2.0/
mojo-executor-2.2.0.jar 
  /external/chromium_org/sandbox/win/src/
nt_internals.h 66 ULONG Attributes;
75 (p)->Attributes = a;\
245 ULONG Attributes;
481 ULONG Attributes;
504 ULONG Attributes;
578 IN ULONG Attributes,

Completed in 1627 milliseconds

1 2 3 4