HomeSort by relevance Sort by last modified time
    Searched refs:attributeValue (Results 1 - 25 of 222) sorted by null

1 2 3 4 5 6 7 8 9

  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapConvoContactElement.java 253 String attributeValue = parser.getAttributeValue(i);
255 newElement.mUci = attributeValue;
257 newElement.mName = attributeValue;
259 newElement.mDisplayName = attributeValue;
261 newElement.setChatState(attributeValue);
263 newElement.setLastActivity(attributeValue);
265 newElement.setBtUid(SignedLongLong.fromString(attributeValue));
267 newElement.mPresenceAvailability = Integer.parseInt(attributeValue);
269 newElement.setPresenceStatus(attributeValue);
271 newElement.setPriority(Integer.parseInt(attributeValue));
    [all...]
BluetoothMapConvoListingElement.java 309 String attributeValue = parser.getAttributeValue(i);
311 newElement.mId = SignedLongLong.fromString(attributeValue);
313 newElement.mName = attributeValue;
315 newElement.setLastActivity(attributeValue);
317 newElement.setRead(attributeValue);
319 newElement.setVersionCounter(attributeValue);
321 newElement.setSummary(attributeValue);
  /libcore/ojluni/src/main/java/java/security/
PKCS12Attribute.java 109 * values SET OF AttributeValue
112 * AttributeValue ::= ANY defined by type
246 DerOutputStream attributeValue = new DerOutputStream();
247 attributeValue.write(DerValue.tag_Sequence, attribute);
249 return attributeValue.toByteArray();
253 DerInputStream attributeValue = new DerInputStream(encoded);
254 DerValue[] attrSeq = attributeValue.getSequence(2);
  /external/pdfium/fxjs/xfa/
cjx_packet.cpp 32 WideString attributeValue;
35 attributeValue = static_cast<CFX_XMLElement*>(pXMLNode)->GetString(
39 runtime->NewString(attributeValue.UTF8Encode().AsStringView()));
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/
NodeHandler.java 35 String attributeValue = xml.getAttributeValue(null, attrName);
36 if (attributeValue != null) {
38 NodeHandler nodeHandler = attrHandler.get(attributeValue);
  /external/autotest/frontend/client/src/autotest/moblab/
DutManagementView.java 37 private TextBox attributeValue;
59 attributeValue.setValue("");
95 attributeValue.setValue("");
135 addAttribute(i, attributeName.getText(), attributeValue.getText());
179 attributeValue = new TextBox();
180 attributeValue.setStyleName("dut_manage_action_row_item");
187 attribValueActionRow.add(attributeValue);
336 * @param attributeValue the attribute value to be associated with the attributeName.
338 private void addAttribute(int row_number, String attributeName, String attributeValue) {
340 MoblabRpcHelper.setMoblabAttribute(ipAddress, attributeName, attributeValue, new LogAction(informationArea))
    [all...]
  /frameworks/base/services/core/java/com/android/server/timezone/
PackageStatusStorage.java 363 String attributeValue = parser.getAttributeValue(null, attributeName);
365 if (attributeValue == null) {
367 } else if (attributeValue.isEmpty()) {
370 return Integer.parseInt(attributeValue);
373 "Bad integer for attributeName=" + attributeName + ": " + attributeValue, 0);
  /external/vogar/src/vogar/
XmlReportReader.java 130 String attributeValue = parser.getAttributeValue(i);
131 attributeMap.put(attributeName, attributeValue);
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-antrun-plugin/1.3/
maven-antrun-plugin-1.3.jar 
  /tools/tradefederation/core/src/com/android/tradefed/build/
IBuildInfo.java 128 * @param attributeValue the attribute value
130 public void addBuildAttribute(String attributeName, String attributeValue);
OtaDeviceBuildInfo.java 162 public void addBuildAttribute(String attributeName, String attributeValue) {
163 mBaselineBuild.addBuildAttribute(attributeName, attributeValue);
BuildInfo.java 184 public void addBuildAttribute(String attributeName, String attributeValue) {
185 mBuildAttributes.put(attributeName, attributeValue);
  /tools/tradefederation/core/src/com/android/tradefed/invoker/
IInvocationContext.java 128 public void addInvocationAttribute(String attributeName, String attributeValue);
InvocationContext.java 195 public void addInvocationAttribute(String attributeName, String attributeValue) {
200 mInvocationAttributes.put(attributeName, attributeValue);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/
SettingsShadowResources.java 201 final String attributeValue = set.getAttributeValue(i);
205 if (attributeValue.contains("attr/fingerprint_layout_theme")) {
208 } else if (attributeValue.startsWith("@*android:string")) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
BaseLayoutRuleTest.java 192 String attributeValue) {
197 return attributeValue;
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
XmlResourceParserImpl.java 688 String attributeValue = getAttributeValue(idx);
689 if (attributeValue != null && attributeValue.startsWith("@")) {
690 int resourceId = getResourceId(attributeValue.substring(1), packageName, null);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 392 String attributeValue = region.getText(subRegion);
393 if (attributeValue.equals(match1) || attributeValue.equals(match2)) {
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/
RobolectricConfig.java 175 private int getApplicationFlag(final Document doc, final String attribute, final int attributeValue) {
177 return "true".equalsIgnoreCase(flagString) ? attributeValue : 0;
  /external/expat/xmlwf/
xmlwf.c 109 attributeValue(FILE *fp, const XML_Char *s)
184 attributeValue(fp, *atts);
227 attributeValue(fp, name);
251 attributeValue(fp, *atts);
254 attributeValue(fp, name);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAssetManager.java     [all...]
  /external/autotest/frontend/client/src/autotest/moblab/rpc/
MoblabRpcHelper.java 279 * @param attributeValue the attribute value to be associated with the name
283 String attributeValue, final MoblabRpcCallbacks.LogActionCompleteCallback callback) {
288 params.put("value", new JSONString(attributeValue));
  /tools/tradefederation/core/tests/src/com/android/tradefed/result/suite/
XmlSuiteResultFormatterTest.java 318 String xml, String xPathExpression, String attributeName, String attributeValue)
326 if (attributeValue.equals(value)) {
  /hardware/interfaces/drm/1.1/vts/functional/
drm_hal_clearkey_test.cpp 227 const std::string& attributeName, const AT& attributeValue,
233 ValueEquals(attribute.type, attributeValue, attribute)) {
249 const std::string& attributeName, const AT& attributeValue,
256 metric, attributeName, attributeValue,
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-sns/1.11.18/
aws-java-sdk-sns-1.11.18.jar 

Completed in 594 milliseconds

1 2 3 4 5 6 7 8 9