Home
last modified time | relevance | path

Searched refs:Attribute (Results 1 – 25 of 521) sorted by relevance

12345678910>>...21

/external/llvm/lib/IR/
DAttributes.cpp34 Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind, in get()
55 return Attribute(PA); in get()
58 Attribute Attribute::get(LLVMContext &Context, StringRef Kind, StringRef Val) { in get()
75 return Attribute(PA); in get()
78 Attribute Attribute::getWithAlignment(LLVMContext &Context, uint64_t Align) { in getWithAlignment()
84 Attribute Attribute::getWithStackAlignment(LLVMContext &Context, in getWithStackAlignment()
91 Attribute Attribute::getWithDereferenceableBytes(LLVMContext &Context, in getWithDereferenceableBytes()
97 Attribute Attribute::getWithDereferenceableOrNullBytes(LLVMContext &Context, in getWithDereferenceableOrNullBytes()
107 bool Attribute::isEnumAttribute() const { in isEnumAttribute()
111 bool Attribute::isIntAttribute() const { in isIntAttribute()
[all …]
DAttributeImpl.h55 bool hasAttribute(Attribute::AttrKind A) const;
58 Attribute::AttrKind getKindAsEnum() const;
75 static void Profile(FoldingSetNodeID &ID, Attribute::AttrKind Kind, in Profile()
86 static uint64_t getAttrMask(Attribute::AttrKind Val);
98 Attribute::AttrKind Kind;
101 EnumAttributeImpl(AttrEntryKind ID, Attribute::AttrKind Kind) in EnumAttributeImpl()
105 EnumAttributeImpl(Attribute::AttrKind Kind) in EnumAttributeImpl()
108 Attribute::AttrKind getEnumKind() const { return Kind; } in getEnumKind()
116 IntAttributeImpl(Attribute::AttrKind Kind, uint64_t Val) in IntAttributeImpl()
118 assert((Kind == Attribute::Alignment || Kind == Attribute::StackAlignment || in IntAttributeImpl()
[all …]
/external/emma/core/java12/com/vladium/emma/report/html/doc/
DAttribute.java18 abstract class Attribute implements IContent class
22 public static final Attribute ID = new AttributeImpl ("ID");
23 public static final Attribute NAME = new AttributeImpl ("NAME");
24 public static final Attribute TITLE = new AttributeImpl ("TITLE");
25 public static final Attribute TYPE = new AttributeImpl ("TYPE");
26 public static final Attribute CLASS = new AttributeImpl ("CLASS");
27 public static final Attribute HTTP_EQUIV = new AttributeImpl ("HTTP-EQUIV");
28 public static final Attribute CONTENT = new AttributeImpl ("CONTENT");
29 public static final Attribute HREF = new AttributeImpl ("HREF");
30 public static final Attribute SRC = new AttributeImpl ("SRC");
[all …]
/external/deqp/executor/
DxeTestLogWriter.cpp254 << Writer::Attribute("Name", number.name) in writeResultItem()
255 << Writer::Attribute("Description", number.description) in writeResultItem()
256 << Writer::Attribute("Unit", number.unit) in writeResultItem()
257 << Writer::Attribute("Tag", number.tag) in writeResultItem()
267 << Writer::Attribute("Name", image.name) in writeResultItem()
268 << Writer::Attribute("Description", image.description) in writeResultItem()
269 << Writer::Attribute("Width", de::toString(image.width)) in writeResultItem()
270 << Writer::Attribute("Height", de::toString(image.height)) in writeResultItem()
271 << Writer::Attribute("Format", getImageFormatName(image.format)) in writeResultItem()
272 << Writer::Attribute("CompressionMode", getImageCompressionName(image.compression)) in writeResultItem()
[all …]
/external/droiddriver/src/io/appium/droiddriver/uiautomation/
DUiAutomationElement.java36 import io.appium.droiddriver.finders.Attribute;
56 private final Map<Attribute, Object> attributes;
75 Map<Attribute, Object> attribs = new EnumMap<Attribute, Object>(Attribute.class); in UiAutomationElement()
76 put(attribs, Attribute.PACKAGE, charSequenceToString(node.getPackageName())); in UiAutomationElement()
77 put(attribs, Attribute.CLASS, charSequenceToString(node.getClassName())); in UiAutomationElement()
78 put(attribs, Attribute.TEXT, charSequenceToString(node.getText())); in UiAutomationElement()
79 put(attribs, Attribute.CONTENT_DESC, charSequenceToString(node.getContentDescription())); in UiAutomationElement()
80 put(attribs, Attribute.RESOURCE_ID, charSequenceToString(node.getViewIdResourceName())); in UiAutomationElement()
81 put(attribs, Attribute.CHECKABLE, node.isCheckable()); in UiAutomationElement()
82 put(attribs, Attribute.CHECKED, node.isChecked()); in UiAutomationElement()
[all …]
/external/deqp/modules/glshared/
DglsAttributeLocationTests.cpp70 return (iter == bindings.end() ? (deInt32)Attribute::LOC_UNDEF : iter->second); in getBoundLocation()
73 bool hasAttributeAliasing (const vector<Attribute>& attributes, const map<string, deUint32>& bindin… in hasAttributeAliasing()
82 if (location != Attribute::LOC_UNDEF) in hasAttributeAliasing()
111 string generateAttributeDefinitions (const vector<Attribute>& attributes) in generateAttributeDefinitions()
115 for (vector<Attribute>::const_iterator iter = attributes.begin(); iter != attributes.end(); ++iter) in generateAttributeDefinitions()
117 if (iter->getLayoutLocation() != Attribute::LOC_UNDEF) in generateAttributeDefinitions()
123 …<< (iter->getArraySize() != Attribute::NOT_ARRAY ? "[" + de::toString(iter->getArraySize()) + "]"… in generateAttributeDefinitions()
129 string generateConditionUniformDefinitions (const vector<Attribute>& attributes) in generateConditionUniformDefinitions()
134 for (vector<Attribute>::const_iterator iter = attributes.begin(); iter != attributes.end(); ++iter) in generateConditionUniformDefinitions()
146 string generateToVec4Expression (const Attribute& attrib, int id=-1) in generateToVec4Expression()
[all …]
/external/llvm/include/llvm/IR/
DFunction.h163 void addFnAttr(Attribute::AttrKind N) {
169 void removeFnAttr(Attribute::AttrKind N) {
187 bool hasFnAttribute(Attribute::AttrKind Kind) const {
195 Attribute getFnAttribute(Attribute::AttrKind Kind) const {
198 Attribute getFnAttribute(StringRef Kind) const {
215 void addAttribute(unsigned i, Attribute::AttrKind attr);
244 Attribute::ReadNone);
247 addFnAttr(Attribute::ReadNone);
254 Attribute::ReadOnly);
257 addFnAttr(Attribute::ReadOnly);
[all …]
DAttributes.h45 class Attribute {
121 Attribute(AttributeImpl *A) : pImpl(A) {} in Attribute() function
123 Attribute() : pImpl(nullptr) {} in Attribute() function
130 static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val = 0);
131 static Attribute get(LLVMContext &Context, StringRef Kind,
136 static Attribute getWithAlignment(LLVMContext &Context, uint64_t Align);
137 static Attribute getWithStackAlignment(LLVMContext &Context, uint64_t Align);
138 static Attribute getWithDereferenceableBytes(LLVMContext &Context,
140 static Attribute getWithDereferenceableOrNullBytes(LLVMContext &Context,
165 Attribute::AttrKind getKindAsEnum() const;
[all …]
/external/droiddriver/src/io/appium/droiddriver/instrumentation/
DViewElement.java39 import io.appium.droiddriver.finders.Attribute;
51 final Map<Attribute, Object> attribs = new EnumMap<Attribute, Object>(Attribute.class);
62 put(Attribute.PACKAGE, view.getContext().getPackageName()); in call()
63 put(Attribute.CLASS, getClassName()); in call()
64 put(Attribute.TEXT, getText()); in call()
65 put(Attribute.CONTENT_DESC, charSequenceToString(view.getContentDescription())); in call()
66 put(Attribute.RESOURCE_ID, getResourceId()); in call()
67 put(Attribute.CHECKABLE, view instanceof Checkable); in call()
68 put(Attribute.CHECKED, isChecked()); in call()
69 put(Attribute.CLICKABLE, view.isClickable()); in call()
[all …]
/external/llvm/lib/CodeGen/AsmPrinter/
DDwarfUnit.h125 void addLocalString(DIE &Die, dwarf::Attribute Attribute, StringRef Str);
127 void addIndexedString(DIE &Die, dwarf::Attribute Attribute, StringRef Str);
184 void addFlag(DIE &Die, dwarf::Attribute Attribute);
187 void addUInt(DIE &Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
193 void addSInt(DIE &Die, dwarf::Attribute Attribute, Optional<dwarf::Form> Form,
199 void addString(DIE &Die, dwarf::Attribute Attribute, StringRef Str);
202 void addLabel(DIE &Die, dwarf::Attribute Attribute, dwarf::Form Form,
209 void addSectionOffset(DIE &Die, dwarf::Attribute Attribute, uint64_t Integer);
216 void addLabelDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi,
220 void addDIEEntry(DIE &Die, dwarf::Attribute Attribute, DIE &Entry);
[all …]
DDwarfCompileUnit.h86 void addLabelAddress(DIE &Die, dwarf::Attribute Attribute,
91 void addLocalLabelAddress(DIE &Die, dwarf::Attribute Attribute,
95 void addSectionDelta(DIE &Die, dwarf::Attribute Attribute, const MCSymbol *Hi,
109 void addSectionLabel(DIE &Die, dwarf::Attribute Attribute,
199 void addAddress(DIE &Die, dwarf::Attribute Attribute,
207 dwarf::Attribute Attribute,
211 void addLocationList(DIE &Die, dwarf::Attribute Attribute, unsigned Index);
/external/llvm/unittests/IR/
DAttributesTest.cpp20 Attribute AttrA = Attribute::get(C, Attribute::AlwaysInline); in TEST()
21 Attribute AttrB = Attribute::get(C, Attribute::AlwaysInline); in TEST()
25 AttributeSet::get(C, 1, Attribute::ZExt), in TEST()
26 AttributeSet::get(C, 2, Attribute::SExt) in TEST()
38 AttributeSet::get(C, 2, Attribute::ZExt), in TEST()
39 AttributeSet::get(C, 1, Attribute::SExt) in TEST()
/external/proguard/src/proguard/classfile/editor/
DAttributesEditor.java84 public Attribute findAttribute(String attributeName) in findAttribute()
105 public void addAttribute(Attribute attribute) in addAttribute()
199 Attribute[] attributes, in replaceAttribute()
200 Attribute attribute) in replaceAttribute()
221 private Attribute[] addAttribute(int attributesCount, in addAttribute()
222 Attribute[] attributes, in addAttribute()
223 Attribute attribute) in addAttribute()
229 Attribute[] newAttributes = new Attribute[attributesCount + 1]; in addAttribute()
248 Attribute[] attributes, in deleteAttribute()
277 Attribute[] attributes, in findAttributeIndex()
[all …]
/external/droiddriver/src/io/appium/droiddriver/base/
DBaseUiElement.java39 import io.appium.droiddriver.finders.Attribute;
67 public <T> T get(Attribute attribute) { in get()
73 return get(Attribute.TEXT); in getText()
78 return get(Attribute.CONTENT_DESC); in getContentDescription()
83 return get(Attribute.CLASS); in getClassName()
88 return get(Attribute.RESOURCE_ID); in getResourceId()
93 return get(Attribute.PACKAGE); in getPackageName()
98 return (Boolean) get(Attribute.CHECKABLE); in isCheckable()
103 return (Boolean) get(Attribute.CHECKED); in isChecked()
108 return (Boolean) get(Attribute.CLICKABLE); in isClickable()
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
DAttributeTable.java31 Attribute a = Attribute.getInstance(v.get(i)); in AttributeTable()
42 Attribute a = Attribute.getInstance(s.getObjectAt(i)); in AttributeTable()
49 Attribute attr) in AttributeTable()
62 Attribute a) in addAttribute()
74 if (value instanceof Attribute) in addAttribute()
98 public Attribute get( in get()
105 return (Attribute)((Vector)value).elementAt(0); in get()
108 return (Attribute)value; in get()
131 v.add((Attribute)e.nextElement()); in getAll()
136 v.add((Attribute)value); in getAll()
[all …]
DAttribute.java33 public class Attribute class
52 public static Attribute getInstance( in getInstance()
55 if (o instanceof Attribute) in getInstance()
57 return (Attribute)o; in getInstance()
62 return new Attribute(ASN1Sequence.getInstance(o)); in getInstance()
68 private Attribute( in Attribute() method in Attribute
75 public Attribute( in Attribute() method in Attribute
/external/droiddriver/src/io/appium/droiddriver/finders/
DByXPath.java146 setAttribute(element, Attribute.CLASS, className); in buildDomNode()
147 setAttribute(element, Attribute.RESOURCE_ID, uiElement.getResourceId()); in buildDomNode()
148 setAttribute(element, Attribute.PACKAGE, uiElement.getPackageName()); in buildDomNode()
149 setAttribute(element, Attribute.CONTENT_DESC, uiElement.getContentDescription()); in buildDomNode()
150 setAttribute(element, Attribute.TEXT, uiElement.getText()); in buildDomNode()
151 setAttribute(element, Attribute.CHECKABLE, uiElement.isCheckable()); in buildDomNode()
152 setAttribute(element, Attribute.CHECKED, uiElement.isChecked()); in buildDomNode()
153 setAttribute(element, Attribute.CLICKABLE, uiElement.isClickable()); in buildDomNode()
154 setAttribute(element, Attribute.ENABLED, uiElement.isEnabled()); in buildDomNode()
155 setAttribute(element, Attribute.FOCUSABLE, uiElement.isFocusable()); in buildDomNode()
[all …]
DBy.java39 public static MatchFinder is(Attribute attribute) { in is()
46 public static MatchFinder not(Attribute attribute) { in not()
61 return new MatchFinder(Predicates.attributeEquals(Attribute.RESOURCE_ID, resourceId)); in resourceId()
66 return new MatchFinder(Predicates.attributeEquals(Attribute.PACKAGE, name)); in packageName()
71 return new MatchFinder(Predicates.attributeEquals(Attribute.TEXT, text)); in text()
76 return new MatchFinder(Predicates.attributeMatches(Attribute.TEXT, regex)); in textRegex()
81 return new MatchFinder(Predicates.attributeContains(Attribute.TEXT, substring)); in textContains()
86 return new MatchFinder(Predicates.attributeEquals(Attribute.CONTENT_DESC, contentDescription)); in contentDescription()
91 return new MatchFinder(Predicates.attributeContains(Attribute.CONTENT_DESC, substring)); in contentDescriptionContains()
96 return new MatchFinder(Predicates.attributeEquals(Attribute.CLASS, className)); in className()
[all …]
/external/skia/src/gpu/effects/
DGrDistanceFieldGeoProc.h68 const Attribute* inPosition() const { return fInPosition; } in inPosition()
69 const Attribute* inColor() const { return fInColor; } in inColor()
70 const Attribute* inTextureCoords() const { return fInTextureCoords; } in inTextureCoords()
102 const Attribute* fInPosition;
103 const Attribute* fInColor;
104 const Attribute* fInTextureCoords;
130 const Attribute* inPosition() const { return fInPosition; } in inPosition()
131 const Attribute* inColor() const { return fInColor; } in inColor()
132 const Attribute* inTextureCoords() const { return fInTextureCoords; } in inTextureCoords()
154 const Attribute* fInPosition;
[all …]
DGrBezierEffect.h95 inline const Attribute* inPosition() const { return fInPosition; } in inPosition()
96 inline const Attribute* inConicCoeffs() const { return fInConicCoeffs; } in inConicCoeffs()
122 const Attribute* fInPosition;
123 const Attribute* fInConicCoeffs;
177 inline const Attribute* inPosition() const { return fInPosition; } in inPosition()
178 inline const Attribute* inHairQuadEdge() const { return fInHairQuadEdge; } in inHairQuadEdge()
204 const Attribute* fInPosition;
205 const Attribute* fInHairQuadEdge;
255 inline const Attribute* inPosition() const { return fInPosition; } in inPosition()
256 inline const Attribute* inCubicCoeffs() const { return fInCubicCoeffs; } in inCubicCoeffs()
[all …]
/external/llvm/lib/Transforms/Utils/
DBuildLibCalls.cpp43 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture); in EmitStrLen()
44 Attribute::AttrKind AVs[2] = { Attribute::ReadOnly, Attribute::NoUnwind }; in EmitStrLen()
68 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture); in EmitStrNLen()
69 Attribute::AttrKind AVs[2] = { Attribute::ReadOnly, Attribute::NoUnwind }; in EmitStrNLen()
93 Attribute::AttrKind AVs[2] = { Attribute::ReadOnly, Attribute::NoUnwind }; in EmitStrChr()
118 AS[0] = AttributeSet::get(M->getContext(), 1, Attribute::NoCapture); in EmitStrNCmp()
119 AS[1] = AttributeSet::get(M->getContext(), 2, Attribute::NoCapture); in EmitStrNCmp()
120 Attribute::AttrKind AVs[2] = { Attribute::ReadOnly, Attribute::NoUnwind }; in EmitStrNCmp()
145 AS[0] = AttributeSet::get(M->getContext(), 2, Attribute::NoCapture); in EmitStrCpy()
147 Attribute::NoUnwind); in EmitStrCpy()
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/asm/
DAttribute.java38 public class Attribute { class
53 Attribute next;
60 protected Attribute(final String type) { in Attribute() method in Attribute
119 protected Attribute read( in read()
127 Attribute attr = new Attribute(type); in read()
173 Attribute attr = this; in getCount()
208 Attribute attr = this; in getSize()
246 Attribute attr = this; in put()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
DX509AttributeCertificateHolder.java17 import org.bouncycastle.asn1.x509.Attribute;
32 private static Attribute[] EMPTY_ARRAY = new Attribute[0];
149 public Attribute[] getAttributes() in getAttributes()
152 Attribute[] attrs = new Attribute[seq.size()]; in getAttributes()
156 attrs[i] = Attribute.getInstance(seq.getObjectAt(i)); in getAttributes()
168 public Attribute[] getAttributes(ASN1ObjectIdentifier type) in getAttributes()
175 Attribute attr = Attribute.getInstance(seq.getObjectAt(i)); in getAttributes()
187 return (Attribute[])list.toArray(new Attribute[list.size()]); in getAttributes()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DAttribute.java12 public class Attribute class
24 public static Attribute getInstance( in getInstance()
27 if (o instanceof Attribute) in getInstance()
29 return (Attribute)o; in getInstance()
34 return new Attribute(ASN1Sequence.getInstance(o)); in getInstance()
40 private Attribute( in Attribute() method in Attribute
52 public Attribute( in Attribute() method in Attribute
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
DAttributeScope.java83 protected LinkedHashMap<String,Attribute> attributes = new LinkedHashMap();
125 Attribute attr = new Attribute(a); in addAttributes()
138 attributes.put(name, new Attribute(name,decl)); in addAttribute()
158 public Attribute getAttribute(String name) { in getAttribute()
159 return (Attribute)attributes.get(name); in getAttribute()
163 public List<Attribute> getAttributes() { in getAttributes()
164 List<Attribute> a = new ArrayList<Attribute>(); in getAttributes()

12345678910>>...21