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

1 2

  /external/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.h 25 SmallVector<DWARFAttribute, 8> Attributes;
34 uint32_t getNumAttributes() const { return Attributes.size(); }
36 return Attributes.size() > idx ? Attributes[idx].getAttribute() : 0;
39 return Attributes.size() > idx ? Attributes[idx].getForm() : 0;
48 return Attributes;
  /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/clang/include/clang/Basic/
Builtins.h 48 const char *Name, *Type, *Attributes, *HeaderName;
54 !strcmp(Attributes, RHS.Attributes);
93 return strchr(GetRecord(ID).Attributes, 'c') != 0;
98 return strchr(GetRecord(ID).Attributes, 'n') != 0;
103 return strchr(GetRecord(ID).Attributes, 'r') != 0;
108 return strchr(GetRecord(ID).Attributes, 'j') != 0;
114 return strchr(GetRecord(ID).Attributes, 'F') != 0;
121 return strchr(GetRecord(ID).Attributes, 'f') != 0;
126 return strchr(GetRecord(ID).Attributes, 't') != 0
    [all...]
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 19 #include "llvm/Attributes.h"
56 std::vector<AttrListPtr> Attributes;
121 return Attributes;
  /external/webkit/Source/WebCore/loader/
FormSubmission.h 50 class Attributes {
51 WTF_MAKE_NONCOPYABLE(Attributes);
53 Attributes()
76 void copyFrom(const Attributes&);
88 static PassRefPtr<FormSubmission> create(HTMLFormElement*, const Attributes&, PassRefPtr<Event> event, bool lockHistory, FormSubmissionTrigger);
113 // FIXME: Hold an instance of Attributes instead of individual members.
  /external/webkit/Source/WebKit/chromium/public/
WebGraphicsContext3D.h 79 // Context creation attributes.
80 struct Attributes {
81 Attributes()
110 virtual bool initialize(Attributes, WebView*, bool renderDirectlyToWebView) = 0;
231 virtual Attributes getContextAttributes() = 0;
  /frameworks/compile/slang/BitWriter_2_9/
ValueEnumerator.h 19 #include "llvm/Attributes.h"
56 std::vector<AttrListPtr> Attributes;
121 return Attributes;
  /external/llvm/include/llvm/
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;
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 se
    [all...]
  /frameworks/base/tools/localize/
XMLHandler.h 90 inline const vector<XMLAttribute>& Attributes() const { return m_attrs; }
  /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
181 * Constructs an {@code Attributes} instance.
183 public Attributes() {
188 * Constructs an {@code Attributes} instance obtaining keys and values from
192 * The attributes to obtain entries from.
195 public Attributes(Attributes attrib)
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
AttributesTest.java 26 import java.util.jar.Attributes;
30 private Attributes a;
34 a = new Attributes();
42 * @tests java.util.jar.Attributes#Attributes(java.util.jar.Attributes)
45 Attributes a2 = new Attributes(a);
52 * @tests java.util.jar.Attributes#clear()
64 * @tests java.util.jar.Attributes#containsKey(java.lang.Object
    [all...]
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 28 /// getImpliedARCOwnership - Given a set of property attributes and a
32 /// Returns OCL_None if the attributes as stated do not imply an ownership.
109 unsigned Attributes = ODS.getPropertyAttributes();
116 Attributes |= ObjCDeclSpec::DQ_PR_weak;
118 bool isReadWrite = ((Attributes & ObjCDeclSpec::DQ_PR_readwrite) ||
120 !(Attributes & ObjCDeclSpec::DQ_PR_readonly));
123 bool isAssign = ((Attributes & ObjCDeclSpec::DQ_PR_assign) ||
125 !(Attributes & ObjCDeclSpec::DQ_PR_retain) &&
126 !(Attributes & ObjCDeclSpec::DQ_PR_strong) &&
127 !(Attributes & ObjCDeclSpec::DQ_PR_copy) &
    [all...]
SemaChecking.cpp     [all...]
SemaCodeComplete.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 25 #include "llvm/Attributes.h"
809 unsigned Attributes = 0;
817 Attributes |= llvm::Attribute::SExt;
819 Attributes |= llvm::Attribute::ZExt;
827 Attributes |= llvm::Attribute::InReg;
838 Attributes |= llvm::Attribute::ByVal;
840 Attributes |=
862 if (Attributes)
863 PAL.push_back(llvm::AttributeWithIndex::get(Index, Attributes));
    [all...]
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsContext3D.h 420 // Context creation attributes.
421 struct Attributes {
422 Attributes()
455 static PassRefPtr<GraphicsContext3D> create(Attributes, HostWindow*, RenderStyle = RenderOffscreen);
668 Attributes getContextAttributes();
824 GraphicsContext3D(Attributes attrs, HostWindow* hostWindow, bool renderDirectlyToHostWindow);
    [all...]
  /external/clang/lib/Rewrite/
RewriteObjC.cpp     [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h 139 * Indexes for vertex program attributes.
140 * GL_NV_vertex_program aliases generic attributes over the conventional
141 * attributes. In GL_ARB_vertex_program shader the aliasing is optional.
143 * generic attributes are distinct/separate).
184 * Bitflags for vertex attributes.
227 * Indexes for vertex program result attributes
255 * Indexes for geometry program attributes.
275 * Bitflags for geometry attributes.
296 * Indexes for geometry program result attributes
325 * Indexes for fragment program input attributes
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 1479 milliseconds

1 2