Home
last modified time | relevance | path

Searched refs:property_value (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/base/win/
Dwin_util.cc38 const base::win::ScopedPropVariant& property_value) { in SetPropVariantValueForPropertyStore() argument
41 HRESULT result = property_store->SetValue(property_key, property_value.get()); in SetPropVariantValueForPropertyStore()
144 ScopedPropVariant property_value; in SetBooleanValueForPropertyStore() local
146 property_value.Receive()))) { in SetBooleanValueForPropertyStore()
152 property_value); in SetBooleanValueForPropertyStore()
158 ScopedPropVariant property_value; in SetStringValueForPropertyStore() local
160 property_value.Receive()))) { in SetStringValueForPropertyStore()
166 property_value); in SetStringValueForPropertyStore()
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
Dlinuxdeviceinfo.cc121 const char* property_value = NULL; in GetUsbProperty() local
142 property_value = libudev_context->instance()-> in GetUsbProperty()
147 if (!property_value) { in GetUsbProperty()
150 property->assign(property_value); in GetUsbProperty()
/external/skia/tools/
Dsvn.py160 def SetProperty(self, filenames, property_name, property_value): argument
169 [SVN, 'propset', property_name, property_value] + filenames)
172 property_name, property_value): argument
183 self.SetProperty(matching_files, property_name, property_value)
/external/chromium_org/chrome/browser/chromeos/display/
Ddisplay_preferences.cc194 scoped_ptr<base::DictionaryValue> property_value( in StoreCurrentDisplayProperties() local
196 property_value->SetInteger("rotation", static_cast<int>(info.rotation())); in StoreCurrentDisplayProperties()
197 property_value->SetInteger( in StoreCurrentDisplayProperties()
203 property_value->SetInteger("width", resolution.width()); in StoreCurrentDisplayProperties()
204 property_value->SetInteger("height", resolution.height()); in StoreCurrentDisplayProperties()
208 InsetsToValue(info.overscan_insets_in_dip(), property_value.get()); in StoreCurrentDisplayProperties()
209 pref_data->Set(base::Int64ToString(id), property_value.release()); in StoreCurrentDisplayProperties()
/external/chromium/base/win/
Dwin_util.cc112 PROPVARIANT property_value; in SetAppIdForPropertyStore() local
113 if (FAILED(InitPropVariantFromString(app_id, &property_value))) in SetAppIdForPropertyStore()
117 property_value); in SetAppIdForPropertyStore()
121 PropVariantClear(&property_value); in SetAppIdForPropertyStore()
/external/chromium_org/v8/src/
Dd8.js1290 var property_value = value.propertyValue(i);
1291 if (property_value instanceof ProtocolReference) {
1294 if (property_value && property_value.type()) {
1295 result += property_value.type();
1301 result += formatHandleReference_(property_value);
2121 var property_value = object[key];
2125 switch (typeof property_value) {
2127 if (IS_NULL(property_value)) {
2129 } else if (typeof property_value.toJSONProtocol == 'function') {
2130 property_value_json = property_value.toJSONProtocol(true);
[all …]
/external/v8/src/
Dd8.js1648 var property_value = value.propertyValue(i);
1649 if (property_value instanceof ProtocolReference) {
1652 if (property_value && property_value.type()) {
1653 result += property_value.type();
1659 result += formatHandleReference_(property_value);
2738 var property_value = object[key];
2742 switch (typeof property_value) {
2744 if (property_value === null) {
2746 } else if (typeof property_value.toJSONProtocol == 'function') {
2747 property_value_json = property_value.toJSONProtocol(true);
[all …]
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
Djson_manifest.cc291 Json::Value property_value = dictionary[property_name]; in IsValidISADictionary() local
303 !IsValidUrlSpec(property_value, property_name, parent_key, in IsValidISADictionary()
307 !IsValidPnaclTranslateSpec(property_value, property_name, parent_key, in IsValidISADictionary()
311 !IsValidUrlSpec(property_value, property_name, parent_key, in IsValidISADictionary()
323 if (!IsValidUrlSpec(property_value, property_name, parent_key, in IsValidISADictionary()
/external/chromium_org/win8/metro_driver/ime/
Dtext_store.cc778 TF_PROPERTYVAL property_value; in GetCompositionStatus() local
782 while (enum_prop_value->Next(1, &property_value, NULL) == S_OK) { in GetCompositionStatus()
783 if (IsEqualGUID(property_value.guidId, GUID_PROP_COMPOSING)) { in GetCompositionStatus()
784 is_composition = (property_value.varValue.lVal == TRUE); in GetCompositionStatus()
785 } else if (IsEqualGUID(property_value.guidId, GUID_PROP_ATTRIBUTE)) { in GetCompositionStatus()
787 static_cast<TfGuidAtom>(property_value.varValue.lVal); in GetCompositionStatus()
791 VariantClear(&property_value.varValue); in GetCompositionStatus()
/external/chromium_org/ui/base/ime/win/
Dtsf_text_store.cc789 TF_PROPERTYVAL property_value; in GetCompositionStatus() local
793 while (enum_prop_value->Next(1, &property_value, NULL) == S_OK) { in GetCompositionStatus()
794 if (IsEqualGUID(property_value.guidId, GUID_PROP_COMPOSING)) { in GetCompositionStatus()
795 is_composition = (property_value.varValue.lVal == TRUE); in GetCompositionStatus()
796 } else if (IsEqualGUID(property_value.guidId, GUID_PROP_ATTRIBUTE)) { in GetCompositionStatus()
798 static_cast<TfGuidAtom>(property_value.varValue.lVal); in GetCompositionStatus()
802 VariantClear(&property_value.varValue); in GetCompositionStatus()
/external/chromium_org/extensions/common/
Dextension_api.cc71 const std::string& property_value) { in FindListItem() argument
75 << property_value << "/" << property_name; in FindListItem()
77 if (item->GetString(property_name, &value) && value == property_value) in FindListItem()
/external/chromium_org/chrome/test/chromedriver/
Delement_commands.cc459 std::string property_value; in ExecuteGetElementValueOfCSSProperty() local
461 session, web_view, element_id, property_name, &property_value); in ExecuteGetElementValueOfCSSProperty()
464 value->reset(new base::StringValue(property_value)); in ExecuteGetElementValueOfCSSProperty()
Delement_util.h74 std::string* property_value);
Delement_util.cc408 std::string* property_value) { in GetElementEffectiveStyle() argument
410 element_id, property_name, property_value); in GetElementEffectiveStyle()
/external/llvm/docs/
DLLVMBuild.rst121 property_name = property_value