Searched defs:property (Results 126 - 150 of 344) sorted by relevance

1234567891011>>

/external/chromium_org/chromeos/dbus/
H A Dfake_nfc_record_client.cc61 dbus::PropertyBase* property,
63 VLOG(1) << "Get " << property->name();
74 dbus::PropertyBase* property,
76 VLOG(1) << "Set " << property->name();
197 // Reassign each property and send signals.
256 // Reassign each property to its current value to trigger a property change
60 Get( dbus::PropertyBase* property, dbus::PropertySet::GetCallback callback) argument
73 Set( dbus::PropertyBase* property, dbus::PropertySet::SetCallback callback) argument
H A Dfake_nfc_tag_client.cc33 dbus::PropertyBase* property,
35 VLOG(1) << "Get " << property->name();
44 dbus::PropertyBase* property,
46 VLOG(1) << "Set " << property->name();
32 Get( dbus::PropertyBase* property, dbus::PropertySet::GetCallback callback) argument
43 Set( dbus::PropertyBase* property, dbus::PropertySet::SetCallback callback) argument
/external/chromium_org/content/browser/device_sensors/
H A Ddata_fetcher_shared_memory_win.cc76 void GetSensorValue(REFPROPERTYKEY property, ISensorDataReport* new_data, argument
79 if (SUCCEEDED(new_data->GetSensorValue(property, &variant_value))) {
/external/chromium_org/content/child/npapi/
H A Dnpobject_stub.cc220 NPVariant_Param* property,
237 result_var, channel_.get(), property, true, render_view_id_, page_url_);
241 const NPVariant_Param& property,
246 if (!CreateNPVariant(property,
219 OnGetProperty(const NPIdentifier_Param& name, NPVariant_Param* property, bool* result) argument
240 OnSetProperty(const NPIdentifier_Param& name, const NPVariant_Param& property, IPC::Message* reply_msg) argument
/external/chromium_org/content/child/webcrypto/
H A Dstatus.cc36 Status Status::ErrorJwkPropertyMissing(const std::string& property) { argument
38 "The required JWK property \"" + property + "\" was missing");
41 Status Status::ErrorJwkPropertyWrongType(const std::string& property, argument
45 "The JWK property \"" + property + "\" must be a " + expected_type);
48 Status Status::ErrorJwkBase64Decode(const std::string& property) { argument
51 "The JWK property \"" + property + "\" could not be base64 decoded");
57 "The \"ext\" property o
108 ErrorJwkEmptyBigInteger(const std::string& property) argument
113 ErrorJwkBigIntegerHasLeadingZero(const std::string& property) argument
[all...]
/external/chromium_org/device/hid/
H A Dinput_service_linux.cc40 const char* property = udev_device_get_property_value(device, key); local
41 if (!property)
44 if (!base::StringToInt(property, &value)) {
45 LOG(ERROR) << "Not an integer value for " << key << " property";
/external/chromium_org/extensions/browser/api/bluetooth/
H A Dbluetooth_private_api.cc188 const std::string& property) {
189 DCHECK(pending_properties_.find(property) != pending_properties_.end());
190 DCHECK(failed_properties_.find(property) == failed_properties_.end());
192 pending_properties_.erase(property);
202 const std::string& property) {
203 DCHECK(pending_properties_.find(property) != pending_properties_.end());
204 DCHECK(failed_properties_.find(property) == failed_properties_.end());
206 pending_properties_.erase(property);
207 failed_properties_.insert(property);
187 OnAdapterPropertySet( const std::string& property) argument
201 OnAdapterPropertyError( const std::string& property) argument
/external/chromium_org/media/base/
H A Dmedia_log.cc124 MediaLogEvent::Type type, const char* property, bool value) {
126 event->params.SetBoolean(property, value);
131 MediaLogEvent::Type type, const char* property, const std::string& value) {
133 event->params.SetString(property, value);
138 MediaLogEvent::Type type, const char* property, base::TimeDelta value) {
141 event->params.SetString(property, "unknown");
143 event->params.SetDouble(property, value.InSecondsF());
123 CreateBooleanEvent( MediaLogEvent::Type type, const char* property, bool value) argument
130 CreateStringEvent( MediaLogEvent::Type type, const char* property, const std::string& value) argument
137 CreateTimeEvent( MediaLogEvent::Type type, const char* property, base::TimeDelta value) argument
/external/chromium_org/net/android/java/src/org/chromium/net/
H A DProxyChangeListener.java76 public static String getProperty(String property) { argument
77 return System.getProperty(property);
/external/chromium_org/ppapi/tests/
H A Dtest_url_request.cc127 // PP_URLRequestProperty property,
134 property(prop), property_name(name),
138 PP_URLRequestProperty property; member in struct:PropertyTestData
154 // These property types are always invalid for string properties.
276 test_data[i].property,
279 error = std::string("Setting property ") +
/external/chromium_org/remoting/host/linux/
H A Dx_server_clipboard.cc186 // If the property is zero-length then the large transfer is complete.
194 if (event->xselection.property != None) {
200 event->xselection.property, 0, ~0L, True,
205 large_selection_property_ = event->xselection.property;
228 if (event->xselectionrequest.property == None)
229 event->xselectionrequest.property = event->xselectionrequest.target;
231 selection_event.property = None;
233 selection_event.property = event->xselectionrequest.property;
235 SendTargetsResponse(selection_event.requestor, selection_event.property);
253 SendTargetsResponse(Window requestor, Atom property) argument
264 SendTimestampResponse(Window requestor, Atom property) argument
277 SendStringResponse(Window requestor, Atom property, Atom target) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DWindowProxy.cpp161 // scope is a property of the inner window.
437 static void getter(v8::Local<v8::String> property, const v8::PropertyCallbackInfo<v8::Value>& info) argument
440 AtomicString name = toCoreAtomicString(property);
450 v8SetReturnValue(info, prototype.As<v8::Object>()->Get(property));
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimatableValueFactory.cpp186 template<CSSPropertyID property>
191 if (property == CSSPropertyBackgroundImage || property == CSSPropertyWebkitMaskImage) {
195 } else if (property == CSSPropertyBackgroundPositionX || property == CSSPropertyWebkitMaskPositionX) {
199 } else if (property == CSSPropertyBackgroundPositionY || property == CSSPropertyWebkitMaskPositionY) {
203 } else if (property == CSSPropertyBackgroundSize || property == CSSPropertyWebkitMaskSize) {
214 PassRefPtrWillBeRawPtr<AnimatableValue> CSSAnimatableValueFactory::createFromColor(CSSPropertyID property, cons argument
271 create(CSSPropertyID property, const RenderStyle& style) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DCSSToStyleMap.cpp145 CSSPropertyID property = layer->type() == BackgroundFillLayer ? CSSPropertyBackgroundImage : CSSPropertyWebkitMaskImage; local
146 layer->setImage(styleImage(property, value));
436 void CSSToStyleMap::mapNinePieceImage(RenderStyle* mutableStyle, CSSPropertyID property, CSSValue* value, NinePieceImage& image) argument
447 if (property == CSSPropertyWebkitBorderImage)
449 else if (property == CSSPropertyWebkitMaskBoxImage)
452 imageProperty = property;
481 if (property == CSSPropertyWebkitBorderImage) {
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimatedTypeAnimator.cpp85 // Create a basic instance of the corresponding SVG property.
92 RefPtr<SVGNumber> property = SVGNumber::create(); local
93 property->setValueAsString(value, IGNORE_EXCEPTION);
94 return property.release();
97 RefPtr<SVGLength> property = SVGLength::create(LengthModeOther); local
98 property->setValueAsString(value, IGNORE_EXCEPTION);
99 return property.release();
102 RefPtr<SVGLengthList> property = SVGLengthList::create(LengthModeOther); local
103 property->setValueAsString(value, IGNORE_EXCEPTION);
104 return property
107 RefPtr<SVGString> property = SVGString::create(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DSubtleCrypto.cpp141 static bool copyStringProperty(const char* property, const Dictionary& source, JSONObject* destination) argument
144 if (!DictionaryHelper::get(source, property, value))
146 destination->setString(property, value);
150 static bool copySequenceOfStringProperty(const char* property, const Dictionary& source, JSONObject* destination) argument
153 if (!DictionaryHelper::get(source, property, value))
158 destination->setArray(property, jsonArray.release());
171 result->completeWithError(WebCryptoErrorTypeData, "The required JWK property \"kty\" was missing");
/external/chromium_org/third_party/icu/source/common/
H A Dpropname.cpp29 * Get the next non-ignorable ASCII character from a property name
52 * Get the next non-ignorable EBCDIC character from a property name
75 * Unicode property names and property value names are compared "loosely".
78 * For all property names, property value names, and for property values for
147 int32_t PropNameData::findProperty(int32_t property) { argument
154 if(property<start) {
157 if(property<limi
238 getPropertyName(int32_t property, int32_t nameChoice) argument
246 getPropertyValueName(int32_t property, int32_t value, int32_t nameChoice) argument
271 getPropertyValueEnum(int32_t property, const char *alias) argument
290 u_getPropertyName(UProperty property, UPropertyNameChoice nameChoice) argument
303 u_getPropertyValueName(UProperty property, int32_t value, UPropertyNameChoice nameChoice) argument
311 u_getPropertyValueEnum(UProperty property, const char* alias) argument
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dppucd.cpp38 PropertyNames::getPropertyValueEnum(int32_t property, const char *name) const { argument
39 return u_getPropertyValueEnum((UProperty)property, name);
95 "property",
281 "error in preparsed UCD: mix of binary-property-no and "
282 "enum-property syntax '%s' on line %ld\n",
293 // Copy out the property name rather than modifying the field (writing a NUL).
302 // Ignore unknown property names.
316 // No binary value for a binary property.
318 "error in preparsed UCD: enum-property syntax '%s' "
319 "for binary property o
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dcorruption_test.cc177 std::string property; local
179 if (db_->GetProperty(name, &property) &&
180 sscanf(property.c_str(), "%d", &result) == 1) {
/external/chromium_org/ui/ozone/platform/dri/chromeos/
H A Dnative_display_delegate_dri.cc37 uint32_t GetContentProtectionValue(drmModePropertyRes* property, argument
47 for (int i = 0; i < property->count_enums; ++i)
48 if (name == property->enums[i].name)
228 LOG(ERROR) << "'" << kContentProtection << "' property doesn't exist.";
263 LOG(ERROR) << "'" << kContentProtection << "' property doesn't exist.";
/external/chromium_org/v8/test/cctest/
H A Dtest-accessors.cc101 static void GetIntValue(Local<String> property, argument
110 static void SetIntValue(Local<String> property, argument
401 // Use the throwing property setter/getter in a loop to force
H A Dtest-log.cc377 static void Prop1Getter(v8::Local<v8::String> property, argument
381 static void Prop1Setter(v8::Local<v8::String> property, argument
386 static void Prop2Getter(v8::Local<v8::String> property, argument
/external/icu/icu4c/source/common/
H A Dpropname.cpp29 * Get the next non-ignorable ASCII character from a property name
52 * Get the next non-ignorable EBCDIC character from a property name
75 * Unicode property names and property value names are compared "loosely".
78 * For all property names, property value names, and for property values for
147 int32_t PropNameData::findProperty(int32_t property) { argument
154 if(property<start) {
157 if(property<limi
238 getPropertyName(int32_t property, int32_t nameChoice) argument
246 getPropertyValueName(int32_t property, int32_t value, int32_t nameChoice) argument
271 getPropertyValueEnum(int32_t property, const char *alias) argument
290 u_getPropertyName(UProperty property, UPropertyNameChoice nameChoice) argument
303 u_getPropertyValueName(UProperty property, int32_t value, UPropertyNameChoice nameChoice) argument
311 u_getPropertyValueEnum(UProperty property, const char* alias) argument
[all...]
/external/icu/icu4c/source/tools/toolutil/
H A Dppucd.cpp38 PropertyNames::getPropertyValueEnum(int32_t property, const char *name) const { argument
39 return u_getPropertyValueEnum((UProperty)property, name);
95 "property",
281 "error in preparsed UCD: mix of binary-property-no and "
282 "enum-property syntax '%s' on line %ld\n",
293 // Copy out the property name rather than modifying the field (writing a NUL).
302 // Ignore unknown property names.
316 // No binary value for a binary property.
318 "error in preparsed UCD: enum-property syntax '%s' "
319 "for binary property o
[all...]
/external/kernel-headers/original/uapi/mtd/
H A Dubi-user.h130 * Set an UBI volume property
133 * To set an UBI volume property the %UBI_IOCSETPROP ioctl command should be
135 * passed. The object describes which property should be set, and to which value
191 /* Set an UBI volume property */
213 * UBI set volume property ioctl constants.
412 * property.
413 * @property: property to set (%UBI_VOL_PROP_DIRECT_WRITE)
418 __u8 property; member in struct:ubi_set_vol_prop_req

Completed in 1015 milliseconds

1234567891011>>