Lines Matching refs:get
223 int32_t get(const C2FieldSupportedValues::Primitive &p, int32_t*) { in get() function
226 int64_t get(const C2FieldSupportedValues::Primitive &p, int64_t*) { in get() function
229 uint32_t get(const C2FieldSupportedValues::Primitive &p, uint32_t*) { in get() function
232 uint64_t get(const C2FieldSupportedValues::Primitive &p, uint64_t*) { in get() function
235 float get(const C2FieldSupportedValues::Primitive &p, float*) { in get() function
242 typename std::underlying_type<E>::type get(const C2FieldSupportedValues::Primitive &p, E*) { in get() function
244 return getter<u>().get(p, (u*)0); in get()
259 typename lax_underlying_type<E>::type get( in get() function
261 return getter<E>().get(p, (E*)0); in get()
271 cout << ".range(" << get(sv.range.min, t); in dumpFSV()
272 if (get(sv.range.step, t) != std::is_integral<T>::value) { in dumpFSV()
273 cout << ":" << get(sv.range.step, t); in dumpFSV()
275 if (get(sv.range.num, t) != 1 || get(sv.range.denom, t) != 1) { in dumpFSV()
276 cout << ":" << get(sv.range.num, t) << "/" << get(sv.range.denom, t); in dumpFSV()
278 cout << get(sv.range.max, t) << ")"; in dumpFSV()
284 cout << sep << get(p, t); in dumpFSV()
364 case C2FieldDescriptor::INT32: cout << get(p.second, (int32_t *)0); break; in dumpStruct()
365 case C2FieldDescriptor::INT64: cout << get(p.second, (int64_t *)0); break; in dumpStruct()
366 case C2FieldDescriptor::UINT32: cout << get(p.second, (uint32_t *)0); break; in dumpStruct()
367 case C2FieldDescriptor::UINT64: cout << get(p.second, (uint64_t *)0); break; in dumpStruct()
368 case C2FieldDescriptor::FLOAT: cout << get(p.second, (float *)0); break; in dumpStruct()