Lines Matching defs:get
26 The MIT License is about as close to Public Domain as a license can get, and is
743 // TODO: Help the compiler do the div and mod at compile time or get rid of them.
1706 // TODO: Help the compiler do the div and mod at compile time or get rid of them.
3390 Value Value::get(ArrayIndex index, const Value& defaultValue) const {
3447 Value Value::get(char const* key, char const* end, Value const& defaultValue) const
3452 Value Value::get(char const* key, Value const& defaultValue) const
3454 return get(key, key + strlen(key), defaultValue);
3456 Value Value::get(std::string const& key, Value const& defaultValue) const
3458 return get(key.data(), key.data() + key.length(), defaultValue);
3523 Value Value::get(const CppTL::ConstString& key,
3525 return get(key.c_str(), key.end_c_str(), defaultValue);