HomeSort by relevance Sort by last modified time
    Searched full:addproperty (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/chromium_org/net/proxy/
proxy_config_service_android_unittest.cc 78 void AddProperty(const std::string& key, const std::string& value) {
133 AddProperty("http.proxyHost", "localhost");
152 AddProperty("http.proxyHost", "httpproxy.com");
173 AddProperty("http.proxyHost", "httpproxy.com");
174 AddProperty("http.proxyPort", "8080");
183 AddProperty("http.proxyHost", "httpproxy.com");
192 AddProperty("http.proxyPort", "8080");
201 AddProperty("http.nonProxyHosts", "slashdot.org");
202 AddProperty("http.proxyHost", "httpproxy.com");
203 AddProperty("http.proxyPort", "8080")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
DateTimeChooserImpl.cpp 127 addProperty("anchorRectInScreen", anchorRectInScreen, data);
128 addProperty("min", valueToDateTimeString(m_parameters.minimum, m_parameters.type), data);
129 addProperty("max", valueToDateTimeString(m_parameters.maximum, m_parameters.type), data);
130 addProperty("step", stepString, data);
131 addProperty("stepBase", stepBaseString, data);
132 addProperty("required", m_parameters.required, data);
133 addProperty("currentValue", valueToDateTimeString(m_parameters.doubleValue, m_parameters.type), data);
134 addProperty("locale", m_parameters.locale.string(), data);
135 addProperty("todayLabel", todayLabelString, data);
136 addProperty("clearLabel", locale().queryString(WebLocalizedString::CalendarClear), data)
    [all...]
ColorChooserPopupUIController.cpp 96 PagePopupClient::addProperty("values", suggestionValues, data);
97 PagePopupClient::addProperty("otherColorLabel", locale().queryString(WebLocalizedString::OtherColorLabel), data);
98 addProperty("anchorRectInScreen", anchorRectInScreen, data);
  /external/chromium_org/third_party/WebKit/Source/core/page/
PagePopupClient.cpp 54 void PagePopupClient::addProperty(const char* name, const String& value, SharedBuffer* data)
62 void PagePopupClient::addProperty(const char* name, int value, SharedBuffer* data)
70 void PagePopupClient::addProperty(const char* name, unsigned value, SharedBuffer* data)
78 void PagePopupClient::addProperty(const char* name, bool value, SharedBuffer* data)
89 void PagePopupClient::addProperty(const char* name, const Vector<String>& values, SharedBuffer* data)
101 void PagePopupClient::addProperty(const char* name, const IntRect& rect, SharedBuffer* data)
105 addProperty("x", rect.x(), data);
106 addProperty("y", rect.y(), data);
107 addProperty("width", rect.width(), data);
108 addProperty("height", rect.height(), data)
    [all...]
PagePopupClient.h 75 static void addProperty(const char* name, const String& value, SharedBuffer*);
76 static void addProperty(const char* name, int value, SharedBuffer*);
77 static void addProperty(const char* name, unsigned value, SharedBuffer*);
78 static void addProperty(const char* name, bool value, SharedBuffer*);
79 static void addProperty(const char* name, const Vector<String>& values, SharedBuffer*);
80 static void addProperty(const char* name, const IntRect&, SharedBuffer*);
  /external/chromium_org/content/test/data/media/webui/
player_info_test.html 42 window.pi.addProperty(0, key, value);
45 window.pi.addProperty(0, key, value2);
55 pi.addProperty(timestamp, 'key', 'value');
65 pi.addProperty(0, 5, 'some value');
79 pi.addProperty(firstTimestamp, key, value);
80 pi.addProperty(secondTimestamp, key, value);
102 pi.addProperty(timestamp, key, value);
118 pi.addProperty(timestamp, key, value);
122 pi.addProperty(timestamp, key2, value2);
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardEntryTests.java 209 entry.addProperty(property);
222 entry.addProperty(property);
230 entry.addProperty(property);
238 entry.addProperty(property);
247 entry.addProperty(property);
256 entry.addProperty(property);
266 entry.addProperty(property);
273 entry.addProperty(property);
280 entry.addProperty(property);
287 entry.addProperty(property)
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
MarshalHashtable.java 77 item.addProperty("key", null);
78 item.addProperty("value", null);
96 addProperty("key", null);
97 addProperty("value", null);
SoapObject.java 470 o.addProperty(propertyInfoClonned);
510 public SoapObject addProperty(String name, Object value) {
518 return addProperty(propertyInfo);
530 return addProperty(name, value);
546 return addProperty(propertyInfo);
559 public SoapObject addProperty(PropertyInfo propertyInfo) {
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
BeanGenerator.java 59 public void addProperty(String name, Class type) {
132 gen.addProperty(name, (Class)props.get(name));
142 gen.addProperty(descriptors[i].getName(), descriptors[i].getPropertyType());
  /external/chromium_org/content/browser/resources/media/
player_info.js 38 addProperty: function(timestamp, key, value) {
74 this.addProperty(timestamp, key, value);
manager.js 107 this.players_[id].addProperty(timestamp, key, value);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
KeyframeList.h 48 void addProperty(CSSPropertyID prop) { m_properties.add(prop); }
78 void addProperty(CSSPropertyID prop) { m_properties.add(prop); }
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
RecurrenceSet.java 34 component.addProperty(new ICalendar.Property(CTS_PROPERTY_NAME));
ICalendar.java 56 public void addProperty(Property prop) {
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
sql_1.h 40 void AddProperty(LPWSTR pProp);
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSPropertyParser.cpp 145 addProperty(propId, value, important, implicit);
154 addProperty(prefixingVariant, val.release(), important, implicit);
157 addProperty(prefixingVariant, val.release(), important, implicit);
161 void CSSPropertyParser::addProperty(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue> value, bool important, bool implicit)
466 addProperty(propId, cssValuePool().createIdentifierValue(id), important);
522 addProperty(CSSPropertyOverflowX, overflowXValue.release(), important);
545 addProperty(CSSPropertyWebkitBorderVerticalSpacing, value, important);
716 addProperty(propId1, val1.release(), important);
718 addProperty(propId2, val2.release(), important);
720 addProperty(propId1, val1.release(), important)
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
ICalendarTest.java 41 component.addProperty(new ICalendar.Property("prop2", "value3"));
42 component.addProperty(new ICalendar.Property("prop1", "value1"));
43 component.addProperty(new ICalendar.Property("prop1", "value2"));
60 child.addProperty(new ICalendar.Property("prop2", "value2"));
62 parent.addProperty(new ICalendar.Property("prop1", "value1"));
63 parent.addProperty(new ICalendar.Property("prop1", "value12"));
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileParserTask.java 112 c.addProperty(GLCall.PROPERTY_MARKERNAME,
119 c.addProperty(GLCall.PROPERTY_VERTEX_ATTRIB_POINTER_SIZE,
121 c.addProperty(GLCall.PROPERTY_VERTEX_ATTRIB_POINTER_TYPE,
123 c.addProperty(GLCall.PROPERTY_VERTEX_ATTRIB_POINTER_DATA,
  /system/core/libutils/
PropertyMap.cpp 50 void PropertyMap::addProperty(const String8& key, const String8& value) {
210 mMap->addProperty(keyToken, valueToken);
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntryConstructor.java 130 mCurrentEntry.addProperty(property);
  /system/core/include/utils/
PropertyMap.h 60 void addProperty(const String8& key, const String8& value);
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceSet.java 313 component.addProperty(dtstartProp);
316 component.addProperty(durationProp);
372 component.addProperty(dtstartProp);
375 component.addProperty(durationProp);
394 component.addProperty(prop);
462 component.addProperty(prop);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLCall.java 164 public void addProperty(int propertyName, Object value) {
  /external/chromium_org/win8/test/
ui_automation_client.cc 236 cache_request->AddProperty(UIA_ClassNamePropertyId);
237 cache_request->AddProperty(UIA_NativeWindowHandlePropertyId);
505 cache_request->AddProperty(UIA_NamePropertyId);

Completed in 1479 milliseconds

1 2 3