Home
last modified time | relevance | path

Searched refs:dict (Results 1 – 25 of 26) sorted by relevance

12

/AOO41X/main/
H A Dextensions.lst42 …/sourceforge.net/projects/aoo-extensions/files/17102/112/dict-en-20250901_aoo.oxt/download "dict-e…
50 …ourceforge.net/projects/aoo-extensions/files/1075/15/dict-de_de-frami_2017-01-12.oxt/download "dic…
54 …ps://sourceforge.net/projects/aoo-extensions/files/1456/6/nl-dict-v2.00g.oxt/download "dict-nl.oxt"
62 …be https://sourceforge.net/projects/aoo-extensions/files/1204/14/dict-it.oxt/download "dict-it.oxt"
66 …20 https://sourceforge.net/projects/aoo-extensions/files/1657/4/es_es.oxt/download "dict-es_es.oxt"
70 …//sourceforge.net/projects/aoo-extensions/files/1429/13/da_dk-2.9.001.oxt/download "dict-da_dk.oxt"
74 …ttps://sourceforge.net/projects/aoo-extensions/files/18950/0/lt_hunspell.oxt/download "dict-lt.oxt"
78 …ttps://sourceforge.net/projects/aoo-extensions/files/1392/10/dict-ro.1.7.oxt/download "dict-ro.oxt"
82 …://sourceforge.net/projects/aoo-extensions/files/3233/3/dict_ru_ru-0.3.7.oxt/download "dict-ru.oxt"
86 …e6 https://sourceforge.net/projects/aoo-extensions/files/1143/11/dict-sk.oxt/download "dict-sk.oxt"
[all …]
H A Dset_soenv.in91 $CYGWIN_PATH, $language, $dict, $ASM_PATH, $NASM_PATH, $NSIS_PATH, $PERL_PATH );
/AOO41X/main/hyphen/
H A Dhyphen-2.7.1-read-charset.patch6 for (i=0;i<MAX_NAME;i++) dict[k]->cset[i]= 0;
7 - if (fgets(dict[k]->cset, sizeof(dict[k]->cset),f) != NULL) {
9 - if ((dict[k]->cset[i] == '\r') || (dict[k]->cset[i] == '\n'))
10 - dict[k]->cset[i] = 0;
12 - dict[k]->cset[0] = 0;
14 + fgets(dict[k]->cset, sizeof(dict[k]->cset),f);
16 + if ((dict[k]->cset[i] == '\r') || (dict[k]->cset[i] == '\n'))
17 + dict[k]->cset[i] = 0;
18 dict[k]->utf8 = (strcmp(dict[k]->cset, "UTF-8") == 0);
20 strcpy(dict[k]->cset, dict[0]->cset);
/AOO41X/main/i18npool/source/breakiterator/
H A Dbreakiterator_cjk.cxx43 dict( NULL ), in BreakIterator_CJK()
53 if (dict) { in previousWord()
54 result = dict->previousWord(text, anyPos, wordType); in previousWord()
70 if (dict) { in nextWord()
71 result = dict->nextWord(text, anyPos, wordType); in nextWord()
88 if (dict) { in getWordBoundary()
89 result = dict->getWordBoundary(text, anyPos, wordType, bDirection); in getWordBoundary()
128 dict = new xdictionary("zh"); in BreakIterator_zh()
135 delete dict; in ~BreakIterator_zh()
143 dict = new xdictionary("zh"); in BreakIterator_zh_TW()
[all …]
/AOO41X/main/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/
H A Dhyphenimp.cxx296 HyphenDict *dict = NULL; in hyphenate() local
329 if ( ( dict = hnj_hyphen_load ( sTmp.getStr()) ) == NULL ) in hyphenate()
334 aDicts[k].aPtr = dict; in hyphenate()
335 aDicts[k].eEnc = getTextEncodingFromCharset(dict->cset); in hyphenate()
339 dict = aDicts[k].aPtr; in hyphenate()
392 const bool bFailed = 0 != hnj_hyphen_hyphenate3( dict, lcword, n, hyphens, NULL, in hyphenate()
394 … Max(dict->clhmin, Max(dict->clhmin, 2) + Max(0, minLead - Max(dict->lhmin, 2))), in hyphenate()
395 … Max(dict->crhmin, Max(dict->crhmin, 2) + Max(0, minTrail - Max(dict->rhmin, 2))) ); in hyphenate()
560 HyphenDict *dict = NULL; in createPossibleHyphens() local
592 if ( ( dict = hnj_hyphen_load ( sTmp.getStr()) ) == NULL ) in createPossibleHyphens()
[all …]
/AOO41X/main/l10ntools/scripts/tool/
H A Dpseudo.py76 class PseudoOrderedDict(dict):
81 dict.__init__(self)
88 return dict.__setitem__(self, key, value)
92 self._valuelist.__delattr__(dict[key])
93 return dict.__delattr__(self, key)
97 self._valuelist.__delitem__(dict[key])
98 return dict.__delitem__(self, key)
125 return dict.__pop__(self, key)
/AOO41X/main/solenv/bin/
H A Dbuildalyzer52 cxxflags_tmp = dict()
56 includeflags_tmp = dict()
78 by_name = dict()
81 by_name = dict()
108 by_flagset = dict()
125 by_flagset = dict()
143 by_name = dict()
/AOO41X/main/solenv/inc/
H A Dlldb4aoo.py22 def __lldb_init_module( dbg, dict): argument
100 def get_pimpl_info( valobj, dict): argument
111 def getinfo_for_rtl_String( valobj, dict): argument
114 def getinfo_for_rtl_uString( valobj, dict): argument
117 def getinfo_for__ByteStringData( valobj, dict): argument
120 def getinfo_for__UniStringData( valobj, dict): argument
/AOO41X/main/pyuno/source/module/
H A Dpyuno_type.cxx260 PyObject *importToGlobal(PyObject *str, PyObject *dict, PyObject *target) in importToGlobal() argument
275 PyRef typesModule( PyDict_GetItemString( dict, "unotypes" ) ); in importToGlobal()
280 PyDict_SetItemString( dict, "unotypes" , typesModule.get() ); in importToGlobal()
303 PyDict_SetItem( dict, target, exc.getAcquired() ); in importToGlobal()
323 dict, (char*)enumElementName.getStr(), in importToGlobal()
339 PyDict_SetItem( dict, target , constant.get()); in importToGlobal()
H A Dpyuno_runtime.cxx168 PyRef dict( PyModule_GetDict( module.get() ) ); in importUnoModule() local
169 return dict; in importUnoModule()
H A Dpyuno_impl.hxx171 PyObject *importToGlobal( PyObject *typeName, PyObject *dict, PyObject *targetName );
/AOO41X/main/migrationanalysis/src/wizard/
H A DIniSupport.bas207 Public Function ProfileLoadDict(dict As Scripting.Dictionary, _
250 dict.add lpKeyName, KeyData
255 ProfileLoadDict = dict.count
/AOO41X/main/lingucomponent/source/spellcheck/spell/
H A Dsspellimp.cxx308 OUString dict; in GetSpellFailure() local
310 osl::FileBase::getSystemPathFromFileURL(dicpath,dict); in GetSpellFailure()
313 OString aTmpdict(OU2ENC(dict,osl_getThreadTextEncoding())); in GetSpellFailure()
321 aTmpdict = Win_GetShortPathName( dict ); in GetSpellFailure()
/AOO41X/main/filter/source/config/tools/merge/
H A DpyAltFCFGMerge179 class Properties(dict):
182 dict.__init__(self)
188 return dict.__getittem__(self,key)
/AOO41X/main/curl/
H A Dmakefile.mk61 …--disable-gopher --disable-file --disable-ldap --disable-telnet --disable-dict --disable-static CP…
84 …--disable-gopher --disable-file --disable-ldap --disable-telnet --disable-dict --build=i586-pc-min…
/AOO41X/main/extensions/source/macosx/spotlight/
H A DOOoContentDataParser.m41 - (void)parseXML:(NSData*)data intoDictionary:(NSMutableDictionary*)dict
43 mdiValues = dict;
H A DOOoMetaDataParser.m85 - (void)parseXML:(NSData*)data intoDictionary:(NSMutableDictionary*)dict
87 metaValues = dict;
H A DOOoMetaDataParser.h38 - (void)parseXML:(NSData*)data intoDictionary:(NSMutableDictionary*)dict;
H A DOOoContentDataParser.h41 - (void)parseXML:(NSData*)data intoDictionary:(NSMutableDictionary*)dict;
H A DGetMetadataForFile.m45 /* Return the attribute keys and attribute values in the dict */
/AOO41X/main/migrationanalysis/src/driver_docs/sources/
H A DAnalysisDriver.bas1556 Function getIssueValueFromXLSorDict(logWb As WorkBook, aAnalysis As DocumentAnalysis, dict As Scrip…
1559 … getIssueValueFromXLSorDict = getValueFromXLSorDict(logWb, aAnalysis, dict, key, key, row, column)
1562 Function getValueFromXLSorDict(logWb As WorkBook, aAnalysis As DocumentAnalysis, dict As Scripting.…
1571 If dict.Exists(dictKey) Then
1572 ret = dict.item(dictKey)
1584 dict.Add dictKey, ret
2667 Public Function ProfileLoadDict(dict As Scripting.Dictionary, _
2692 dict.Add lpKeyName, KeyData
2695 ProfileLoadDict = dict.count
2701 " : dict.Count " & dict.count & _
/AOO41X/main/i18npool/source/breakiterator/data/
H A Dmakefile.mk24 TARGET=dict
/AOO41X/main/i18npool/inc/
H A Dbreakiterator_cjk.hxx53 xdictionary *dict; member in com::sun::star::i18n::BreakIterator_CJK
/AOO41X/main/toolkit/src2xml/source/
H A Dsrclexer.py119 self.headerDict = dict ()
/AOO41X/main/scp2/source/ooo/
H A Ddirectory_ooo.scp792 DosName = "dict";

12