Searched refs:AttrIdx (Results 1 – 7 of 7) sorted by relevance
/external/clang/tools/libclang/ |
D | CXComment.cpp | 211 CXString clang_HTMLStartTag_getAttrName(CXComment CXC, unsigned AttrIdx) { in clang_HTMLStartTag_getAttrName() argument 213 if (!HST || AttrIdx >= HST->getNumAttrs()) in clang_HTMLStartTag_getAttrName() 216 return cxstring::createRef(HST->getAttr(AttrIdx).Name); in clang_HTMLStartTag_getAttrName() 219 CXString clang_HTMLStartTag_getAttrValue(CXComment CXC, unsigned AttrIdx) { in clang_HTMLStartTag_getAttrValue() argument 221 if (!HST || AttrIdx >= HST->getNumAttrs()) in clang_HTMLStartTag_getAttrValue() 224 return cxstring::createRef(HST->getAttr(AttrIdx).Value); in clang_HTMLStartTag_getAttrValue()
|
/external/clang/include/clang-c/ |
D | Documentation.h | 325 CXString clang_HTMLStartTag_getAttrName(CXComment Comment, unsigned AttrIdx); 335 CXString clang_HTMLStartTag_getAttrValue(CXComment Comment, unsigned AttrIdx);
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFDebugInfoEntry.cpp | 238 uint32_t AttrIdx = AbbrevDecl->findAttributeIndex(Attr); in getAttributeValue() local 239 if (AttrIdx == -1U) in getAttributeValue() 249 for (uint32_t i = 0; i < AttrIdx; ++i) { in getAttributeValue() 254 FormValue = DWARFFormValue(AbbrevDecl->getFormByIndex(AttrIdx)); in getAttributeValue()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | FastISel.cpp | 81 unsigned AttrIdx) { in setAttributes() argument 82 IsSExt = CS->paramHasAttr(AttrIdx, Attribute::SExt); in setAttributes() 83 IsZExt = CS->paramHasAttr(AttrIdx, Attribute::ZExt); in setAttributes() 84 IsInReg = CS->paramHasAttr(AttrIdx, Attribute::InReg); in setAttributes() 85 IsSRet = CS->paramHasAttr(AttrIdx, Attribute::StructRet); in setAttributes() 86 IsNest = CS->paramHasAttr(AttrIdx, Attribute::Nest); in setAttributes() 87 IsByVal = CS->paramHasAttr(AttrIdx, Attribute::ByVal); in setAttributes() 88 IsInAlloca = CS->paramHasAttr(AttrIdx, Attribute::InAlloca); in setAttributes() 89 IsReturned = CS->paramHasAttr(AttrIdx, Attribute::Returned); in setAttributes() 90 Alignment = CS->getParamAlignment(AttrIdx); in setAttributes()
|
D | TargetLowering.cpp | 71 unsigned AttrIdx) { in setAttributes() argument 72 isSExt = CS->paramHasAttr(AttrIdx, Attribute::SExt); in setAttributes() 73 isZExt = CS->paramHasAttr(AttrIdx, Attribute::ZExt); in setAttributes() 74 isInReg = CS->paramHasAttr(AttrIdx, Attribute::InReg); in setAttributes() 75 isSRet = CS->paramHasAttr(AttrIdx, Attribute::StructRet); in setAttributes() 76 isNest = CS->paramHasAttr(AttrIdx, Attribute::Nest); in setAttributes() 77 isByVal = CS->paramHasAttr(AttrIdx, Attribute::ByVal); in setAttributes() 78 isInAlloca = CS->paramHasAttr(AttrIdx, Attribute::InAlloca); in setAttributes() 79 isReturned = CS->paramHasAttr(AttrIdx, Attribute::Returned); in setAttributes() 80 Alignment = CS->getParamAlignment(AttrIdx); in setAttributes()
|
/external/llvm/include/llvm/CodeGen/ |
D | FastISel.h | 52 void setAttributes(ImmutableCallSite *CS, unsigned AttrIdx);
|
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 2236 void setAttributes(ImmutableCallSite *CS, unsigned AttrIdx);
|