Home | History | Annotate | Download | only in base

Lines Matching defs:converted

64   bool converted = false;
75 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint8));
76 if (converted) *i = static_cast<int>(sint8);
80 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint16));
81 if (converted) *i = static_cast<int>(sint16);
85 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint32));
86 if (converted) *i = static_cast<int>(sint32);
90 converted = CFNumberGetValue(cfn, ntype, static_cast<void*>(&sint64));
91 if (converted) *i = static_cast<int>(sint64);
95 converted = CFNumberGetValue(cfn, ntype,
97 if (converted) *i = static_cast<int>(float32);
101 converted = CFNumberGetValue(cfn, ntype,
103 if (converted) *i = static_cast<int>(float64);
107 converted = CFNumberGetValue(cfn, ntype,
109 if (converted) *i = static_cast<int>(charvalue);
113 converted = CFNumberGetValue(cfn, ntype,
115 if (converted) *i = static_cast<int>(shortvalue);
119 converted = CFNumberGetValue(cfn, ntype,
121 if (converted) *i = static_cast<int>(intvalue);
125 converted = CFNumberGetValue(cfn, ntype,
127 if (converted) *i = static_cast<int>(longvalue);
131 converted = CFNumberGetValue(cfn, ntype,
133 if (converted) *i = static_cast<int>(llvalue);
137 converted = CFNumberGetValue(cfn, ntype,
139 if (converted) *i = static_cast<int>(floatvalue);
143 converted = CFNumberGetValue(cfn, ntype,
145 if (converted) *i = static_cast<int>(doublevalue);
149 converted = CFNumberGetValue(cfn, ntype,
151 if (converted) *i = static_cast<int>(cfindex);
160 return converted;
167 bool converted = p_convertCFNumberToInt(cfn, &asInt);
169 if (converted && (0 != asInt)) {