Searched refs:converted (Results 1 - 25 of 123) sorted by last modified time

12345

/macosx-10.9.5/CF-855.17/
H A DCFUtilities.c719 Boolean converted = CFStringGetCString(str, buf, blen, kCFStringEncodingUTF8); local
722 if (converted && !(len <= 0 || (1 << 24) < len) && !(lev < ASL_LEVEL_EMERG || ASL_LEVEL_DEBUG < lev)) {
H A Dplconvert.c31 2. A file name to write a converted property list file to.
53 Boolean converted = CFStringGetCString(str, buf, blen, kCFStringEncodingUTF8); local
54 if (converted) {
/macosx-10.9.5/CF-855.17/Examples/
H A Dplconvert.c8 2. A file name to write a converted property list file to.
30 Boolean converted = CFStringGetCString(str, buf, blen, kCFStringEncodingUTF8); local
31 if (converted) {
/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/
H A DSCDPrivate.c74 CFIndex converted; local
84 converted = CFStringGetBytes(cfstr,
92 if (converted < len) {
93 /* if full string could not be converted */
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGSpeculativeJIT.cpp2224 JITCompiler::JumpList converted; local
2241 converted.append(m_jit.jump());
2254 converted.append(m_jit.jump());
2259 converted.link(&m_jit);
2270 JITCompiler::JumpList converted; local
2299 converted.append(m_jit.jump());
2303 converted.append(m_jit.jump());
2314 converted.append(m_jit.jump());
2319 converted.link(&m_jit);
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecItem.cpp94 Boolean converted = CFStringGetCString(desc, buffer, length, kCFStringEncodingUTF8); local
95 if (converted) {
424 Boolean converted = CFStringGetCString((CFStringRef) value, buffer, maxLength, kCFStringEncodingUTF8); local
425 if (converted) {
442 Boolean converted = CFStringGetCString((CFStringRef) value, buffer, maxLength, kCFStringEncodingUTF8); local
443 if (converted) {
471 Boolean converted = CFNumberGetValue((CFNumberRef) value, kCFNumberSInt32Type, buffer); local
472 if (converted) {
1747 /* If a string converted to an int isn't equal to the int printed as
3627 /* If a string converted t
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecItem.cpp94 Boolean converted = CFStringGetCString(desc, buffer, length, kCFStringEncodingUTF8); local
95 if (converted) {
424 Boolean converted = CFStringGetCString((CFStringRef) value, buffer, maxLength, kCFStringEncodingUTF8); local
425 if (converted) {
442 Boolean converted = CFStringGetCString((CFStringRef) value, buffer, maxLength, kCFStringEncodingUTF8); local
443 if (converted) {
471 Boolean converted = CFNumberGetValue((CFNumberRef) value, kCFNumberSInt32Type, buffer); local
472 if (converted) {
1747 /* If a string converted to an int isn't equal to the int printed as
3627 /* If a string converted t
[all...]
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DSecItem.cpp94 Boolean converted = CFStringGetCString(desc, buffer, length, kCFStringEncodingUTF8); local
95 if (converted) {
424 Boolean converted = CFStringGetCString((CFStringRef) value, buffer, maxLength, kCFStringEncodingUTF8); local
425 if (converted) {
442 Boolean converted = CFStringGetCString((CFStringRef) value, buffer, maxLength, kCFStringEncodingUTF8); local
443 if (converted) {
471 Boolean converted = CFNumberGetValue((CFNumberRef) value, kCFNumberSInt32Type, buffer); local
472 if (converted) {
1747 /* If a string converted to an int isn't equal to the int printed as
3627 /* If a string converted t
[all...]
/macosx-10.9.5/Security-55471.14.18/sec/Security/Regressions/secitem/
H A Dsi-26-applicationsigning.c195 CFIndex converted = CFStringGetBytes(line, range, kCFStringEncodingUTF8, 0, false, buf, sizeof(buf), &bytesUsed); local
197 range.length -= converted;
198 range.location += converted;
/macosx-10.9.5/Security-55471.14.18/utilities/src/
H A Dder_string.c51 CFIndex converted = CFStringGetBytes(str, CFRangeMake(0, str_length), kCFStringEncodingUTF8, 0, false, NULL, maximum, &encodedLen); local
53 return ccder_sizeof(CCDER_UTF8_STRING, (converted == str_length) ? encodedLen : 0);
69 CFIndex converted = CFStringGetBytes(string, CFRangeMake(0, str_length), kCFStringEncodingUTF8, 0, false, buffer, der_space, &bytes_used); local
70 if (converted != str_length){
/macosx-10.9.5/Security-55471.14.18/utilities/utilities/
H A Dder_string.c51 CFIndex converted = CFStringGetBytes(str, CFRangeMake(0, str_length), kCFStringEncodingUTF8, 0, false, NULL, maximum, &encodedLen); local
53 return ccder_sizeof(CCDER_UTF8_STRING, (converted == str_length) ? encodedLen : 0);
69 CFIndex converted = CFStringGetBytes(string, CFRangeMake(0, str_length), kCFStringEncodingUTF8, 0, false, buffer, der_space, &bytes_used); local
70 if (converted != str_length){
/macosx-10.9.5/Security-55471.14.18/libsecurity_ssl/sslViewer/
H A DprintCert.c39 CFIndex converted = CFStringGetBytes(string, range, kCFStringEncodingUTF8, 0, false, buf, sizeof(buf), &bytesUsed); local
41 range.length -= converted;
42 range.location += converted;
/macosx-10.9.5/Security-55471.14.18/regressions/test/
H A Dtestmore.c54 CFIndex converted = CFStringGetBytes(string, range, kCFStringEncodingUTF8, 0, false, buf, sizeof(buf), &bytesUsed); local
56 range.length -= converted;
57 range.location += converted;
/macosx-10.9.5/WebCore-7537.78.1/rendering/mathml/
H A DRenderMathMLFraction.cpp82 bool converted = false; local
83 int thicknessIntValue = thickness.toIntStrict(&converted);
84 if (converted)
/macosx-10.9.5/WebCore-7537.78.1/platform/text/win/
H A DLocaleWin.cpp234 static void commitLiteralToken(StringBuilder& literalBuffer, StringBuilder& converted) argument
238 DateTimeFormat::quoteAndAppendLiteral(literalBuffer.toString(), converted);
261 StringBuilder converted; local
289 commitLiteralToken(literalBuffer, converted);
294 converted.append(format, symbolStart, count);
297 converted.append(format, symbolStart, count);
299 converted.append("EEE");
301 converted.append("EEEE");
304 converted.append('G');
310 converted
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bridge/qt/
H A Dqt_runtime.cpp1073 bool converted = true; local
1075 for (unsigned i = 0; converted && i + 1 < static_cast<unsigned>(types.count()); ++i) {
1085 converted = false;
1089 qMatchDebug() << "Match: " << method.methodSignature() << (converted ? "converted":"failed to convert") << "distance " << matchDistance;
1091 if (converted) {
/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
H A Ddgutl.c262 hdrp = converted local rep of raw hdr
/macosx-10.9.5/SecurityTool-55115/
H A DcreateFVMaster.c245 Boolean converted = CFStringGetCString(theString, buffer, maxLength, kCFStringEncodingUTF8); local
246 if (!converted) {
/macosx-10.9.5/WebCore-7537.78.1/plugins/
H A DPluginPackage.cpp252 bool converted = false; local
253 unsigned major = majorMinorParts[0].toUInt(&converted);
254 if (converted)
258 bool converted = false; local
259 unsigned minor = majorMinorParts[1].toUInt(&converted);
260 if (converted)
/macosx-10.9.5/CPANInternal-140/Apache-DBI-1.11/lib/Apache/
H A DAuthDBI.pm1462 Default is 'on'. When set 'off', the entered userid is converted to lower case.
1463 Also the userid in the password select-statement is converted to lower case.
1467 Default is 'on'. When set 'off', the entered password is converted to lower
/macosx-10.9.5/CPANInternal-140/Data-UUID-1.218/
H A DUUID.pm93 Binary UUIDs can be converted to printable strings using following methods:
104 Conversly, string UUIDs can be converted back to binary form:
/macosx-10.9.5/CPANInternal-140/DateTime-Format-Pg-0.16007/lib/DateTime/Format/
H A DPg.pm458 return a time stamp converted for the server's local time zone.
/macosx-10.9.5/CPANInternal-140/JSON-2.53/lib/JSON/
H A DbackportPP.pm1778 Your data usually contains UNICODE strings and you want the converted data to be encoded
2250 converted into JSON string or number sequences, while references to arrays
2253 References to the integers C<0> and C<1> are converted into C<true> and C<false>.
2572 and the numeric can be optionally converted into L<Math::BigInt> and
/macosx-10.9.5/CPANInternal-140/JSON-2.53/lib/
H A DJSON.pm905 Your data usually contains UNICODE strings and you want the converted data to be encoded
1425 converted into JSON string or number sequences, while references to arrays
1428 References to the integers C<0> and C<1> are converted into C<true> and C<false>.
1766 and the numeric can be optionally converted into L<Math::BigInt> and
/macosx-10.9.5/CPANInternal-140/JSON-Any-1.29/lib/JSON/
H A DAny.pm482 Takes a single argument, a hashref to be converted into JSON.
543 Takes a single argument, a string of JSON text to be converted

Completed in 291 milliseconds

12345