Searched refs:property_name (Results 1 - 25 of 76) sorted by relevance

1234

/external/chromium_org/chrome/browser/chromeos/extensions/
H A Dinfo_private_api.cc50 std::string property_name; local
51 EXTENSION_FUNCTION_VALIDATE(list->GetString(i, &property_name));
52 Value* value = GetValue(property_name);
54 result->Set(property_name, value);
62 const std::string& property_name) {
63 if (property_name == kPropertyHWID) {
69 } else if (property_name == kPropertyHomeProvider) {
77 } else if (property_name == kPropertyInitialLocale) {
80 } else if (property_name == kPropertyBoard) {
86 } else if (property_name
61 GetValue( const std::string& property_name) argument
[all...]
H A Dinfo_private_api.h30 base::Value* GetValue(const std::string& property_name);
/external/chromium/chrome/browser/extensions/
H A Dextension_info_private_api_chromeos.cc36 std::string property_name; local
37 EXTENSION_FUNCTION_VALIDATE(list->GetString(i, &property_name));
39 if (GetValue(property_name, &value))
40 result->Set(property_name, Value::CreateStringValue(value));
47 bool GetChromeosInfoFunction::GetValue(const std::string& property_name, argument
50 if (property_name == kPropertyHWID) {
53 } else if (property_name == kPropertyHomeProvider) {
61 LOG(ERROR) << "Unknown property request: " << property_name;
H A Dextension_info_private_api_chromeos.h22 bool GetValue(const std::string& property_name, std::string* value);
/external/chromium_org/third_party/freetype/src/sfnt/
H A Dttbdf.h37 const char* property_name,
H A Dttbdf.c141 const char* property_name,
168 if ( size == NULL || property_name == NULL )
171 property_len = ft_strlen( property_name );
204 ft_strncmp( property_name,
/external/freetype/src/sfnt/
H A Dttbdf.h37 const char* property_name,
H A Dttbdf.c141 const char* property_name,
168 if ( size == NULL || property_name == NULL )
171 property_len = ft_strlen( property_name );
204 ft_strncmp( property_name,
/external/freetype/include/freetype/internal/services/
H A Dsvprop.h31 const char* property_name,
36 const char* property_name,
/external/freetype/src/autofit/
H A Dafmodule.c84 const char* property_name,
91 if ( !ft_strcmp( property_name, "fallback-script" ) )
100 else if ( !ft_strcmp( property_name, "increase-x-height" ) )
114 property_name ));
121 const char* property_name,
129 if ( !ft_strcmp( property_name, "glyph-to-script-map" ) )
141 else if ( !ft_strcmp( property_name, "fallback-script" ) )
150 else if ( !ft_strcmp( property_name, "increase-x-height" ) )
165 property_name ));
83 af_property_set( FT_Module ft_module, const char* property_name, const void* value ) argument
120 af_property_get( FT_Module ft_module, const char* property_name, void* value ) argument
/external/chromium_org/third_party/WebKit/Source/core/scripts/
H A Dmake_style_shorthands.py71 def _camelcase_property_name(self, property_name):
72 return re.sub(r'(^[^-])|-(.)', lambda match: (match.group(1) or match.group(2)).upper(), property_name)
74 def _create_css_property_name_enum_value(self, property_name):
75 return "CSSProperty" + property_name
H A Dmake_style_builder.py97 def _camelcase_property_name(property_name):
98 return re.sub(r'(^[^-])|-(.)', lambda match: (match.group(1) or match.group(2)).upper(), property_name)
/external/chromium_org/remoting/host/plugin/
H A Dhost_script_object.cc784 bool HostNPScriptObject::HasProperty(const std::string& property_name) { argument
785 VLOG(2) << "HasProperty " << property_name;
787 return (property_name == kAttrNameAccessCode ||
788 property_name == kAttrNameAccessCodeLifetime ||
789 property_name == kAttrNameClient ||
790 property_name == kAttrNameDaemonState ||
791 property_name == kAttrNameState ||
792 property_name == kAttrNameLogDebugInfo ||
793 property_name == kAttrNameOnNatTraversalPolicyChanged ||
794 property_name
808 GetProperty(const std::string& property_name, NPVariant* result) argument
884 SetProperty(const std::string& property_name, const NPVariant* value) argument
972 RemoveProperty(const std::string& property_name) argument
[all...]
/external/chromium_org/ppapi/native_client/src/trusted/plugin/
H A Djson_manifest.cc94 // Looks up |property_name| in the vector |valid_names| with length
95 // |valid_name_count|. Returns true if |property_name| is found.
96 bool FindMatchingProperty(const nacl::string& property_name, argument
100 if (property_name == valid_names[i]) {
131 nacl::string property_name = members[i]; local
132 if (!FindMatchingProperty(property_name,
139 container_key.c_str(), property_name.c_str()));
301 nacl::string property_name = members[i]; local
302 Json::Value property_value = dictionary[property_name];
304 if (FindMatchingProperty(property_name,
487 nacl::string property_name = members[i]; local
[all...]
/external/skia/tools/
H A Dsvn.py141 def SetProperty(self, filenames, property_name, property_value):
145 @param property_name property_name to set for each file
146 @param property_value what to set the property_name to
150 [SVN, 'propset', property_name, property_value] + filenames)
153 property_name, property_value):
158 @param property_name property_name to set for each file
159 @param property_value what to set the property_name to
163 self.SetProperty(matching_files, property_name, property_valu
[all...]
/external/chromium_org/content/browser/geolocation/
H A Dwifi_data_provider_linux_unittest.cc145 std::string property_name; local
147 reader.PopString(&property_name)) {
182 std::string property_name; local
184 reader.PopString(&property_name)) {
188 if (property_name == "Ssid") {
194 } else if (property_name == "HwAddress") {
198 } else if (property_name == "Strength") {
202 } else if (property_name == "Frequency") {
H A Dnetwork_location_request.cc193 void AddString(const std::string& property_name, const std::string& value, argument
197 dict->SetString(property_name, value);
200 void AddInteger(const std::string& property_name, int value, argument
204 dict->SetInteger(property_name, value);
297 const std::string& property_name,
301 if (!object.Get(property_name, &value))
296 GetAsDouble(const base::DictionaryValue& object, const std::string& property_name, double* out) argument
/external/chromium_org/device/bluetooth/
H A Dbluetooth_adapter_chromeos.cc179 const std::string& property_name) {
187 if (property_name == properties->powered.name())
189 else if (property_name == properties->discovering.name())
230 const std::string& property_name) {
239 if (property_name == properties->bluetooth_class.name() ||
240 property_name == properties->address.name() ||
241 property_name == properties->alias.name() ||
242 property_name == properties->paired.name() ||
243 property_name == properties->trusted.name() ||
244 property_name
177 AdapterPropertyChanged( const dbus::ObjectPath& object_path, const std::string& property_name) argument
228 DevicePropertyChanged( const dbus::ObjectPath& object_path, const std::string& property_name) argument
262 InputPropertyChanged( const dbus::ObjectPath& object_path, const std::string& property_name) argument
[all...]
H A Dbluetooth_adapter_chromeos.h77 const std::string& property_name) OVERRIDE;
83 const std::string& property_name) OVERRIDE;
87 const std::string& property_name) OVERRIDE;
/external/chromium_org/chromeos/dbus/ibus/
H A Dibus_engine_service.h56 virtual void PropertyActivate(const std::string& property_name,
60 virtual void PropertyShow(const std::string& property_name) = 0;
63 virtual void PropertyHide(const std::string& property_name) = 0;
/external/chromium_org/content/renderer/pepper/
H A Dplugin_object.cc113 bool WrapperClass_HasProperty(NPObject* object, NPIdentifier property_name) { argument
114 NPObjectAccessorWithIdentifier accessor(object, property_name, true);
127 bool WrapperClass_GetProperty(NPObject* object, NPIdentifier property_name, argument
129 NPObjectAccessorWithIdentifier accessor(object, property_name, true);
140 bool WrapperClass_SetProperty(NPObject* object, NPIdentifier property_name, argument
142 NPObjectAccessorWithIdentifier accessor(object, property_name, true);
156 bool WrapperClass_RemoveProperty(NPObject* object, NPIdentifier property_name) { argument
157 NPObjectAccessorWithIdentifier accessor(object, property_name, true);
/external/freetype/include/freetype/
H A Dftmodapi.h294 * property_name ::
310 * If `module_name' isn't a valid module name, or `property_name'
342 const FT_String* property_name,
361 * property_name ::
376 * If `module_name' isn't a valid module name, or `property_name'
406 const FT_String* property_name,
/external/freetype/src/truetype/
H A Dttdriver.c63 const char* property_name,
70 if ( !ft_strcmp( property_name, "interpreter-version" ) )
86 property_name ));
93 const char* property_name,
102 if ( !ft_strcmp( property_name, "interpreter-version" ) )
113 property_name ));
62 tt_property_set( FT_Module module, const char* property_name, const void* value ) argument
92 tt_property_get( FT_Module module, const char* property_name, const void* value ) argument
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dinput_method_engine_ibus.h87 const std::string& property_name,
89 virtual void PropertyShow(const std::string& property_name) OVERRIDE;
90 virtual void PropertyHide(const std::string& property_name) OVERRIDE;
/external/chromium_org/ui/base/x/
H A Dx11_util.h165 // Return true if |window| has any property with |property_name|.
166 UI_EXPORT bool PropertyExists(XID window, const std::string& property_name);
183 UI_EXPORT bool GetIntProperty(XID window, const std::string& property_name,
185 UI_EXPORT bool GetXIDProperty(XID window, const std::string& property_name,
187 UI_EXPORT bool GetIntArrayProperty(XID window, const std::string& property_name,
190 const std::string& property_name,
193 XID window, const std::string& property_name, std::string* value);

Completed in 701 milliseconds

1234