Lines Matching defs:converted

47   bool converted = false;
58 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8));
59 if (converted) *i = static_cast<int>(sint8);
63 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16));
64 if (converted) *i = static_cast<int>(sint16);
68 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32));
69 if (converted) *i = static_cast<int>(sint32);
73 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64));
74 if (converted) *i = static_cast<int>(sint64);
78 converted = CFNumberGetValue(cfn, ntype,
80 if (converted) *i = static_cast<int>(float32);
84 converted = CFNumberGetValue(cfn, ntype,
86 if (converted) *i = static_cast<int>(float64);
90 converted = CFNumberGetValue(cfn, ntype,
92 if (converted) *i = static_cast<int>(charvalue);
96 converted = CFNumberGetValue(cfn, ntype,
98 if (converted) *i = static_cast<int>(shortvalue);
102 converted = CFNumberGetValue(cfn, ntype,
104 if (converted) *i = static_cast<int>(intvalue);
108 converted = CFNumberGetValue(cfn, ntype,
110 if (converted) *i = static_cast<int>(longvalue);
114 converted = CFNumberGetValue(cfn, ntype,
116 if (converted) *i = static_cast<int>(llvalue);
120 converted = CFNumberGetValue(cfn, ntype,
122 if (converted) *i = static_cast<int>(floatvalue);
126 converted = CFNumberGetValue(cfn, ntype,
128 if (converted) *i = static_cast<int>(doublevalue);
132 converted = CFNumberGetValue(cfn, ntype,
134 if (converted) *i = static_cast<int>(cfindex);
143 return converted;
150 bool converted = p_convertCFNumberToInt(cfn, &asInt);
152 if (converted && (0 != asInt)) {