Searched refs:lcid (Results 1 - 25 of 29) sorted by relevance

12

/macosx-10.9.5/xnu-2422.115.4/bsd/sys/
H A Dlctx.h18 setlcid(pid_t pid, pid_t lcid) argument
20 return (syscall(SYS_setlcid, pid, lcid));
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Dwinutil.h31 int32_t lcid; member in struct:Win32Utilities::LCIDRecord
H A Dwinnmtst.cpp132 static UnicodeString &getWindowsFormat(int32_t lcid, UBool currency, UnicodeString &appendTo, const wchar_t *fmt, ...) argument
187 result = GetCurrencyFormatW(lcid, 0, nBuffer, NULL, buffer, STACK_BUFFER_SIZE);
193 int newLength = GetCurrencyFormatW(lcid, 0, nBuffer, NULL, NULL, 0);
197 GetCurrencyFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
201 result = GetNumberFormatW(lcid, 0, nBuffer, NULL, buffer, STACK_BUFFER_SIZE);
207 int newLength = GetNumberFormatW(lcid, 0, nBuffer, NULL, NULL, 0);
211 GetNumberFormatW(lcid, 0, nBuffer, NULL, buffer, newLength);
229 static void testLocale(const char *localeID, int32_t lcid, NumberFormat *wnf, UBool currency, TestLog *log) argument
238 getWindowsFormat(lcid, currency, wdBuffer, L"%.16f", d);
240 getWindowsFormat(lcid, currenc
[all...]
H A Dwinutil.cpp53 sscanf(lpLocaleString, "%8x", &lcidRecords[lcidCount].lcid);
55 localeID = uprv_convertToPosix(lcidRecords[lcidCount].lcid, &status);
H A Dwindttst.cpp121 GetLocaleInfoW(lcidRecords[i].lcid, LOCALE_SLONGDATE, longDateFormat, 81);
122 GetLocaleInfoW(lcidRecords[i].lcid, LOCALE_STIMEFORMAT, longTimeFormat, 81);
123 GetLocaleInfoW(lcidRecords[i].lcid, LOCALE_RETURN_NUMBER|LOCALE_ICALENDARTYPE, (LPWSTR) calType, sizeof(int32_t));
134 wdLength = GetDateFormatW(lcidRecords[i].lcid, DATE_LONGDATE, &winNow, NULL, wdBuffer, ARRAY_SIZE(wdBuffer));
135 wtLength = GetTimeFormatW(lcidRecords[i].lcid, 0, &winNow, NULL, wtBuffer, ARRAY_SIZE(wtBuffer));
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Dwinnmfmt.cpp79 static void getNumberFormat(NUMBERFMTW *fmt, int32_t lcid) argument
83 GetLocaleInfoW(lcid, LOCALE_RETURN_NUMBER|LOCALE_IDIGITS, (LPWSTR) &fmt->NumDigits, sizeof(UINT));
84 GetLocaleInfoW(lcid, LOCALE_RETURN_NUMBER|LOCALE_ILZERO, (LPWSTR) &fmt->LeadingZero, sizeof(UINT));
86 GetLocaleInfoA(lcid, LOCALE_SGROUPING, buf, 10);
90 GetLocaleInfoW(lcid, LOCALE_SDECIMAL, fmt->lpDecimalSep, 6);
93 GetLocaleInfoW(lcid, LOCALE_STHOUSAND, fmt->lpThousandSep, 6);
95 GetLocaleInfoW(lcid, LOCALE_RETURN_NUMBER|LOCALE_INEGNUMBER, (LPWSTR) &fmt->NegativeOrder, sizeof(UINT));
106 static void getCurrencyFormat(CURRENCYFMTW *fmt, int32_t lcid) argument
110 GetLocaleInfoW(lcid, LOCALE_RETURN_NUMBER|LOCALE_ICURRDIGITS, (LPWSTR) &fmt->NumDigits, sizeof(UINT));
111 GetLocaleInfoW(lcid, LOCALE_RETURN_NUMBE
[all...]
/macosx-10.9.5/vim-53/src/
H A Dif_ole.h110 /* [in] */ LCID lcid,
118 /* [in] */ LCID lcid,
125 /* [in] */ LCID lcid,
172 #define IVim_GetTypeInfo(This,iTInfo,lcid,ppTInfo) \
173 (This)->lpVtbl -> GetTypeInfo(This,iTInfo,lcid,ppTInfo)
175 #define IVim_GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId) \
176 (This)->lpVtbl -> GetIDsOfNames(This,riid,rgszNames,cNames,lcid,rgDispId)
178 #define IVim_Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr) \
179 (This)->lpVtbl -> Invoke(This,dispIdMember,riid,lcid,wFlags,pDispParams,pVarResult,pExcepInfo,puArgErr)
H A Dif_ole.cpp50 WORD wVerMinor, LCID lcid, SYSKIND syskind);
604 tla->lcid, tla->syskind);
/macosx-10.9.5/libxslt-13/libxslt/libxslt/
H A Dxsltlocale.c48 xsltLocale lcid; member in struct:xsltRFC1766Info_s
62 if (xmlStrcmp(p->tag, languageTag) == 0) return p->lcid;
457 * @lcid: not used
464 xsltCountSupportedLocales(LPSTR lcid) { argument
465 (void) lcid;
472 * @lcid: not used
479 xsltIterateSupportedLocales(LPSTR lcid) { argument
486 k = sscanf(lcid, "%lx", (long*)&p->lcid);
489 k = GetLocaleInfoA(p->lcid, LOCALE_SISO639LANGNAM
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/tm/
H A Dtmlocale.c350 LCID lcid; local
358 lcid = li->lc->index;
359 nt = 2 * GetLocaleInfo(lcid, LOCALE_STIME, 0, 0) + 7; /* HH:MM:SS */
360 ns = 3 * GetLocaleInfo(lcid, LOCALE_SSHORTDATE, 0, 0);
361 nl = 3 * GetLocaleInfo(lcid, LOCALE_SLONGDATE, 0, 0);
364 n += GetLocaleInfo(lcid, map[i].native, 0, 0);
370 if (!(m = GetLocaleInfo(lcid, map[i].native, s, n)))
381 if (!GetLocaleInfo(lcid, LOCALE_ITIME, buf, sizeof(buf)))
384 if (!GetLocaleInfo(lcid, LOCALE_ITLZERO, buf, sizeof(buf)))
387 if (!GetLocaleInfo(lcid, LOCALE_STIM
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/text/win/
H A DLocaleWin.cpp144 LCID lcid = LCIDFromLocaleInternal(LOCALE_USER_DEFAULT, userDefaultLanguageCode, localeNameToLCID, String(locale)); local
145 if (!lcid)
146 lcid = LCIDFromLocaleInternal(LOCALE_USER_DEFAULT, userDefaultLanguageCode, localeNameToLCID, defaultLanguage());
147 return lcid;
155 inline LocaleWin::LocaleWin(LCID lcid) argument
156 : m_lcid(lcid)
161 PassOwnPtr<LocaleWin> LocaleWin::create(LCID lcid) argument
163 return adoptPtr(new LocaleWin(lcid));
/macosx-10.9.5/emacs-92/emacs/src/
H A Dw32select.c101 static UINT cp_from_locale (LCID lcid, UINT format);
588 LCID lcid; local
591 lcid = strtoul (loc_string, NULL, 16);
594 codepage = cp_from_locale (lcid, CF_TEXT);
597 cfg_lcid = lcid;
603 codepage = cp_from_locale (lcid, CF_OEMTEXT);
606 cfg_lcid = lcid;
615 cp_from_locale (LCID lcid, UINT format) argument
623 GetLocaleInfo (lcid, variant, buffer, sizeof (buffer));
868 LCID lcid variable
[all...]
H A Dw32proc.c1905 (lcid, longform) variable
1906 Lisp_Object lcid, longform;
1913 CHECK_NUMBER (lcid);
1915 if (!IsValidLocale (XINT (lcid), LCID_SUPPORTED))
1920 got_abbrev = GetLocaleInfo (XINT (lcid),
1928 got_full = GetLocaleInfo (XINT (lcid),
1936 got_full = GetLocaleInfo (XINT (lcid),
2019 (lcid) variable
2020 Lisp_Object lcid;
2022 CHECK_NUMBER (lcid);
1912 CHECK_NUMBER (lcid); variable
2021 CHECK_NUMBER (lcid); variable
[all...]
/macosx-10.9.5/tcl-102/tk/tk/win/
H A DtkWinSendCom.c46 LCID lcid, ITypeInfo **ppTI);
48 LPOLESTR *rgszNames, UINT cNames, LCID lcid,
51 REFIID riid, LCID lcid, WORD wFlags,
233 LCID lcid,
251 LCID lcid,
272 LCID lcid,
227 WinSendCom_GetTypeInfo( IDispatch *This, UINT iTInfo, LCID lcid, ITypeInfo **ppTI) argument
243 WinSendCom_GetIDsOfNames( IDispatch *This, REFIID riid, LPOLESTR *rgszNames, UINT cNames, LCID lcid, DISPID *rgDispId) argument
265 WinSendCom_Invoke( IDispatch *This, DISPID dispidMember, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pDispParams, VARIANT *pvarResult, EXCEPINFO *pExcepInfo, UINT *puArgErr) argument
/macosx-10.9.5/bash-92/bash-3.2/lib/intl/
H A Dlocalename.c424 LCID lcid;
441 lcid = GetThreadLocale ();
444 langid = LANGIDFROMLCID (lcid);
/macosx-10.9.5/cxxfilt-11/cxxfilt/intl/
H A Dlocalename.c424 LCID lcid;
441 lcid = GetThreadLocale ();
444 langid = LANGIDFROMLCID (lcid);
/macosx-10.9.5/CF-855.17/
H A DCFLocale.h105 CFStringRef CFLocaleCreateLocaleIdentifierFromWindowsLocaleCode(CFAllocatorRef allocator, uint32_t lcid) CF_AVAILABLE(10_6, 4_0);
H A DCFLocale.c671 CFStringRef CFLocaleCreateLocaleIdentifierFromWindowsLocaleCode(CFAllocatorRef allocator, uint32_t lcid) { argument
675 int32_t ret = uloc_getLocaleForLCID(lcid, buffer, kMaxICUNameSize, &status);
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dmsidl.vim37 syn keyword msidlAttribute contained aggregatable appobject binadable coclass control custom default defaultbind defaultcollelem defaultvalue defaultvtable dispinterface displaybind dual entry helpcontext helpfile helpstring helpstringdll hidden id immediatebind lcid library licensed nonbrowsable noncreatable nonextensible oleautomation optional object public readonly requestedit restricted source string uidefault usesgetlasterror vararg version
/macosx-10.9.5/xnu-2422.115.4/security/
H A Dmac_process.c483 pid_t pid, pid_t lcid)
491 MAC_CHECK(proc_check_setlcid, p0, p, pid, lcid);
482 mac_proc_check_setlcid(struct proc *p0, struct proc *p, pid_t pid, pid_t lcid) argument
H A Dmac_base.c1483 * Indirect: uap->lcid login context ID to search
1499 AUDIT_ARG(value32, uap->lcid);
1519 l = lcfind(uap->lcid);
1552 * Indirect: uap->lcid login context ID to search
/macosx-10.9.5/ruby-104/ruby/ext/win32ole/
H A Dwin32ole.c304 static HRESULT ( STDMETHODCALLTYPE GetTypeInfo )(IDispatch __RPC_FAR * This, UINT iTInfo, LCID lcid, ITypeInfo __RPC_FAR *__RPC_FAR *ppTInfo);
305 static HRESULT ( STDMETHODCALLTYPE GetIDsOfNames )(IDispatch __RPC_FAR * This, REFIID riid, LPOLESTR __RPC_FAR *rgszNames, UINT cNames, LCID lcid, DISPID __RPC_FAR *rgDispId);
306 static HRESULT ( STDMETHODCALLTYPE Invoke )( IDispatch __RPC_FAR * This, DISPID dispIdMember, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS __RPC_FAR *pDispParams, VARIANT __RPC_FAR *pVarResult, EXCEPINFO __RPC_FAR *pExcepInfo, UINT __RPC_FAR *puArgErr);
380 static BOOL lcid_installed(LCID lcid);
748 /* [in] */ LCID lcid,
760 /* [in] */ LCID lcid,
776 /* [in] */ LCID lcid,
2809 LCID lcid = cWIN32OLE_lcid; local
2821 0, lcid, &pTypeInfo);
3068 * Returns current locale id (lcid)
745 GetTypeInfo( IDispatch __RPC_FAR * This, UINT iTInfo, LCID lcid, ITypeInfo __RPC_FAR *__RPC_FAR *ppTInfo) argument
755 GetIDsOfNames( IDispatch __RPC_FAR * This, REFIID riid, LPOLESTR __RPC_FAR *rgszNames, UINT cNames, LCID lcid, DISPID __RPC_FAR *rgDispId) argument
772 Invoke( IDispatch __RPC_FAR * This, DISPID dispIdMember, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS __RPC_FAR *pDispParams, VARIANT __RPC_FAR *pVarResult, EXCEPINFO __RPC_FAR *pExcepInfo, UINT __RPC_FAR *puArgErr) argument
3090 lcid_installed(LCID lcid) argument
3111 LCID lcid = FIX2INT(vlcid); local
3338 LCID lcid = cWIN32OLE_lcid; local
3911 LCID lcid = cWIN32OLE_lcid; local
4014 LCID lcid = cWIN32OLE_lcid; local
4241 LCID lcid = cWIN32OLE_lcid; local
4397 LCID lcid = cWIN32OLE_lcid; local
4448 LCID lcid = cWIN32OLE_lcid; local
5424 LCID lcid = cWIN32OLE_lcid; local
7629 EVENTSINK_GetTypeInfo( PEVENTSINK pEV, UINT info, LCID lcid, ITypeInfo **pInfo ) argument
7639 EVENTSINK_GetIDsOfNames( PEVENTSINK pEventSink, REFIID riid, OLECHAR **szNames, UINT cNames, LCID lcid, DISPID *pDispID ) argument
7813 EVENTSINK_Invoke( PEVENTSINK pEventSink, DISPID dispid, REFIID riid, LCID lcid, WORD wFlags, DISPPARAMS *pdispparams, VARIANT *pvarResult, EXCEPINFO *pexcepinfo, UINT *puArgErr ) argument
7970 LCID lcid = cWIN32OLE_lcid; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dcloctst.c3026 uint32_t lcid; local
3028 lcid = uloc_getLCID("en_US");
3029 if (lcid != 0x0409) {
3030 log_err(" uloc_getLCID(\"en_US\") = %d, expected 0x0409\n", lcid);
3033 lengthPre = uloc_getLocaleForLCID(lcid, temp2, 4, &status);
3041 length = uloc_getLocaleForLCID(lcid, temp2, sizeof(temp2)/sizeof(char), &status);
3064 sscanf(rawData2[LCID][i], "%x", &lcid);
3065 length = uloc_getLocaleForLCID(lcid, temp2, sizeof(temp2)/sizeof(char), &status);
3067 log_err(" unexpected failure of uloc_getLocaleForLCID(%#04x), status %s\n", lcid, u_errorName(status));
3073 log_err(" returned length %d not correct for uloc_getLocaleForLCID(%#04x), expected %d\n", length, lcid, uprv_strle
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/kern/
H A Dkern_prot.c2053 AUDIT_ARG(value32, uap->lcid);
2064 error = mac_proc_check_setlcid(p0, p, uap->pid, uap->lcid);
2069 switch (uap->lcid) {
2123 l = lcfind(uap->lcid);
2134 enterlctx(p, l, (uap->lcid == LCID_CREATE) ? 1 : 0);
H A Dkern_proc.c1607 lcfind(pid_t lcid) argument
1613 if (l->lc_id == lcid) {
1791 SYSCTL_NODE(_kern_lctx, KERN_LCTX_LCID, lcid, CTLFLAG_RD | CTLFLAG_LOCKED,

Completed in 213 milliseconds

12