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

1 2

  /external/clang/lib/AST/
AttrImpl.cpp 10 // This file contains out-of-line virtual methods for Attr classes.
14 #include "clang/AST/Attr.h"
21 Attr::~Attr() { }
ASTDumper.cpp 16 #include "clang/AST/Attr.h"
54 // Attr names (CleanupAttr, GuardedByAttr, etc)
224 void dumpAttr(const Attr *A);
619 void ASTDumper::dumpAttr(const Attr *A) {
625 #define ATTR(X) case attr::X: OS << #X; break;
629 OS << "Attr";
    [all...]
  /external/llvm/lib/Support/
ARMBuildAttrs.cpp 17 ARMBuildAttrs::AttrType Attr;
73 StringRef AttrTypeAsString(unsigned Attr, bool HasTagPrefix) {
74 return AttrTypeAsString(static_cast<AttrType>(Attr), HasTagPrefix);
77 StringRef AttrTypeAsString(AttrType Attr, bool HasTagPrefix) {
80 if (ARMAttributeTags[TI].Attr == Attr)
90 return ARMAttributeTags[TI].Attr;
Threading.cpp 47 pthread_attr_t Attr;
51 if (::pthread_attr_init(&Attr) != 0)
56 if (::pthread_attr_setstacksize(&Attr, RequestedStackSize) != 0)
61 if (::pthread_create(&Thread, &Attr, ExecuteOnThread_Dispatch, &Info) != 0)
68 ::pthread_attr_destroy(&Attr);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_handle.h 76 const HandleAttr& Attr() { return handle_attr_; }
  /external/chromium_org/third_party/skia/include/xml/
SkDOM.h 26 typedef SkDOMAttr Attr;
46 const Attr* getFirstAttr(const Node*) const;
47 const Attr* getNextAttr(const Node*, const Attr*) const;
48 const char* getAttrName(const Node*, const Attr*) const;
49 const char* getAttrValue(const Node*, const Attr*) const;
77 const Attr* fAttr;
78 const Attr* fStop;
  /external/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.cpp 41 uint16_t Attr = Data.getULEB128(OffsetPtr);
52 if (Attr == 0 && Form == 0)
54 AttributeSpecs.push_back(AttributeSpec(Attr, Form));
74 const char *attrString = AttributeString(Spec.Attr);
78 OS << format("DW_AT_Unknown_%x", Spec.Attr);
91 DWARFAbbreviationDeclaration::findAttributeIndex(uint16_t attr) const {
93 if (AttributeSpecs[i].Attr == attr)
DWARFAbbreviationDeclaration.h 26 AttributeSpec(uint16_t Attr, uint16_t Form) : Attr(Attr), Form(Form) {}
27 uint16_t Attr;
50 uint32_t findAttributeIndex(uint16_t attr) const;
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Attr.cpp 24 #include "core/dom/Attr.h"
40 Attr::Attr(Element& element, const QualifiedName& name)
48 Attr::Attr(Document& document, const QualifiedName& name, const AtomicString& standaloneValue)
57 PassRefPtrWillBeRawPtr<Attr> Attr::create(Element& element, const QualifiedName& name)
59 RefPtrWillBeRawPtr<Attr> attr = adoptRefWillBeNoop(new Attr(element, name)) local
66 RefPtrWillBeRawPtr<Attr> attr = adoptRefWillBeNoop(new Attr(document, name, value)); local
    [all...]
  /external/clang/include/clang/AST/
Attr.h 1 //===--- Attr.h - Classes for representing attributes ----------*- C++ -*-===//
10 // This file defines the Attr interface and subclasses.
41 /// Attr - This represents one attribute.
42 class Attr {
49 /// attribute defined in Attr.td file.
55 virtual ~Attr();
76 Attr(attr::Kind AK, SourceRange R, unsigned SpellingListIndex = 0)
82 attr::Kind getKind() const {
83 return static_cast<attr::Kind>(AttrKind)
    [all...]
Comment.h 487 const Attribute &Attr = Attrs.back();
488 SourceLocation L = Attr.ValueRange.getEnd();
492 Range.setEnd(Attr.getNameLocEnd());
  /external/clang/lib/ARCMigrate/
TransGCAttrs.cpp 68 } else if (AttributedTypeLoc Attr = TL.getAs<AttributedTypeLoc>()) {
69 if (handleAttr(Attr, D))
71 TL = Attr.getModifiedLoc();
113 MigrationContext::GCAttrOccurrence &Attr = MigrateCtx.GCAttrs.back();
115 Attr.Kind = Kind;
116 Attr.Loc = Loc;
117 Attr.ModifiedType = TL.getModifiedLoc().getType();
118 Attr.Dcl = D;
119 Attr.FullyMigratable = FullyMigratable;
188 MigrationContext::GCAttrOccurrence &Attr = MigrateCtx.GCAttrs[i]
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ARCRuntimeEntryPoints.h 133 AttributeSet Attr =
138 return Decl = TheModule->getOrInsertFunction(Name, Fty, Attr);
151 AttributeSet Attr = AttributeSet();
154 Attr = Attr.addAttribute(C, AttributeSet::FunctionIndex,
157 return Decl = TheModule->getOrInsertFunction(Name, Fty, Attr);
170 AttributeSet Attr =
173 Attr = Attr.addAttribute(C, 1, Attribute::NoCapture);
178 return Decl = TheModule->getOrInsertFunction(Name, Fty, Attr);
    [all...]
  /device/google/accessory/arduino/USB_Host_Shield/
Usb.h 101 byte Attr; // Endpoint transfer type.
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlelement.cc 93 XmlAttr* attr; local
96 for (attr = elt.first_attr_; attr; attr = attr->NextAttr()) {
97 newAttr = new XmlAttr(*attr);
175 const std::string XmlElement::Attr(const StaticQName& name) const {
176 XmlAttr* attr; local
177 for (attr = first_attr_; attr; attr = attr->next_attr_)
185 XmlAttr* attr; local
194 XmlAttr* attr; local
203 XmlAttr* attr; local
212 XmlAttr* attr; local
230 XmlAttr* attr; local
466 XmlAttr* attr; local
498 XmlAttr* attr; local
    [all...]
  /external/chromium_org/third_party/webrtc/libjingle/xmllite/
xmlelement.cc 76 XmlAttr* attr; local
79 for (attr = elt.first_attr_; attr; attr = attr->NextAttr()) {
80 newAttr = new XmlAttr(*attr);
158 const std::string XmlElement::Attr(const StaticQName& name) const {
159 XmlAttr* attr; local
160 for (attr = first_attr_; attr; attr = attr->next_attr_)
168 XmlAttr* attr; local
177 XmlAttr* attr; local
186 XmlAttr* attr; local
195 XmlAttr* attr; local
213 XmlAttr* attr; local
449 XmlAttr* attr; local
481 XmlAttr* attr; local
    [all...]
  /external/llvm/include/llvm/Support/
GraphWriter.h 261 void emitSimpleNode(const void *ID, const std::string &Attr,
265 if (!Attr.empty())
266 O << Attr << ",";
  /external/llvm/lib/CodeGen/
StackProtector.cpp 90 Attribute Attr = Fn.getAttributes().getAttribute(
92 if (Attr.isStringAttribute() &&
93 Attr.getValueAsString().getAsInteger(10, SSPBufferSize))
  /external/chromium_org/third_party/skia/include/views/
SkWidget.h 307 enum Attr {
314 SkPaint& paint(Attr);
379 enum Attr {
384 SkPaint& paint(Attr);
  /external/llvm/lib/AsmParser/
LLParser.cpp 937 /// ::= <attr> | <attr> '=' <value>
    [all...]
  /external/llvm/lib/IR/
Attributes.cpp 507 Attribute Attr = *II;
510 if (Attr.isStringAttribute()) continue;
512 Attribute::AttrKind Kind = Attr.getKindAsEnum();
676 Attribute::AttrKind Attr) const {
677 if (hasAttribute(Index, Attr)) return *this;
678 return addAttributes(C, Index, AttributeSet::get(C, Index, Attr));
745 Attribute::AttrKind Attr) const {
746 if (!hasAttribute(Index, Attr)) return *this;
747 return removeAttributes(C, Index, AttributeSet::get(C, Index, Attr));
846 bool AttributeSet::hasAttrSomewhere(Attribute::AttrKind Attr) const
    [all...]
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 264 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive)
267 assert(Attr != MCSA_Invalid && "unexpected symbol attribute directive!");
277 getStreamer().EmitSymbolAttribute(Sym, Attr);
ELFAsmParser.cpp 162 MCSymbolAttr Attr = StringSwitch<MCSymbolAttr>(Directive)
169 assert(Attr != MCSA_Invalid && "unexpected symbol attribute directive!");
179 getStreamer().EmitSymbolAttribute(Sym, Attr);
629 MCSymbolAttr Attr = MCAttrForString(Type);
630 if (Attr == MCSA_Invalid)
637 getStreamer().EmitSymbolAttribute(Sym, Attr);
  /external/clang/lib/Index/
CommentToXML.cpp 13 #include "clang/AST/Attr.h"
208 const HTMLStartTagComment::Attribute &Attr = C->getAttr(i);
209 Result << Attr.Name;
210 if (!Attr.Value.empty())
211 Result << "=\"" << Attr.Value << "\"";
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 271 Attribute Attr = *I;
272 if (Attr.isEnumAttribute()) {
274 Record.push_back(getAttrKindEncoding(Attr.getKindAsEnum()));
275 } else if (Attr.isAlignAttribute()) {
277 Record.push_back(getAttrKindEncoding(Attr.getKindAsEnum()));
278 Record.push_back(Attr.getValueAsInt());
280 StringRef Kind = Attr.getKindAsString();
281 StringRef Val = Attr.getValueAsString();
    [all...]

Completed in 852 milliseconds

1 2