Home
last modified time | relevance | path

Searched refs:getAttributes (Results 1 – 25 of 530) sorted by relevance

12345678910>>...22

/external/smali/smalidea/src/test/java/org/jf/smalidea/
DSmaliAnnotationTest.java203 Assert.assertEquals(3, parameterList.getAttributes().length); in doTest()
204 Assert.assertEquals("testBooleanValue", parameterList.getAttributes()[0].getName()); in doTest()
205 PsiAnnotationMemberValue value = parameterList.getAttributes()[0].getValue(); in doTest()
209 Assert.assertEquals("testStringValue", parameterList.getAttributes()[1].getName()); in doTest()
210 value = parameterList.getAttributes()[1].getValue(); in doTest()
213 Assert.assertEquals("testStringArrayValue", parameterList.getAttributes()[2].getName()); in doTest()
214 value = parameterList.getAttributes()[2].getValue(); in doTest()
245 Assert.assertEquals(0, parameterList.getAttributes().length); in doTest()
/external/emma/core/java12/com/vladium/emma/report/html/doc/
DHTMLDocument.java40 meta.getAttributes () in HTMLDocument()
121 style.getAttributes ().set (Attribute.TYPE, "text/css"); in addStyle()
144 link.getAttributes ().set (Attribute.TYPE, type); // TODO: escape in addLINK()
145 link.getAttributes ().set (Attribute.HREF, href); // TODO: escape in addLINK()
146 link.getAttributes ().set (Attribute.SRC, href); // TODO: escape in addLINK()
176 hr.getAttributes ().set (Attribute.SIZE, size); in addHR()
DISimpleElement.java24 AttributeSet getAttributes (); in getAttributes() method
54 getAttributes ().set (Attribute.CLASS, classID); in setClass()
60 public AttributeSet getAttributes () in getAttributes() method in ISimpleElement.Factory.SimpleElementImpl
DHTMLTable.java36 final AttributeSet attrs = getAttributes (); in HTMLTable()
50 m_caption.getAttributes ().set (Attribute.ALIGN, align); in setCaption()
92 getAttributes ().set (Attribute.COLSPAN, span); in setColspan()
/external/swiftshader/third_party/LLVM/include/llvm/
DAttributes.h228 return getAttributes(Idx); in getParamAttributes()
234 return getAttributes(0); in getRetAttributes()
239 return getAttributes(~0U); in getFnAttributes()
245 return (getAttributes(Idx) & Attr) != 0; in paramHasAttr()
251 return Attribute::getAlignmentFromAttrs(getAttributes(Idx)); in getParamAlignment()
300 Attributes getAttributes(unsigned Idx) const;
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/trace/
DRecordEventsSpanImplTest.java111 assertThat(spanData.getAttributes().getAttributeMap()).isEmpty(); in noEventsRecordedAfterEnd()
135 assertThat(spanData.getAttributes().getAttributeMap()).isEqualTo(attributes); in deprecatedAddAttributesStillWorks()
172 assertThat(spanData.getAttributes().getDroppedAttributesCount()).isEqualTo(0); in toSpanData_ActiveSpan()
173 assertThat(spanData.getAttributes().getAttributeMap()).isEqualTo(expectedAttributes); in toSpanData_ActiveSpan()
233 assertThat(spanData.getAttributes().getDroppedAttributesCount()).isEqualTo(0); in toSpanData_EndedSpan()
234 assertThat(spanData.getAttributes().getAttributeMap()).isEqualTo(expectedAttributes); in toSpanData_EndedSpan()
324 assertThat(spanData.getAttributes().getDroppedAttributesCount()) in droppingAttributes()
326 assertThat(spanData.getAttributes().getAttributeMap().size()).isEqualTo(maxNumberOfAttributes); in droppingAttributes()
330 .getAttributes() in droppingAttributes()
337 assertThat(spanData.getAttributes().getDroppedAttributesCount()) in droppingAttributes()
[all …]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DParseRDF.java210 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++) in rdf_NodeElementAttrs()
212 Node attribute = xmlNode.getAttributes().item(i); in rdf_NodeElementAttrs()
371 NamedNodeMap attributes = xmlNode.getAttributes(); in rdf_PropertyElement()
498 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++) in rdf_ResourcePropertyElement()
500 Node attribute = xmlNode.getAttributes().item(i); in rdf_ResourcePropertyElement()
622 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++) in rdf_LiteralPropertyElement()
624 Node attribute = xmlNode.getAttributes().item(i); in rdf_LiteralPropertyElement()
703 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++) in rdf_ParseTypeResourcePropertyElement()
705 Node attribute = xmlNode.getAttributes().item(i); in rdf_ParseTypeResourcePropertyElement()
831 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++) in rdf_EmptyPropertyElement()
[all …]
/external/grpc-grpc-java/core/src/main/java/io/grpc/
DServerStreamTracer.java79 public abstract Attributes getAttributes(); in getAttributes() method in ServerStreamTracer.ServerCallInfo
110 public Attributes getAttributes() { in getAttributes() method in ServerStreamTracer.ReadOnlyServerCall
111 return callInfo.getAttributes(); in getAttributes()
DPartialForwardingClientCall.java58 public Attributes getAttributes() { in getAttributes() method in PartialForwardingClientCall
59 return delegate().getAttributes(); in getAttributes()
DPartialForwardingServerCall.java70 public Attributes getAttributes() { in getAttributes() method in PartialForwardingServerCall
71 return delegate().getAttributes(); in getAttributes()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DGlobalVariable.h224 AttributeSet getAttributes() const { in getAttributes() function
245 return getAttributes().hasAttribute("bss-section") || in hasImplicitSection()
246 getAttributes().hasAttribute("data-section") || in hasImplicitSection()
247 getAttributes().hasAttribute("rodata-section"); in hasImplicitSection()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
DMethod.java116 for (final Attribute attribute : super.getAttributes()) { in getCode()
130 for (final Attribute attribute : super.getAttributes()) { in getExceptionTable()
180 for (final Attribute attribute : super.getAttributes()) { in toString()
266 …eterAnnotationEntries = ParameterAnnotationEntry.createParameterAnnotationEntries(getAttributes()); in getParameterAnnotationEntries()
DFieldOrMethod.java79 this(c.getAccessFlags(), c.getNameIndex(), c.getSignatureIndex(), c.getAttributes(), c in FieldOrMethod()
152 public final Attribute[] getAttributes() { in getAttributes() method in FieldOrMethod
263 annotationEntries = AnnotationEntry.createAnnotationEntries(getAttributes()); in getAnnotationEntries()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DInstruction.cpp212 CI->getAttributes() == cast<CallInst>(I)->getAttributes(); in isIdenticalToWhenDefined()
215 CI->getAttributes() == cast<InvokeInst>(I)->getAttributes(); in isIdenticalToWhenDefined()
267 CI->getAttributes() == cast<CallInst>(I)->getAttributes(); in isSameOperationAs()
270 CI->getAttributes() == in isSameOperationAs()
271 cast<InvokeInst>(I)->getAttributes(); in isSameOperationAs()
/external/grpc-grpc-java/core/src/test/java/io/grpc/internal/
DCallCredentialsApplyingTest.java124 when(mockTransport.getAttributes()).thenReturn(transportAttrs); in parameterPropagation_base()
144 when(mockTransport.getAttributes()).thenReturn(transportAttrs); in parameterPropagation_overrideByTransport()
164 when(mockTransport.getAttributes()).thenReturn(transportAttrs); in parameterPropagation_overrideByCallOptions()
182 when(mockTransport.getAttributes()).thenReturn(Attributes.EMPTY); in credentialThrows()
196 when(mockTransport.getAttributes()).thenReturn(Attributes.EMPTY); in applyMetadata_inline()
220 when(mockTransport.getAttributes()).thenReturn(Attributes.EMPTY); in fail_inline()
240 when(mockTransport.getAttributes()).thenReturn(Attributes.EMPTY); in applyMetadata_delayed()
262 when(mockTransport.getAttributes()).thenReturn(Attributes.EMPTY); in fail_delayed()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DFunction.cpp108 AttributeList Attrs = getParent()->getAttributes(); in hasByValOrInAllocaAttr()
163 AttributeList Attrs = getParent()->getAttributes(); in onlyReadsMemory()
169 AttributeList AL = getParent()->getAttributes(); in addAttrs()
243 setAttributes(Intrinsic::getAttributes(getContext(), IntID)); in Function()
356 AttributeList PAL = getAttributes(); in addAttribute()
362 AttributeList PAL = getAttributes(); in addAttribute()
368 AttributeList PAL = getAttributes(); in addAttributes()
374 AttributeList PAL = getAttributes(); in addParamAttr()
380 AttributeList PAL = getAttributes(); in addParamAttr()
386 AttributeList PAL = getAttributes(); in addParamAttrs()
[all …]
DAttributes.cpp1024 CurBuilder.merge(List.getAttributes(I - 1)); in get()
1065 unsigned OldAlign = getAttributes(Index).getAlignment(); in addAttributes()
1189 return getAttributes(ArgNo + FirstArgIndex); in getParamAttributes()
1193 return getAttributes(ReturnIndex); in getRetAttributes()
1197 return getAttributes(FunctionIndex); in getFnAttributes()
1202 return getAttributes(Index).hasAttribute(Kind); in hasAttribute()
1206 return getAttributes(Index).hasAttribute(Kind); in hasAttribute()
1210 return getAttributes(Index).hasAttributes(); in hasAttributes()
1243 return getAttributes(Index).getAttribute(Kind); in getAttribute()
1247 return getAttributes(Index).getAttribute(Kind); in getAttribute()
[all …]
/external/llvm/lib/IR/
DFunction.cpp78 if (getParent()->getAttributes(). in hasNonNullAttr()
95 return getParent()->getAttributes(). in hasSwiftSelfAttr()
100 return getParent()->getAttributes(). in hasSwiftErrorAttr()
113 AttributeSet Attrs = getParent()->getAttributes(); in hasByValOrInAllocaAttr()
185 return getParent()->getAttributes(). in onlyReadsMemory()
187 getParent()->getAttributes(). in onlyReadsMemory()
278 setAttributes(Intrinsic::getAttributes(getContext(), IntID)); in Function()
370 AttributeSet PAL = getAttributes(); in addAttribute()
376 AttributeSet PAL = getAttributes(); in addAttribute()
382 AttributeSet PAL = getAttributes(); in addAttributes()
[all …]
/external/opencensus-java/api/src/test/java/io/opencensus/trace/
DAnnotationTest.java41 assertThat(annotation.getAttributes().size()).isEqualTo(0); in fromDescription()
61 assertThat(annotation.getAttributes()).isEqualTo(attributes); in fromDescriptionAndAttributes()
70 assertThat(annotation.getAttributes().size()).isEqualTo(0); in fromDescriptionAndAttributes_EmptyAttributes()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
DX509AttributeCertificateHolder.java158 public Attribute[] getAttributes() in getAttributes() method in X509AttributeCertificateHolder
160 ASN1Sequence seq = attrCert.getAcinfo().getAttributes(); in getAttributes()
177 public Attribute[] getAttributes(ASN1ObjectIdentifier type) in getAttributes() method in X509AttributeCertificateHolder
179 ASN1Sequence seq = attrCert.getAcinfo().getAttributes(); in getAttributes()
/external/llvm/bindings/go/llvm/
DIRBindings.cpp26 const AttributeSet PAL = Func->getAttributes(); in LLVMAddFunctionAttr2()
37 const AttributeSet PAL = Func->getAttributes(); in LLVMGetFunctionAttr2()
43 const AttributeSet PAL = Func->getAttributes(); in LLVMRemoveFunctionAttr2()
/external/robolectric-shadows/resources/src/main/java/org/robolectric/manifest/
DAndroidManifest.java169 NamedNodeMap attributes = applicationNode.getAttributes(); in parseAndroidManifest()
238 Node node = elementsByTagName.item(i).getAttributes().getNamedItem("android:name"); in parseUsedPermissions()
307 Node attributeNode = parentNode.getAttributes().getNamedItem(attributeName); in getAttributeValue()
312 final NamedNodeMap attributes = node.getAttributes(); in parseNodeAttributes()
340 Node nameNode = actionNode.getAttributes().getNamedItem("android:name"); in parseReceivers()
365 Node nameNode = actionNode.getAttributes().getNamedItem("android:name"); in parseServices()
425 NamedNodeMap attributes = action.getAttributes(); in parseIntentFilters()
432 NamedNodeMap attributes = category.getAttributes(); in parseIntentFilters()
448 NamedNodeMap attributes = n.getAttributes(); in parseIntentFilterData()
703 Node namedItem = item.getAttributes().getNamedItem(attribute); in getTagAttributeText()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
DX509V2AttributeCertificate.java276 public X509Attribute[] getAttributes() in getAttributes() method in X509V2AttributeCertificate
278 ASN1Sequence seq = cert.getAcinfo().getAttributes(); in getAttributes()
289 public X509Attribute[] getAttributes(String oid) in getAttributes() method in X509V2AttributeCertificate
291 ASN1Sequence seq = cert.getAcinfo().getAttributes(); in getAttributes()
DX509AttributeCertificate.java70 public X509Attribute[] getAttributes(); in getAttributes() method
78 public X509Attribute[] getAttributes(String oid); in getAttributes() method
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/x509/
DX509AttributeCertificate.java72 public X509Attribute[] getAttributes(); in getAttributes() method
80 public X509Attribute[] getAttributes(String oid); in getAttributes() method

12345678910>>...22