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

1 2

  /hardware/ti/wlan/wl1271/platforms/os/common/inc/
osRgstry.h 47 TI_UINT32 DefaultValue;
  /external/webkit/Source/WebKit2/Shared/
WebPreferencesStore.cpp 37 #define DEFINE_KEY_GETTERS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) \
116 #define DEFINE_STRING_DEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) defaults.set(WebPreferencesKey::KeyLower##Key(), DefaultValue);
129 #define DEFINE_BOOL_DEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) defaults.set(WebPreferencesKey::KeyLower##Key(), DefaultValue);
142 #define DEFINE_UINT32_DEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) defaults.set(WebPreferencesKey::KeyLower##Key(), DefaultValue);
155 #define DEFINE_DOUBLE_DEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) defaults.set(WebPreferencesKey::KeyLower##Key(), DefaultValue);
WebPreferencesStore.h 37 // macro(KeyUpper, KeyLower, TypeNameUpper, TypeName, DefaultValue)
144 #define DECLARE_KEY_GETTERS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) const String& KeyLower##Key();
  /external/chromium/testing/gmock/test/
gmock-actions_test.cc 60 using testing::DefaultValue;
220 // Tests that DefaultValue<T>::IsSet() is false initially.
222 EXPECT_FALSE(DefaultValue<int>::IsSet());
223 EXPECT_FALSE(DefaultValue<const UserType>::IsSet());
226 // Tests that DefaultValue<T> can be set and then unset.
228 EXPECT_TRUE(DefaultValue<int>::Exists());
229 EXPECT_FALSE(DefaultValue<const UserType>::Exists());
231 DefaultValue<int>::Set(1);
232 DefaultValue<const UserType>::Set(UserType());
234 EXPECT_EQ(1, DefaultValue<int>::Get())
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPreferences.h 36 #define DECLARE_PREFERENCE_GETTER_AND_SETTERS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) \
64 #define DECLARE_PREFERENCE_GETTER_AND_SETTERS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) \
WebPreferences.cpp 88 #define DEFINE_PREFERENCE_GETTER_AND_SETTERS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) \
  /external/bluetooth/bluedroid/test/bluedroidtest/
bluedroidtest.c 247 uint32_t get_int(char **p, int DefaultValue)
263 return DefaultValue;
268 int get_signed_int(char **p, int DefaultValue)
290 return DefaultValue;
309 uint32_t get_hex(char **p, int DefaultValue)
332 return DefaultValue;
  /external/openfst/src/include/fst/
sparse-tuple-weight.h 89 Init(w.DefaultValue());
90 SetDefaultValue(w.DefaultValue());
125 Init(w.DefaultValue());
133 if (!DefaultValue().Member()) return false;
201 const W& DefaultValue() const { return default_; }
274 const W& v1_def = w1.DefaultValue();
275 const W& v2_def = w2.DefaultValue();
299 const W& v1_def = w1.DefaultValue();
300 const W& v2_def = w2.DefaultValue();
352 strm << w.DefaultValue();
    [all...]
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.h 101 string DefaultValue(const FieldDescriptor* field);
cpp_extension.cc 136 vars["default" ] = DefaultValue(descriptor_);
cpp_helpers.cc 243 string DefaultValue(const FieldDescriptor* field) {
cpp_primitive_field.cc 86 (*variables)["default"] = DefaultValue(descriptor);
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_helpers.h 121 string DefaultValue(const Params& params, const FieldDescriptor* field);
javamicro_enum_field.cc 62 (*variables)["default"] = DefaultValue(params, descriptor);
javamicro_helpers.cc 333 string DefaultValue(const Params& params, const FieldDescriptor* field) {
javamicro_primitive_field.cc 192 (*variables)["default"] = DefaultValue(params, descriptor);
  /external/protobuf/src/google/protobuf/compiler/java/
java_helpers.h 120 string DefaultValue(const FieldDescriptor* field);
java_enum_field.cc 62 (*variables)["default"] = DefaultValue(descriptor);
java_extension.cc 138 vars["default"] = descriptor_->is_repeated() ? "" : DefaultValue(descriptor_);
java_helpers.cc 261 string DefaultValue(const FieldDescriptor* field) {
java_primitive_field.cc 165 (*variables)["default"] = DefaultValue(descriptor);
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebPreferencesMac.mm 88 #define INITIALIZE_PREFERENCE_FROM_NSUSERDEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) \
  /external/chromium/testing/gmock/include/gmock/
gmock-actions.h 153 // The DefaultValue<T> class allows a user to specify the
159 // DefaultValue<T>::Set(foo);
161 class DefaultValue {
199 class DefaultValue<T&> {
231 // This specialization allows DefaultValue<void>::Get() to
234 class DefaultValue<void> {
242 const T* DefaultValue<T>::value_ = NULL;
246 T* DefaultValue<T&>::address_ = NULL;
    [all...]
gmock-spec-builders.h     [all...]
  /external/webkit/Source/WebKit2/UIProcess/cf/
WebPreferencesCF.cpp 101 #define INITIALIZE_PREFERENCE_FROM_NSUSERDEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) \

Completed in 300 milliseconds

1 2