Home | History | Annotate | Download | only in cfcpp

Lines Matching refs:can_create

38     bool    AddValue(CFStringRef key, const void *value, bool can_create = false);
39 bool SetValue(CFStringRef key, const void *value, bool can_create = false);
40 bool AddValueSInt8(CFStringRef key, int8_t value, bool can_create = false);
41 bool SetValueSInt8(CFStringRef key, int8_t value, bool can_create = false);
42 bool AddValueSInt16(CFStringRef key, int16_t value, bool can_create = false);
43 bool SetValueSInt16(CFStringRef key, int16_t value, bool can_create = false);
44 bool AddValueSInt32(CFStringRef key, int32_t value, bool can_create = false);
45 bool SetValueSInt32(CFStringRef key, int32_t value, bool can_create = false);
46 bool AddValueSInt64(CFStringRef key, int64_t value, bool can_create = false);
47 bool SetValueSInt64(CFStringRef key, int64_t value, bool can_create = false);
48 bool AddValueUInt8(CFStringRef key, uint8_t value, bool can_create = false);
49 bool SetValueUInt8(CFStringRef key, uint8_t value, bool can_create = false);
50 bool AddValueUInt16(CFStringRef key, uint16_t value, bool can_create = false);
51 bool SetValueUInt16(CFStringRef key, uint16_t value, bool can_create = false);
52 bool AddValueUInt32(CFStringRef key, uint32_t value, bool can_create = false);
53 bool SetValueUInt32(CFStringRef key, uint32_t value, bool can_create = false);
54 bool AddValueUInt64(CFStringRef key, uint64_t value, bool can_create = false);
55 bool SetValueUInt64(CFStringRef key, uint64_t value, bool can_create = false);
56 bool AddValueDouble(CFStringRef key, double value, bool can_create = false);
57 bool SetValueDouble(CFStringRef key, double value, bool can_create = false);
58 bool AddValueCString(CFStringRef key, const char *cstr, bool can_create = false);
59 bool SetValueCString(CFStringRef key, const char *cstr, bool can_create = false);
63 CFMutableDictionaryRef Dictionary(bool can_create);