HomeSort by relevance Sort by last modified time
    Searched refs:property_name (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/chromium_org/chrome/browser/chromeos/extensions/
info_private_api.cc 50 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 == kPropertyOwner)
    [all...]
info_private_api.h 30 base::Value* GetValue(const std::string& property_name);
  /external/chromium/chrome/browser/extensions/
extension_info_private_api_chromeos.cc 36 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,
50 if (property_name == kPropertyHWID) {
53 } else if (property_name == kPropertyHomeProvider) {
61 LOG(ERROR) << "Unknown property request: " << property_name;
extension_info_private_api_chromeos.h 22 bool GetValue(const std::string& property_name, std::string* value);
  /external/chromium_org/third_party/freetype/src/sfnt/
ttbdf.h 37 const char* property_name,
ttbdf.c 141 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/
ttbdf.h 37 const char* property_name,
ttbdf.c 141 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/
svprop.h 31 const char* property_name,
36 const char* property_name,
  /external/freetype/src/autofit/
afmodule.c 84 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 ));
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
make_style_shorthands.py 71 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
  /external/chromium_org/remoting/host/plugin/
host_script_object.cc 784 bool HostNPScriptObject::HasProperty(const std::string& property_name) {
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 == kAttrNameOnStateChanged |
    [all...]
  /external/chromium_org/chromeos/dbus/ibus/
ibus_engine_service.h 56 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/ppapi/native_client/src/trusted/plugin/
json_manifest.cc 94 // 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,
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/chromium_org/content/browser/geolocation/
wifi_data_provider_linux_unittest.cc 145 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") {
  /external/chromium_org/device/bluetooth/
bluetooth_adapter_chromeos.cc 179 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 == properties->connected.name() |
    [all...]
bluetooth_adapter_chromeos.h 77 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/
bluetooth_input_client.h 55 // change in value of the property named |property_name| of its Input
58 const std::string& property_name) {}
fake_bluetooth_input_client.h 52 const std::string& property_name);
  /external/skia/tools/
svn.py 141 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_value
    [all...]
  /external/chromium_org/content/renderer/pepper/
plugin_object.cc 113 bool WrapperClass_HasProperty(NPObject* object, NPIdentifier property_name) {
114 NPObjectAccessorWithIdentifier accessor(object, property_name, true);
127 bool WrapperClass_GetProperty(NPObject* object, NPIdentifier property_name,
129 NPObjectAccessorWithIdentifier accessor(object, property_name, true);
140 bool WrapperClass_SetProperty(NPObject* object, NPIdentifier property_name,
142 NPObjectAccessorWithIdentifier accessor(object, property_name, true);
156 bool WrapperClass_RemoveProperty(NPObject* object, NPIdentifier property_name) {
157 NPObjectAccessorWithIdentifier accessor(object, property_name, true);
  /external/freetype/include/freetype/
ftmodapi.h 294 * 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/chromium_org/ui/base/x/
x11_util.h 165 // 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);
  /external/freetype/src/truetype/
ttdriver.c 63 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 ));
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_engine_ibus.h 87 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;

Completed in 442 milliseconds

1 2 3