Searched refs:converted (Results 1 - 25 of 81) sorted by relevance

1234

/macosx-10.10.1/ICU-531.30/icuSources/io/
H A Dsscanf.c39 int32_t converted; local
42 converted = u_vsscanf(buffer, patternSpecification, ap);
45 return converted;
54 int32_t converted; local
57 converted = u_vsscanf_u(buffer, patternSpecification, ap);
60 return converted;
68 int32_t converted; local
86 converted = u_vsscanf_u(buffer, pattern, ap);
93 return converted;
101 int32_t converted; local
[all...]
H A Duscanf.c40 int32_t converted; local
43 converted = u_vfscanf(f, patternSpecification, ap);
46 return converted;
55 int32_t converted; local
58 converted = u_vfscanf_u(f, patternSpecification, ap);
61 return converted;
69 int32_t converted; local
87 converted = u_vfscanf_u(f, pattern, ap);
94 return converted;
/macosx-10.10.1/Libc-1044.1.2/locale/
H A Drunedepreciated.c42 size_t converted = mbrtowc(&wc, string, n, NULL); local
45 switch (converted) {
67 *result = string + converted;
77 size_t converted = wcrtomb(buf, rune, NULL); local
79 if (converted == (size_t)-1) {
82 } else if (n >= converted) {
84 bcopy(buf, string, converted);
86 *result = string + converted;
89 return (converted == (size_t)-1 ? 0 : converted);
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/impl/
H A DRawSingleInput.java26 IdentityHashMap converted,
29 super(catalog, rawAccess, converted);
24 RawSingleInput(Catalog catalog, boolean rawAccess, IdentityHashMap converted, Object singleValue, Format declaredFormat) argument
H A DRawArrayInput.java29 IdentityHashMap converted,
32 super(catalog, rawAccess, converted);
27 RawArrayInput(Catalog catalog, boolean rawAccess, IdentityHashMap converted, RawObject raw, Format componentFormat) argument
H A DRawAbstractInput.java28 private IdentityHashMap converted; field in class:RawAbstractInput
32 IdentityHashMap converted) {
34 this.converted = converted;
89 if (converted != null) {
90 o2 = converted.get(o);
92 converted = new IdentityHashMap();
99 o = catalog.convertRawObject((RawObject) o, converted);
30 RawAbstractInput(Catalog catalog, boolean rawAccess, IdentityHashMap converted) argument
H A DRawComplexInput.java29 IdentityHashMap converted,
32 super(catalog, rawAccess, converted);
27 RawComplexInput(Catalog catalog, boolean rawAccess, IdentityHashMap converted, FieldInfo[] fields, RawObject[] objects) argument
H A DCatalog.java93 Object convertRawObject(RawObject o, IdentityHashMap converted); argument
H A DPrimitiveArrayFormat.java106 IdentityHashMap converted) {
108 (catalog, rawAccess, converted, rawObject, componentFormat);
110 converted.put(rawObject, a);
103 convertRawObject(Catalog catalog, boolean rawAccess, RawObject rawObject, IdentityHashMap converted) argument
H A DObjectArrayFormat.java144 IdentityHashMap converted) {
146 (catalog, rawAccess, converted, rawObject, useComponentFormat);
148 converted.put(rawObject, a);
141 convertRawObject(Catalog catalog, boolean rawAccess, RawObject rawObject, IdentityHashMap converted) argument
H A DProxiedFormat.java123 IdentityHashMap converted) {
125 (catalog, rawAccess, rawObject, converted);
127 converted.put(rawObject, o);
120 convertRawObject(Catalog catalog, boolean rawAccess, RawObject rawObject, IdentityHashMap converted) argument
H A DReadOnlyCatalog.java80 public Object convertRawObject(RawObject o, IdentityHashMap converted) { argument
H A DEnumFormat.java120 IdentityHashMap converted) {
125 converted.put(rawObject, o);
117 convertRawObject(Catalog catalog, boolean rawAccess, RawObject rawObject, IdentityHashMap converted) argument
H A DCompositeKeyFormat.java226 IdentityHashMap converted) {
248 (catalog, rawAccess, converted, myFields, objects);
250 converted.put(rawObject, o);
223 convertRawObject(Catalog catalog, boolean rawAccess, RawObject rawObject, IdentityHashMap converted) argument
/macosx-10.10.1/Security-57031.1.35/Security/utilities/src/
H A Dder_string.c67 CFIndex converted = CFStringGetBytes(str, CFRangeMake(0, str_length), kCFStringEncodingUTF8, 0, false, NULL, maximum, &encodedLen); local
69 return ccder_sizeof(CCDER_UTF8_STRING, (converted == str_length) ? encodedLen : 0);
85 CFIndex converted = CFStringGetBytes(string, CFRangeMake(0, str_length), kCFStringEncodingUTF8, 0, false, buffer, der_space, &bytes_used); local
86 if (converted != str_length){
/macosx-10.10.1/Security-57031.1.35/Security/utilities/utilities/
H A Dder_string.c67 CFIndex converted = CFStringGetBytes(str, CFRangeMake(0, str_length), kCFStringEncodingUTF8, 0, false, NULL, maximum, &encodedLen); local
69 return ccder_sizeof(CCDER_UTF8_STRING, (converted == str_length) ? encodedLen : 0);
85 CFIndex converted = CFStringGetBytes(string, CFRangeMake(0, str_length), kCFStringEncodingUTF8, 0, false, buffer, der_space, &bytes_used); local
86 if (converted != str_length){
/macosx-10.10.1/nano-12/src/
H A Dwinio.c1896 /* The length of memory allocated for converted. */
1897 char *converted; local
1900 /* Current position in converted. */
1933 converted = charalloc(alloc_len);
1952 converted[index++] = ctrl_buf_mb[i];
1964 converted[index++] = ' ';
1968 converted[index++] = ' ';
1984 converted = charealloc(converted, alloc_len);
1994 converted[inde
2427 edit_draw(const filestruct *fileptr, const char *converted, int line, size_t start) argument
2770 char *converted; local
[all...]
/macosx-10.10.1/iodbc-42.5/iodbc/iodbcinst/
H A Dunicode.c557 * converted - number of converted symbols from *wstr
567 u_short * converted)
611 if (converted)
612 *converted = (u_short) _converted;
628 if (converted)
629 *converted = (u_short) _converted;
724 * converted - number of converted bytes from *ustr
734 int * converted)
562 wcsntoutf8( SQLWCHAR * wstr, SQLCHAR * ustr, size_t wlen, size_t size, u_short * converted) argument
729 utf8ntowcs( SQLCHAR * ustr, SQLWCHAR * wstr, size_t ulen, size_t size, int * converted) argument
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dlmenu.el166 converted
170 (setq converted (cons nil converted))
174 (setq converted
176 converted))))
178 (setq choice (x-popup-dialog t (cons name (nreverse converted))))
/macosx-10.10.1/CPANInternal-159.1/Template-Toolkit-2.25/lib/Template/Plugin/
H A DDumper.pm132 characters E<lt>, E<gt> and E<amp> converted to their equivalent HTML
133 entities and newlines converted to E<lt>brE<gt>.
/macosx-10.10.1/ruby-106/ruby/test/rdoc/
H A Dtest_rdoc_markup_formatter.rb143 converted = @to.convert '<code>AAA</code>'
145 assert_equal '<code>AAA</code>', converted
/macosx-10.10.1/vim-55/runtime/ftplugin/
H A Dmsmessages.vim27 " converted to C code and variants on "; //" which will remain comments
/macosx-10.10.1/Security-57031.1.35/Security/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.10.1/Security-57031.1.35/Security/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.10.1/apr-32/apr-util/apr-util/xlate/
H A Dxlate.c391 apr_size_t converted = to_convert; local
400 *inbytes_left -= converted;
401 *outbytes_left -= converted;

Completed in 290 milliseconds

1234