Searched refs:unicode (Results 1 - 25 of 33) sorted by relevance

12

/vbox/src/VBox/Frontends/VirtualBox/src/platform/darwin/
H A DVBoxCocoaHelper.h36 return [reinterpret_cast<const NSString *>(CFStringCreateWithCharacters (0, reinterpret_cast<const UniChar *> (aString.unicode()),
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dwined3d_main.c47 BOOL unicode; member in struct:wined3d_wndproc
439 BOOL unicode; local
453 unicode = entry->unicode;
458 return device_process_message(device, window, unicode, message, wparam, lparam, proc);
459 if (unicode)
498 entry->unicode = IsWindowUnicode(window);
502 if (entry->unicode)
527 if (entry->unicode)
/vbox/src/libs/xpcom18a4/python/test/
H A Dtest_isupports_primitives.py75 # An extended character in unicode tests can't hurt!
141 self.failUnlessEqual(unicode(ob), ImplicitSupportsUnicode.test_data)
145 self.failUnlessEqual(unicode(ob), ExplicitSupportsUnicode.test_data)
192 self.failUnlessEqual(type(primitives.GetPrimitive(ob)), unicode)
H A Dtest_test_component.py103 test_attribute(ob, attr_name, expected_init, u"normal unicode value")
372 test_method(c.UpOctetArray, (unicode(val),), val.upper())
/vbox/src/VBox/ValidationKit/testmanager/webui/
H A Dwuicontentbase.py214 return unicode(sTs).replace('-', u'\u2011').replace(' ', u'\u00a0');
248 else unicode(i + iBase)
498 sContent = unicode(oXcpt)
538 sActionLinks = '<p>%s</p>' % (' '.join(unicode(oLink) for oLink in aoActions));
621 sRow += webutils.escapeElem(unicode(oElement));
626 sRow += webutils.escapeElem(unicode(aoValues[i]));
769 sTitle += ' (page ' + unicode(self._iPage + 1) + ')'
771 sTitle += ' as per ' + unicode(self._tsEffectiveDate); ## @todo shorten this.
816 % (webutils.escapeAttr(self._sCheckboxName), webutils.escapeAttr(unicode(sValue))));
847 % (webutils.escapeAttr(unicode(oValu
[all...]
/vbox/src/libs/xpcom18a4/xpcom/MoreFiles/
H A DFSCopyObject.c321 BlockMoveData(copyName, destName.unicode, nameLength * sizeof(UniChar));
575 osErr = FSCreateFileUnicode(destDir, destName->length, destName->unicode, kFSCatInfoSettableInfo, sourceCatInfo, &dest, NULL);
710 filterPtr->fileName.unicode, kFSCatInfoSettableInfo,
948 osErr = FSOpenFork(dest, dataFork->forkName.length, dataFork->forkName.unicode, fsWrPerm, &dataFork->forkDestRefNum);
950 osErr = FSOpenFork(dest, rsrcFork->forkName.length, rsrcFork->forkName.unicode, fsWrPerm, &rsrcFork->forkDestRefNum);
965 osErr = FSCreateFork(dest, otherForks[thisForkIndex].forkName.length, otherForks[thisForkIndex].forkName.unicode);
975 osErr = FSOpenFork(dest, otherForks[thisForkIndex].forkName.length, otherForks[thisForkIndex].forkName.unicode, fsWrPerm, &otherForks[thisForkIndex].forkDestRefNum);
1006 osErr = FSCreateFork(dest, sourceFork->forkName.length, sourceFork->forkName.unicode);
1029 osErr = FSOpenFork(dest, sourceFork->forkName.length, sourceFork->forkName.unicode, fsWrPerm, &destRef);
1035 osErr = FSOpenFork(source, sourceFork->forkName.length, sourceFork->forkName.unicode, fsRdPer
[all...]
H A DMoreFilesX.c636 sizeof(unicodeName->unicode), /* output buffer size in bytes */
637 &pascalCharsRead, &unicodeByteLength, unicodeName->unicode);
1392 result = FSRenameUnicode(ref, uniqueName.length, uniqueName.unicode, kTextEncodingUnknown, newRef);
1429 verify_noerr(FSRenameUnicode(newRef, originalName.length, originalName.unicode, originalTextEncodingHint, newRef));
1839 pb.name = uniqueName->unicode;
1852 uniqueName->unicode[i] = hexStr[((*startSeed >> ((7-i)*4)) & 0xf)];
1979 result = FSRenameUnicode(&sourceCurrentRef, sourceUniqueName.length, sourceUniqueName.unicode, kTextEncodingUnknown, newSourceRef);
1984 result = FSRenameUnicode(&destCurrentRef, destUniqueName.length, destUniqueName.unicode, kTextEncodingUnknown, newDestRef);
2017 result = FSRenameUnicode(&sourceCurrentRef, destName.length, destName.unicode, destCatalogInfo.textEncodingHint, newSourceRef);
2022 result = FSRenameUnicode(&destCurrentRef, sourceName.length, sourceName.unicode, sourceCatalogInf
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dtchar.h60 # define WINE_tchar_routine(std,mbcs,unicode) std
63 # define WINE_tchar_routine(std,mbcs,unicode) mbcs
67 # define WINE_tchar_routine(std,mbcs,unicode) unicode
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dtchar.h60 # define WINE_tchar_routine(std,mbcs,unicode) std
63 # define WINE_tchar_routine(std,mbcs,unicode) mbcs
67 # define WINE_tchar_routine(std,mbcs,unicode) unicode
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/
H A Dfsw_hfs.c704 fsw_memdup(&file_name->data, &cat_key->nodeName.unicode[0], 2*name_len);
836 p1 = &ckey1->nodeName.unicode[0];
837 p2 = &ckey2->nodeName.unicode[0];
887 p1 = &ckey1->nodeName.unicode[0];
888 p2 = &ckey2->nodeName.unicode[0];
1071 fsw_memcpy(catkey.nodeName.unicode, lookup_name->data, lookup_name->size);
1080 fsw_memcpy(catkey.nodeName.unicode, rec_name.data, rec_name.size);
1086 if (fsw_memeq(g_blacklist[i], catkey.nodeName.unicode, catkey.nodeName.length*2))
1097 catkey.nodeName.unicode,
/vbox/src/VBox/Main/glue/
H A Dvboxapi.py49 # If the file has an encoding, encode unicode with it.
50 if isinstance(fp, file) and isinstance(data, unicode) and fp.encoding is not None:
60 if isinstance(sep, unicode):
66 if isinstance(end, unicode):
74 if isinstance(arg, unicode):
78 newline = unicode("\n")
79 space = unicode(" ")
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DString.py799 if isinstance(String, unicode):
800 if len(unicode) == 0:
817 if isinstance(String, unicode):
/vbox/src/libs/xpcom18a4/python/server/
H A Dpolicy.py333 ("nsISupportsString", "__unicode__", unicode),
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIKeyboardHandler.cpp1176 /* Get the unicode string (if present). */
1592 fWasProcessed = actionPool()->processHotKey(QKeySequence((Qt::UNICODE_ACCEL + QChar(symbol).toUpper().unicode())));
1610 fWasProcessed = actionPool()->processHotKey(QKeySequence((Qt::UNICODE_ACCEL + qtSymbol.toUpper().unicode())));
1618 fWasProcessed = actionPool()->processHotKey(QKeySequence(Qt::UNICODE_ACCEL + QChar(pHotKey[0]).toUpper().unicode()));
H A DUIDnDDataObject_win.cpp347 pDropFiles->fWide = 1; /* We use unicode. Always. */
414 ? (void *)strText.unicode()
/vbox/src/VBox/ValidationKit/common/
H A Dutils.py1332 return unicode(sRet).replace(' ', u'\u00a0');
1351 sTmp = unicode(sText, errors='ignore') if isinstance(sText, str) else sText
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/
H A DString.py683 if isinstance(String, unicode):
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dtest.h45 #error wine/unicode.h should not be used in Wine tests
H A Dserver_protocol.h92 int unicode; member in struct:__anon14150::__anon14153
107 int unicode; member in struct:__anon14150::__anon14155
4108 int unicode; member in struct:set_hook_request
4152 int unicode; member in struct:start_hook_chain_reply
4192 int unicode; member in struct:get_hook_info_reply
/vbox/include/iprt/formats/
H A Dhfs.h236 RTUTF16 unicode[255]; member in struct:HFSUniStr255
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dtest.h45 #error wine/unicode.h should not be used in Wine tests
H A Dserver_protocol.h101 int unicode; member in struct:__anon1488::__anon1491
116 int unicode; member in struct:__anon1488::__anon1493
3823 int unicode; member in struct:set_hook_request
3866 int unicode; member in struct:start_hook_chain_reply
3905 int unicode; member in struct:get_hook_info_reply
/vbox/src/libs/xpcom18a4/python/client/
H A D__init__.py209 return unicode(str(self))
/vbox/src/VBox/ValidationKit/testmanager/core/
H A Ddb.py43 # Fix psycho unicode handling in psycopg2 with python 2.x.
311 sBound = oCursor.mogrify(unicode(sOperation), aoArgs);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DGenMake.py774 FileContent = unicode(FileContent, "utf-16")

Completed in 200 milliseconds

12