Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/soap/
DSppResponseMessageTest.java59 soapObject.addAttribute(SppResponseMessage.SPPStatusAttribute, TEST_STATUS); in verifySppSoapResponseWithoutErrorAttribute()
60 soapObject.addAttribute(SppResponseMessage.SPPSessionIDAttribute, TEST_SESSION_ID); in verifySppSoapResponseWithoutErrorAttribute()
61 soapObject.addAttribute(SppResponseMessage.SPPVersionAttribute, TEST_VERSION); in verifySppSoapResponseWithoutErrorAttribute()
86 soapObject.addAttribute(SppResponseMessage.SPPStatusAttribute, TEST_ERROR_STATUS); in verifySppSoapResponseWithErrorAttribute()
87 soapObject.addAttribute(SppResponseMessage.SPPSessionIDAttribute, TEST_SESSION_ID); in verifySppSoapResponseWithErrorAttribute()
88 soapObject.addAttribute(SppResponseMessage.SPPVersionAttribute, TEST_VERSION); in verifySppSoapResponseWithErrorAttribute()
90 errorInfo.addAttribute(SppResponseMessage.SPPErrorCodeAttribute, TEST_ERROR); in verifySppSoapResponseWithErrorAttribute()
118 soapObject.addAttribute(SppResponseMessage.SPPStatusAttribute, TEST_STATUS); in verifyInCompleteSppSoapResponseRaiseException()
119 soapObject.addAttribute(SppResponseMessage.SPPVersionAttribute, TEST_VERSION); in verifyInCompleteSppSoapResponseRaiseException()
DExchangeCompleteMessageTest.java46 response.addAttribute(SppResponseMessage.SPPStatusAttribute, TEST_STATUS); in verifyValidExchangeComplete()
47 response.addAttribute(SppResponseMessage.SPPSessionIDAttribute, TEST_SESSION_ID); in verifyValidExchangeComplete()
48 response.addAttribute(SppResponseMessage.SPPVersionAttribute, TEST_VERSION); in verifyValidExchangeComplete()
61 response.addAttribute(SppResponseMessage.SPPStatusAttribute, TEST_STATUS); in verifyInvalidExchangeCompleteReturnNull()
62 response.addAttribute(SppResponseMessage.SPPVersionAttribute, TEST_VERSION); in verifyInvalidExchangeCompleteReturnNull()
DSoapParserTest.java73 response.addAttribute(SppResponseMessage.SPPStatusAttribute, TEST_STATUS); in verifyValidSppPostDevDataResponse()
74 response.addAttribute(SppResponseMessage.SPPSessionIDAttribute, TEST_SESSION_ID); in verifyValidSppPostDevDataResponse()
75 response.addAttribute(SppResponseMessage.SPPVersionAttribute, TEST_VERSION); in verifyValidSppPostDevDataResponse()
DPostDevDataResponseTest.java68 response.addAttribute(SppResponseMessage.SPPStatusAttribute, TEST_STATUS); in verifyValidPostDevDataResponse()
69 response.addAttribute(SppResponseMessage.SPPSessionIDAttribute, TEST_SESSION_ID); in verifyValidPostDevDataResponse()
70 response.addAttribute(SppResponseMessage.SPPVersionAttribute, TEST_VERSION); in verifyValidPostDevDataResponse()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/soap/
DUpdateResponseMessage.java48 requestObject.addAttribute(SoapEnvelope.NS20, SppConstants.ATTRIBUTE_SPP_VERSION, in serializeToSoapEnvelope()
50 requestObject.addAttribute(SoapEnvelope.NS20, SppConstants.ATTRIBUTE_SESSION_ID, sessionId); in serializeToSoapEnvelope()
52 requestObject.addAttribute(SoapEnvelope.NS20, SppConstants.ATTRIBUTE_SPP_STATUS, in serializeToSoapEnvelope()
56 sppError.addAttribute(SppConstants.ATTRIBUTE_ERROR_CODE, in serializeToSoapEnvelope()
61 requestObject.addAttribute(SoapEnvelope.NS20, SppConstants.ATTRIBUTE_SPP_STATUS, in serializeToSoapEnvelope()
DPostDevDataMessage.java60 requestObject.addAttribute(SoapEnvelope.NS20, SppConstants.ATTRIBUTE_SPP_VERSION, in serializeToSoapEnvelope()
62 requestObject.addAttribute(SppConstants.ATTRIBUTE_REQUEST_REASON, requestReason); in serializeToSoapEnvelope()
64 requestObject.addAttribute(SppConstants.ATTRIBUTE_REDIRECT_URI, redirectUri); in serializeToSoapEnvelope()
67 requestObject.addAttribute(SoapEnvelope.NS20, SppConstants.ATTRIBUTE_SESSION_ID, in serializeToSoapEnvelope()
92 moContainer.addAttribute(SoapEnvelope.NS20, SppConstants.ATTRIBUTE_MO_URN, moUrn); in addMoContainer()
/frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/view/
DFillContentLayoutTest.java40 .addAttribute(android.R.attr.minWidth, "123dp") in testMeasureMinSize()
41 .addAttribute(android.R.attr.minHeight, "123dp") in testMeasureMinSize()
58 .addAttribute(android.R.attr.maxWidth, "123dp") in testMeasureChildIsSmallerThanMaxSize()
59 .addAttribute(android.R.attr.maxHeight, "123dp") in testMeasureChildIsSmallerThanMaxSize()
77 .addAttribute(android.R.attr.maxWidth, "123dp") in testMeasureChildIsSmallerThanParent()
78 .addAttribute(android.R.attr.maxHeight, "123dp") in testMeasureChildIsSmallerThanParent()
DIllustrationVideoViewTest.java213 .addAttribute(R.attr.suwVideo, "@android:color/white") in createDefaultView()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/soap/command/
DPpsMoDataTest.java61 soapPrimitive.addAttribute(ATTRIBUTE_MANAGEMENT_TREE_URI, TEST_TREE_URI); in verifyGetPpsMo()
62 soapPrimitive.addAttribute(ATTRIBUTE_MO_URN, TEST_MO_URN); in verifyGetPpsMo()
76 soapPrimitive.addAttribute(ATTRIBUTE_MANAGEMENT_TREE_URI, TEST_TREE_URI); in verifyMissingPpsMoReturnNull()
77 soapPrimitive.addAttribute(ATTRIBUTE_MO_URN, TEST_MO_URN); in verifyMissingPpsMoReturnNull()
92 soapPrimitive.addAttribute(ATTRIBUTE_MO_URN, TEST_MO_URN); in verifyMissingTreeURIAttributeReturnNull()
107 soapPrimitive.addAttribute(ATTRIBUTE_MANAGEMENT_TREE_URI, TEST_TREE_URI); in verifyMissingMoUrnAttributeReturnNull()
/frameworks/compile/slang/StripUnkAttr/
Dstrip_unknown_attributes.cpp31 B.addAttribute(llvm::Attribute::ReadNone); in stripUnknownAttributes()
32 B.addAttribute(llvm::Attribute::ReadOnly); in stripUnknownAttributes()
/frameworks/compile/libbcc/tools/bcc_strip_attr/
Dbcc_strip_attr.cpp65 B.addAttribute("target-cpu").addAttribute("target-features"); in runOnFunction()
/frameworks/compile/libbcc/lib/
DRSX86CallConvPass.cpp128 NewFn->addAttribute(i+1, llvm::Attribute::ByVal); in RedefineFn()
155 NewCI->addAttribute(i+1, llvm::Attribute::ByVal); in ReplaceCallInsn()
/frameworks/base/core/java/android/view/
DViewStructure.java499 public abstract Builder addAttribute(@NonNull String name, @NonNull String value); in addAttribute() method in ViewStructure.HtmlInfo.Builder
/frameworks/base/tools/aapt/
DXMLNode.h120 status_t addAttribute(const String16& ns, const String16& name,
DResource.cpp739 node->addAttribute(ns, attr, String16(value)); in addTagAttribute()
1033 status_t err = root->addAttribute(String16(), String16("split"), splitName); in massageManifest()
1215 manifest->addAttribute(String16(), String16("package"), String16(packageName)); in generateAndroidManifestForSplit()
1234 manifest->addAttribute(String16(), String16("split"), String16(splitName)); in generateAndroidManifestForSplit()
DXMLNode.cpp822 status_t XMLNode::addAttribute(const String16& ns, const String16& name, in addAttribute() function in XMLNode
1253 node->addAttribute(ns16, name16, String16(atts[i+1])); in startElement()
DResourceTable.cpp5217 parent->addAttribute(attrNs, attrName, nestedResourceRef); in processBundleFormatImpl()
/frameworks/opt/setupwizard/library/gingerbread/test/robotest/src/com/android/setupwizardlib/items/
DSwitchItemTest.java67 .addAttribute(android.R.attr.layout, "@layout/suw_items_switch_verbose") in verboseLayout_clipPadding_shouldBeFalse()
/frameworks/base/core/java/android/app/assist/
DAssistStructure.java2153 builder.addAttribute(names[i], values[i]);
2177 public Builder addAttribute(String name, String value) { in addAttribute() method in AssistStructure.HtmlInfoNodeBuilder
/frameworks/opt/setupwizard/tools/docs/
Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ ...
Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/ ...
Dandroid-22.txt47053 …method public void addAttribute(java.text.AttributedCharacterIterator.Attribute, java.lang.Object);
47054 …method public void addAttribute(java.text.AttributedCharacterIterator.Attribute, java.lang.Object,…
58443 method public void addAttribute(java.lang.String, java.lang.String, java.lang.String);
58458 …method public void addAttribute(java.lang.String, java.lang.String, java.lang.String, java.lang.St…
/frameworks/base/tools/aapt2/integration-tests/CommandTests/
Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/frameworks/base/api/
Dcurrent.txt55120 …method public abstract android.view.ViewStructure.HtmlInfo.Builder addAttribute(@NonNull String, @…
70939 method public void addAttribute(java.text.AttributedCharacterIterator.Attribute, Object);
70940 …method public void addAttribute(java.text.AttributedCharacterIterator.Attribute, Object, int, int);
81866 method @Deprecated public void addAttribute(String, String, String);
81881 method public void addAttribute(String, String, String, String, String);
/frameworks/base/config/
Dboot-image-profile.txt34511 HSPLjava/security/Provider$Service;->addAttribute(Ljava/lang/String;Ljava/lang/String;)V
38887 HSPLorg/ccil/cowan/tagsoup/AttributesImpl;->addAttribute(Ljava/lang/String;Ljava/lang/String;Ljava/…