HomeSort by relevance Sort by last modified time
    Searched refs:propertyValues (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/server/
BluetoothDeviceProperties.java 43 Map<String, String> propertyValues;
45 propertyValues = mPropertiesMap.get(address);
46 if (propertyValues == null) {
47 propertyValues = new HashMap<String, String>();
73 propertyValues.put(name, newValue);
75 mPropertiesMap.put(address, propertyValues);
81 return propertyValues;
  /frameworks/opt/vcard/java/com/android/vcard/
VCardProperty.java 114 public void setValues(String... propertyValues) {
115 mValueList = Arrays.asList(propertyValues);
122 public void addValues(String... propertyValues) {
124 mValueList = Arrays.asList(propertyValues);
126 mValueList.addAll(Arrays.asList(propertyValues));
  /external/webkit/Source/WebCore/accessibility/gtk/
AXObjectCacheAtk.cpp 149 AtkPropertyValues propertyValues;
150 propertyValues.property_name = "accessible-value";
152 memset(&propertyValues.new_value, 0, sizeof(GValue));
153 atk_value_get_current_value(ATK_VALUE(axObject), &propertyValues.new_value);
155 g_signal_emit_by_name(ATK_OBJECT(axObject), "property-change::accessible-value", &propertyValues, NULL);
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalueiterator/
tst_qscriptvalueiterator.cpp 63 QTest::addColumn<QStringList>("propertyValues");
81 QFETCH(QStringList, propertyValues);
83 Q_ASSERT(propertyNames.size() == propertyValues.size());
89 QString value = propertyValues.at(i);
140 QFETCH(QStringList, propertyValues);
142 Q_ASSERT(propertyNames.size() == propertyValues.size());
148 QString value = propertyValues.at(i);
192 QTest::addColumn<QStringList>("propertyValues");
213 QFETCH(QStringList, propertyValues);
229 QCOMPARE(it.value().toString(), propertyValues.at(i))
    [all...]

Completed in 64 milliseconds