Searched refs:unichar (Results 1 - 25 of 56) sorted by relevance

123

/macosx-10.9.5/cxxfilt-11/cxxfilt/binutils/
H A Dwinduni.h35 typedef unsigned short unichar; typedef
50 PARAMS ((int *, unichar **, const char *));
54 extern void unicode_print PARAMS ((FILE *, const unichar *, int));
H A Dwinduni.c43 unicode_from_ascii (int *length, unichar **unicode, const char *ascii)
51 *unicode = ((unichar *) res_alloc ((len + 1) * sizeof (unichar)));
62 *unicode = ((unichar *) res_alloc (len * sizeof (unichar)));
80 unicode_print (FILE *e, const unichar *unicode, int length)
84 unichar ch;
H A Dresres.c61 static unichar *read_unistring PARAMS ((int *));
373 return sizeof (unichar) * (id->u.n.length + 1);
375 return sizeof (unichar) * 2;
434 unichar null_term = 0;
435 write_res_data (id->u.n.name, len * sizeof (unichar), 1);
465 unichar *id_s = NULL;
488 static unichar *
492 unichar *s;
493 unichar c;
494 unichar *
[all...]
H A Dwindres.h63 unichar *name;
299 unichar *caption;
303 unichar *font;
576 unichar *text;
625 const unichar *w;
645 unichar *string;
698 unichar *language;
706 unichar *key;
720 unichar *key;
722 unichar *valu
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/cocoa/
H A DKeyEventCocoa.h33 String keyIdentifierForCharCode(unichar charCode);
36 int windowsKeyCodeForCharCode(unichar charCode);
/macosx-10.9.5/WebKit-7537.78.2/mac/Misc/
H A DWebNSEventExtras.m33 -(BOOL)_web_isKeyEvent:(unichar)key
43 unichar c = [chars characterAtIndex:0];
52 const unichar deleteKey = NSDeleteCharacter;
53 const unichar deleteForwardKey = NSDeleteFunctionKey;
59 const unichar escapeKey = 0x001b;
70 const unichar enterKey = NSEnterCharacter;
71 const unichar returnKey = NSCarriageReturnCharacter;
77 const unichar tabKey = 0x0009;
78 const unichar shiftTabKey = 0x0019;
H A DWebNSEventExtras.h33 -(BOOL)_web_isKeyEvent:(unichar)key;
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-core/Modules/objc/
H A DOC_PythonString.h66 -(unichar)characterAtIndex:(NSUInteger)index;
67 -(void)getCharacters:(unichar *)buffer range:(NSRange)aRange;
H A DOC_PythonUnicode.h70 -(unichar)characterAtIndex:(NSUInteger)index;
71 -(void)getCharacters:(unichar *)buffer range:(NSRange)aRange;
H A Dunicode-object.m214 * that can only be done when sizeof(unichar) == Py_UNICODE_SIZE.
231 // XXX - I don't know how to get gcc to let me use sizeof(unichar)
249 [value getCharacters:(unichar *)PyUnicode_AS_UNICODE(result)];
253 unichar* volatile characters = NULL;
258 characters = PyMem_Malloc(sizeof(unichar) * length);
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/
H A DOC_PythonString.h66 -(unichar)characterAtIndex:(NSUInteger)index;
67 -(void)getCharacters:(unichar *)buffer range:(NSRange)aRange;
H A DOC_PythonUnicode.h70 -(unichar)characterAtIndex:(NSUInteger)index;
71 -(void)getCharacters:(unichar *)buffer range:(NSRange)aRange;
H A Dunicode-object.m213 * that can only be done when sizeof(unichar) == Py_UNICODE_SIZE.
250 [value getCharacters:(unichar *)PyUnicode_AS_UNICODE(result)];
255 unichar* volatile characters = NULL;
260 characters = PyMem_Malloc(sizeof(unichar) * length);
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebTextIterator.h66 - (const unichar *)currentTextPointer;
H A DWebTextIterator.mm93 - (const unichar *)currentTextPointer
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/API/mac/
H A DWKDOMTextIterator.h43 @property (readonly) const unichar *currentTextPointer;
H A DWKDOMTextIterator.mm71 - (const unichar *)currentTextPointer
/macosx-10.9.5/WebCore-7537.78.1/platform/text/mac/
H A DTextBoundaries.mm35 NSString* string = [[NSString alloc] initWithCharactersNoCopy:const_cast<unichar*>(chars)
47 NSString* string = [[NSString alloc] initWithCharactersNoCopy:const_cast<unichar*>(chars)
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DWebNSAttributedStringExtras.mm44 unichar chars[2];
/macosx-10.9.5/file-46/file/src/
H A Dencoding.c47 private int looks_ascii(const unsigned char *, size_t, unichar *, size_t *);
48 private int looks_utf8_with_BOM(const unsigned char *, size_t, unichar *,
50 private int looks_ucs16(const unsigned char *, size_t, unichar *, size_t *);
51 private int looks_latin1(const unsigned char *, size_t, unichar *, size_t *);
52 private int looks_extended(const unsigned char *, size_t, unichar *, size_t *);
64 * the text converted into one-unichar-per-character Unicode in
68 file_encoding(struct magic_set *ms, const unsigned char *buf, size_t nbytes, unichar **ubuf, size_t *ulen, const char **code, const char **code_mime, const char **type)
80 if ((*ubuf = CAST(unichar *, calloc((size_t)1, mlen))) == NULL) {
221 looks_ascii(const unsigned char *buf, size_t nbytes, unichar *ubuf,
241 looks_latin1(const unsigned char *buf, size_t nbytes, unichar *ubu
[all...]
H A Dascmagic.c56 private int ascmatch(const unsigned char *, const unichar *, size_t);
57 private unsigned char *encode_utf8(unsigned char *, size_t, unichar *, size_t);
76 unichar *ubuf = NULL;
108 size_t nbytes, unichar *ubuf, size_t ulen, const char *code,
319 ascmatch(const unsigned char *s, const unichar *us, size_t ulen)
339 encode_utf8(unsigned char *buf, size_t len, unichar *ubuf, size_t ulen)
H A Dfile.h351 typedef unsigned long unichar; typedef
372 const unsigned char *, size_t, unichar *, size_t, const char *,
375 unichar **, size_t *, const char **, const char **, const char **);
398 protected int file_looks_utf8(const unsigned char *, size_t, unichar *,
/macosx-10.9.5/Security-55471.14.18/include/security_cryptkit/
H A DNSFEEPublicKey.m63 unichar *uc;
67 uc = fmalloc([uname length] * sizeof(unichar));
90 unichar *uc;
94 uc = fmalloc([uname length] * sizeof(unichar));
/macosx-10.9.5/Security-55471.14.18/libsecurity_cryptkit/lib/
H A DNSFEEPublicKey.m63 unichar *uc;
67 uc = fmalloc([uname length] * sizeof(unichar));
90 unichar *uc;
94 uc = fmalloc([uname length] * sizeof(unichar));
/macosx-10.9.5/WebCore-7537.78.1/platform/ios/
H A DKeyEventIOS.mm48 unichar c = CFStringGetCharacterAtIndex((CFStringRef)s, 0);

Completed in 393 milliseconds

123