Searched refs:Attr (Results 1 - 25 of 209) sorted by relevance

123456789

/external/clang/lib/AST/
H A DAttrImpl.cpp10 // This file contains out-of-line virtual methods for Attr classes.
14 #include "clang/AST/Attr.h"
20 Attr::~Attr() { }
/external/clang/lib/Sema/
H A DTargetAttributesSema.cpp25 const AttributeList &Attr, Sema &S) const {
30 const AttributeList &Attr, Sema &S) {
32 if (Attr.getNumArgs() != 1) {
33 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
34 << Attr.getName() << 1;
40 Expr *NumParamsExpr = static_cast<Expr *>(Attr.getArg(0));
43 S.Diag(Attr.getLoc(), diag::err_attribute_argument_type)
44 << Attr.getName() << AANT_ArgumentIntegerConstant
51 S.Diag(Attr.getLoc(), diag::err_attribute_argument_out_of_bounds)
57 d->addAttr(::new (S.Context) MSP430InterruptAttr(Attr
24 ProcessDeclAttribute(Scope *scope, Decl *D, const AttributeList &Attr, Sema &S) const argument
29 HandleMSP430InterruptAttr(Decl *d, const AttributeList &Attr, Sema &S) argument
65 ProcessDeclAttribute(Scope *scope, Decl *D, const AttributeList &Attr, Sema &S) const argument
76 HandleX86ForceAlignArgPointerAttr(Decl *D, const AttributeList& Attr, Sema &S) argument
131 HandleDLLImportAttr(Decl *D, const AttributeList &Attr, Sema &S) argument
178 HandleDLLExportAttr(Decl *D, const AttributeList &Attr, Sema &S) argument
212 ProcessDeclAttribute(Scope *scope, Decl *D, const AttributeList &Attr, Sema &S) const argument
236 HandleMips16Attr(Decl *D, const AttributeList &Attr, Sema &S) argument
253 HandleNoMips16Attr(Decl *D, const AttributeList &Attr, Sema &S) argument
275 ProcessDeclAttribute(Scope *scope, Decl *D, const AttributeList &Attr, Sema &S) const argument
[all...]
H A DSemaDeclAttr.cpp210 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr, argument
212 if (Attr.getNumArgs() != Num) {
213 S.Diag(Attr.getLoc(), diag::err_attribute_wrong_number_arguments)
214 << Attr.getName() << Num;
224 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr, argument
226 if (Attr.getNumArgs() < Num) {
227 S.Diag(Attr.getLoc(), diag::err_attribute_too_few_arguments) << Num;
324 const AttributeList &Attr) {
341 S.Diag(Attr.getLoc(), diag::warn_thread_attribute_decl_not_pointer)
342 << Attr
323 threadSafetyCheckIsPointer(Sema &S, const Decl *D, const AttributeList &Attr) argument
375 checkForLockableRecord(Sema &S, Decl *D, const AttributeList &Attr, QualType Ty) argument
416 checkAttrArgsAreLockableObjs(Sema &S, Decl *D, const AttributeList &Attr, SmallVectorImpl<Expr*> &Args, int Sidx = 0, bool ParamIdxOk = false) argument
498 checkGuardedVarAttrCommon(Sema &S, Decl *D, const AttributeList &Attr) argument
515 handleGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
524 handlePtGuardedVarAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
537 checkGuardedByAttrCommon(Sema &S, Decl *D, const AttributeList &Attr, Expr* &Arg) argument
564 handleGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
572 handlePtGuardedByAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
585 checkLockableAttrCommon(Sema &S, Decl *D, const AttributeList &Attr) argument
602 handleLockableAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
609 handleScopedLockableAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
619 handleNoThreadSafetyAnalysis(Sema &S, Decl *D, const AttributeList &Attr) argument
636 handleNoSanitizeAddressAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
654 handleNoSanitizeMemory(Sema &S, Decl *D, const AttributeList &Attr) argument
671 handleNoSanitizeThread(Sema &S, Decl *D, const AttributeList &Attr) argument
688 checkAcquireOrderAttrCommon(Sema &S, Decl *D, const AttributeList &Attr, SmallVectorImpl<Expr *> &Args) argument
723 handleAcquiredAfterAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
736 handleAcquiredBeforeAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
749 checkLockFunAttrCommon(Sema &S, Decl *D, const AttributeList &Attr, SmallVectorImpl<Expr *> &Args) argument
769 handleSharedLockFunctionAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
782 handleExclusiveLockFunctionAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
796 handleAssertSharedLockAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
809 handleAssertExclusiveLockAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
824 checkTryLockFunAttrCommon(Sema &S, Decl *D, const AttributeList &Attr, SmallVectorImpl<Expr *> &Args) argument
850 handleSharedTrylockFunctionAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
864 handleExclusiveTrylockFunctionAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
878 checkLocksRequiredCommon(Sema &S, Decl *D, const AttributeList &Attr, SmallVectorImpl<Expr *> &Args) argument
900 handleExclusiveLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
913 handleSharedLocksRequiredAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
926 handleUnlockFunAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
949 handleLockReturnedAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
974 handleLocksExcludedAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1001 handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D, const AttributeList &Attr) argument
1015 handlePackedAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1038 handleMsStructAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1047 handleIBAction(Sema &S, Decl *D, const AttributeList &Attr) argument
1064 checkIBOutletCommon(Sema &S, Decl *D, const AttributeList &Attr) argument
1090 handleIBOutlet(Sema &S, Decl *D, const AttributeList &Attr) argument
1103 handleIBOutletCollection(Sema &S, Decl *D, const AttributeList &Attr) argument
1156 handleAllocSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1197 handleNonNullAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1389 handleWeakRefAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1465 handleAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1492 handleMinSizeAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1508 handleColdAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1529 handleHotAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1550 handleNakedAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1566 handleAlwaysInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1586 handleTLSModelAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1622 handleMallocAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1643 handleMayAliasAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1653 handleNoCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1664 handleCommonAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1708 handleAnalyzerNoReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1734 handleCXX11NoReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1752 handleVecReturnAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1814 handleDependencyAttr(Sema &S, Scope *Scope, Decl *D, const AttributeList &Attr) argument
1835 handleUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1855 handleReturnsTwiceAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1875 handleUsedAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1899 handleConstructorAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1931 handleDestructorAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1964 handleAttrWithMessage(Sema &S, Decl *D, const AttributeList &Attr) argument
1988 handleArcWeakrefUnavailableAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
1998 handleObjCRootClassAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2014 handleObjCRequiresPropertyDefsAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2211 handleAvailabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2279 handleVisibilityAttr(Sema &S, Decl *D, const AttributeList &Attr, bool isTypeVisibility) argument
2348 handleObjCMethodFamilyAttr(Sema &S, Decl *decl, const AttributeList &Attr) argument
2402 handleObjCExceptionAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2419 handleObjCNSObject(Sema &S, Decl *D, const AttributeList &Attr) argument
2451 handleOverloadableAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2465 handleBlocksAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2492 handleSentinelAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2588 handleWarnUnusedAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2599 handleWarnUnusedResult(Sema &S, Decl *D, const AttributeList &Attr) argument
2627 handleWeakAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2652 handleWeakImportAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2681 handleWorkGroupSize(Sema &S, Decl *D, const AttributeList &Attr) argument
2737 handleVecTypeHint(Sema &S, Decl *D, const AttributeList &Attr) argument
2767 handleEndianAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2790 handleSectionAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2827 handleNothrowAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2845 handleConstAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2863 handlePureAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2873 handleCleanupAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
2940 handleFormatArgAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3022 handleInitPriorityAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3096 handleFormatAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3240 handleTransparentUnionAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3309 handleAnnotateAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3338 handleAlignedAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3506 handleModeAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3682 handleNoDebugAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3704 handleNoInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3721 handleNoInstrumentFunctionAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3739 handleKernelAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3747 handleConstantAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3770 handleDeviceAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3793 handleGlobalAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3828 handleHostAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3849 handleSharedAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3869 handleGNUInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3891 handleCallConvAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3967 handleOpenCLKernelAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
3972 handleOpenCLImageAccessAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4053 handleRegparmAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4073 CheckRegparmAttr(const AttributeList &Attr, unsigned &numParams) argument
4111 handleLaunchBoundsAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4160 handleArgumentWithTypeTagAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4211 handleTypeTagForDatatypeAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4245 handleNSConsumedAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4278 handleNSConsumesSelfAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4291 handleNSReturnsRetainedAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4462 handleNSBridgedAttr(Sema &S, Scope *Sc, Decl *D, const AttributeList &Attr) argument
4493 handleObjCOwnershipAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4501 handleObjCPreciseLifetimeAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4554 checkMicrosoftExt(Sema &S, const AttributeList &Attr, bool OtherExtension = false) argument
4562 handleUuidAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4617 handleInheritanceAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4639 handlePortabilityAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4650 handleForceInlineAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4658 handleSelectAnyAttr(Sema &S, Decl *D, const AttributeList &Attr) argument
4672 ProcessNonInheritableDeclAttr(Sema &S, Scope *scope, Decl *D, const AttributeList &Attr) argument
4684 ProcessInheritableDeclAttr(Sema &S, Scope *scope, Decl *D, const AttributeList &Attr) argument
4998 ProcessDeclAttribute(Sema &S, Scope *scope, Decl *D, const AttributeList &Attr, bool NonInheritable, bool Inheritable, bool IncludeCXX11Attributes) argument
[all...]
H A DTargetAttributesSema.h23 const AttributeList &Attr, Sema &S) const;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DAttr.cpp24 #include "core/dom/Attr.h"
41 Attr::Attr(Element& element, const QualifiedName& name) function in class:WebCore::Attr
50 Attr::Attr(Document& document, const QualifiedName& name, const AtomicString& standaloneValue) function in class:WebCore::Attr
60 PassRefPtr<Attr> Attr::create(Element& element, const QualifiedName& name)
62 RefPtr<Attr> attr = adoptRef(new Attr(element, name));
67 PassRefPtr<Attr> Att
[all...]
H A DAttr.h37 // Attr can have Text children
43 class Attr FINAL : public ContainerNode {
45 static PassRefPtr<Attr> create(Element&, const QualifiedName&);
46 static PassRefPtr<Attr> create(Document&, const QualifiedName&, const AtomicString& value);
47 virtual ~Attr();
71 Attr(Element&, const QualifiedName&);
72 Attr(Document&, const QualifiedName&, const AtomicString& value);
90 // Attr wraps either an element/name, or a name/value pair (when it's a standalone Node.)
98 DEFINE_NODE_TYPE_CASTS(Attr, isAttributeNode());
/external/chromium_org/third_party/libjingle/source/talk/examples/chat/
H A Dtextchatreceivetask.cc55 SignalTextChatReceived(Jid(stanza->Attr(QN_FROM)), Jid(stanza->Attr(QN_TO)),
/external/chromium_org/third_party/skia/include/xml/
H A DSkDOM.h26 typedef SkDOMAttr Attr; typedef in class:SkDOM
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/skia/include/xml/
H A DSkDOM.h26 typedef SkDOMAttr Attr; typedef in class:SkDOM
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/chromium/third_party/libjingle/source/talk/p2p/client/
H A Dsessionsendtask.h65 if (stanza->Attr(buzz::QN_TYPE) == "set") {
68 ASSERT((stanza->Attr(buzz::QN_TYPE) == "result") ||
69 (stanza->Attr(buzz::QN_TYPE) == "error"));
75 set_task_id(stanza_->Attr(buzz::QN_ID));
92 if (stanza_->Attr(buzz::QN_TYPE) == buzz::STR_SET) {
108 if (next->Attr(buzz::QN_TYPE) == buzz::STR_RESULT) {
119 buzz::Jid(stanza_->Attr(buzz::QN_TO)), task_id()))
121 if (stanza->Attr(buzz::QN_TYPE) == buzz::STR_RESULT ||
122 stanza->Attr(buzz::QN_TYPE) == buzz::STR_ERROR) {
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/
H A Dsessionsendtask.h68 if (stanza->Attr(buzz::QN_TYPE) == "set") {
71 ASSERT((stanza->Attr(buzz::QN_TYPE) == "result") ||
72 (stanza->Attr(buzz::QN_TYPE) == "error"));
78 set_task_id(stanza_->Attr(buzz::QN_ID));
103 if (stanza_->Attr(buzz::QN_TYPE) == buzz::STR_SET) {
116 if (next->Attr(buzz::QN_TYPE) == buzz::STR_RESULT) {
128 buzz::Jid(stanza_->Attr(buzz::QN_TO)), task_id()))
130 if (stanza->Attr(buzz::QN_TYPE) == buzz::STR_RESULT ||
131 stanza->Attr(buzz::QN_TYPE) == buzz::STR_ERROR) {
/external/clang/include/clang/AST/
H A DAttr.h1 //===--- Attr.h - Classes for representing attributes ----------*- C++ -*-===//
10 // This file defines the Attr interface and subclasses.
40 /// Attr - This represents one attribute.
41 class Attr { class in namespace:clang
48 /// attribute defined in Attr.td file.
55 virtual ~Attr();
76 Attr(attr::Kind AK, SourceRange R, unsigned SpellingListIndex = 0) function in class:clang::Attr
98 virtual Attr *clone(ASTContext &C) const = 0;
107 class InheritableAttr : public Attr {
111 : Attr(A
[all...]
/external/chromium_org/remoting/host/
H A Dhost_change_notification_listener.cc48 if (stanza->Name() != buzz::QN_IQ || stanza->Attr(buzz::QN_TYPE) != "set")
57 host_changed_element->Attr(QName(kChromotingXmlNamespace, "hostid"));
58 const std::string& from = stanza->Attr(buzz::QN_FROM);
59 const std::string& to = stanza->Attr(buzz::QN_TO);
63 host_changed_element->Attr(QName(kChromotingXmlNamespace, "operation"));
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dtransport_unittest.cc245 EXPECT_EQ("test", elem->Attr(buzz::QN_NAME));
246 EXPECT_EQ("udp", elem->Attr(cricket::QN_PROTOCOL));
247 EXPECT_EQ("2001:db8:fefe::1", elem->Attr(cricket::QN_ADDRESS));
248 EXPECT_EQ("9999", elem->Attr(cricket::QN_PORT));
249 EXPECT_EQ("0.34", elem->Attr(cricket::QN_PREFERENCE));
250 EXPECT_EQ("abcdef", elem->Attr(cricket::QN_USERNAME));
251 EXPECT_EQ("ghijkl", elem->Attr(cricket::QN_PASSWORD));
252 EXPECT_EQ("foo", elem->Attr(cricket::QN_TYPE));
253 EXPECT_EQ("testnet", elem->Attr(cricket::QN_NETWORK));
254 EXPECT_EQ("50", elem->Attr(cricke
[all...]
/external/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp68 } else if (AttributedTypeLoc Attr = TL.getAs<AttributedTypeLoc>()) {
69 if (handleAttr(Attr, D))
71 TL = Attr.getModifiedLoc();
113 MigrationContext::GCAttrOccurrence &Attr = MigrateCtx.GCAttrs.back(); local
115 Attr.Kind = Kind;
116 Attr.Loc = Loc;
117 Attr.ModifiedType = TL.getModifiedLoc().getType();
118 Attr.Dcl = D;
119 Attr.FullyMigratable = FullyMigratable;
190 MigrationContext::GCAttrOccurrence &Attr local
206 MigrationContext::GCAttrOccurrence &Attr = MigrateCtx.GCAttrs[i]; local
342 GCAttrOccurrence &Attr = GCAttrs[i]; local
[all...]
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dmucroomdiscoverytask.cc56 const std::string name(identity->Attr(QN_NAME));
68 features.insert(feature->Attr(QN_VAR));
75 const std::string key(field->Attr(QN_VAR));
76 extended_info[key] = field->Attr(QN_XDATA_VALUE);
/external/clang/include/clang/Sema/
H A DMakefile10 $(ObjDir)/AttrTemplateInstantiate.inc.tmp : $(TD_SRC_DIR)/Attr.td \
16 $(ObjDir)/AttrParsedAttrList.inc.tmp : $(TD_SRC_DIR)/Attr.td \
22 $(ObjDir)/AttrParsedAttrKinds.inc.tmp : $(TD_SRC_DIR)/Attr.td \
28 $(ObjDir)/AttrSpellingListIndex.inc.tmp : $(TD_SRC_DIR)/Attr.td \
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DAttList.java23 import org.w3c.dom.Attr;
107 String ns = m_dh.getNamespaceOfNode(((Attr) m_attrs.item(index)));
123 return m_dh.getLocalNameOfNode(((Attr) m_attrs.item(index)));
136 return ((Attr) m_attrs.item(i)).getName();
162 return ((Attr) m_attrs.item(i)).getValue();
203 Attr attr = ((Attr) m_attrs.getNamedItem(name));
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DAttList.java23 import org.w3c.dom.Attr;
98 String ns = m_dh.getNamespaceOfNode(((Attr) m_attrs.item(index)));
114 return m_dh.getLocalNameOfNode(((Attr) m_attrs.item(index)));
127 return ((Attr) m_attrs.item(i)).getName();
153 return ((Attr) m_attrs.item(i)).getValue();
194 Attr attr = ((Attr) m_attrs.getNamedItem(name));
/external/llvm/lib/Transforms/ObjCARC/
H A DARCRuntimeEntryPoints.h133 AttributeSet Attr = local
138 return Decl = TheModule->getOrInsertFunction(Name, Fty, Attr);
151 AttributeSet Attr = AttributeSet(); local
154 Attr = Attr.addAttribute(C, AttributeSet::FunctionIndex,
157 return Decl = TheModule->getOrInsertFunction(Name, Fty, Attr);
170 AttributeSet Attr = local
173 Attr = Attr.addAttribute(C, 1, Attribute::NoCapture);
178 return Decl = TheModule->getOrInsertFunction(Name, Fty, Attr);
[all...]
/external/llvm/lib/Support/
H A DThreading.cpp82 pthread_attr_t Attr; local
86 if (::pthread_attr_init(&Attr) != 0)
91 if (::pthread_attr_setstacksize(&Attr, RequestedStackSize) != 0)
96 if (::pthread_create(&Thread, &Attr, ExecuteOnThread_Dispatch, &Info) != 0)
103 ::pthread_attr_destroy(&Attr);
/external/chromium_org/third_party/libjingle/source/talk/examples/plus/
H A Dpresencepushtask.cc58 if (stanza->HasAttr(QN_TYPE) && stanza->Attr(QN_TYPE) != STR_UNAVAILABLE) {
59 if (stanza->Attr(QN_TYPE) == STR_ERROR) {
85 s.set_jid(Jid(stanza->Attr(QN_FROM)));
87 if (stanza->Attr(QN_TYPE) == STR_UNAVAILABLE) {
142 std::string node = caps->Attr(QN_NODE);
143 std::string ver = caps->Attr(QN_VER);
144 std::string exts = caps->Attr(QN_EXT);
162 std::string stamp = delay->Attr(kQnStamp);
190 s.set_muc_role(item->Attr(QN_ROLE));
/external/clang/include/clang/Parse/
H A DMakefile9 $(ObjDir)/AttrExprArgs.inc.tmp : $(TD_SRC_DIR)/Attr.td $(CLANG_TBLGEN) \
15 $(ObjDir)/AttrLateParsed.inc.tmp : $(TD_SRC_DIR)/Attr.td $(CLANG_TBLGEN) \
/external/clang/include/clang/Serialization/
H A DMakefile9 $(ObjDir)/AttrPCHRead.inc.tmp : $(TD_SRC_DIR)/Attr.td $(CLANG_TBLGEN) \
15 $(ObjDir)/AttrPCHWrite.inc.tmp : $(TD_SRC_DIR)/Attr.td $(CLANG_TBLGEN) \
/external/clang/include/clang/Lex/
H A DMakefile9 $(ObjDir)/AttrSpellings.inc.tmp : $(TD_SRC_DIR)/Attr.td $(CLANG_TBLGEN) \

Completed in 725 milliseconds

123456789