HomeSort by relevance Sort by last modified time
    Searched defs:key (Results 1 - 16 of 16) sorted by null

  /nv-g11n/g11n/src/lib/iconv/inc/
public_struc.h 32 unsigned int key; member in struct:key_value
  /nv-g11n/g11n/src/lib/iconv/zh/
zh_TW-iso2022-CN-EXT%zh_TW-big5.c 55 long result = ptr1->key - ptr2->key;
63 table_t key, *ptr; local
71 key.key = (unsigned long) ((st->keepc[0] & 0xff) << 8) + (st->keepc[1] & 0xff);
73 ptr = (table_t*) bsearch(&key, cns_big5_tab1, MAX_CNS1_NUM, sizeof(table_t), cns_big5_comp);
75 ptr = (table_t*) bsearch(&key, cns_big5_tab2, MAX_CNS2_NUM, sizeof(table_t), cns_big5_comp);
103 gb_big5 *ptr, key; local
105 key.gbcode = (unsigned long) ((st->keepc[0] | MSB) << 8) + (st->keepc[1] | MSB);
106 ptr = (gb_big5*) bsearch(&key, gb_big5_tab, BIG5MAX, sizeof(gb_big5), gb_big5_comp)
    [all...]
zh_TW-iso2022-CN-EXT%zh_TW-euc.c 153 gb_cns *ptr, key; local
155 key.gbcode = (unsigned long) ((st->keepc[0] | MSB) << 8) + (st->keepc[1] | MSB);
156 ptr = (gb_cns*) bsearch(&key, gb_cns_tab, BIG5MAX, sizeof(gb_cns), gb_cns_comp);
UTF-8%zh_CN.iso2022-CN.c 101 unsigned long key; local
233 key = ((c1 & 0xff) << 8) | (c2 & 0xff);
236 if ( key == 0xFFFE || key == 0xFFFF ) {
241 if ((index = binary_search(key, unicode_gb_tab, UNICODEMAX)) != -1) { /* GB code set */
284 } else if ((index = binary_search(key, utf_cns_tab, MAX_UTF_NUM)) != -1) {
550 int binary_search(unsigned long key, table_t *table, int tab_len) {
554 if (table[low].key == key)
556 if (table[high].key == key
    [all...]
  /nv-g11n/g11n/src/lib/locale/common/layout/
LOtypes.C 59 int key = c; local
61 if (key < 0x20){
65 else if (key >=0x20 &&key <=0x7f ) //latin range
66 idx= key-0x20;
67 else if (key >=0xa0 && key <=0xff) //iso range
68 idx= (key-0x40);
69 else if (key >= 0x80 &&key <=0x9f ) //latin rang
88 int key = c; local
97 int key = c; local
104 int key = c; local
128 const unsigned long key = ((unsigned int)base << 16) | next; local
    [all...]
  /nv-g11n/inputmethod/sunpinyin2/src/ime-core/
imi_funcobjs.cpp 130 unsigned key = *k; local
132 m_punctClosingSts.insert (std::make_pair (key, false));
133 key |= 0x80000000;
136 m_punctMap[key] = wstring (cwstr);
143 unsigned key = (*k)[0]; local
144 if (m_punctMap.find(key) != m_punctMap.end()) {
145 m_punctMap.erase(key);
146 m_punctClosingSts.erase(key);
imi_options.cpp 197 const std::string key = pair.substr(0, found); local
199 char *skey = strdup(key);
imi_options.h 67 * @param punc_map an interleaved array of <key,value> pairs, which looks
273 unsigned key = _policiesToKey (m_lang, m_pyScheme, m_inputStyle); local
274 ISunpinyinProfile *profile = _getProfile(key);
289 unsigned key = _policiesToKey (m_lang, m_pyScheme, m_inputStyle); local
290 ISunpinyinProfile *profile = _getProfile(key);
320 ISunpinyinProfile* _getProfile(unsigned key)
322 std::map <unsigned, ISunpinyinProfile*>::iterator it = m_profiles.find (key);
355 * transform a string vector to interleaved <key,value> array of (char*)
356 * @param event a list of string, each element should be in the form of "key:value".
  /nv-g11n/inputmethod/sunpinyin/ime/wrapper/beos/
SunPinyinStandalone.cpp 91 virtual void updateStatus(int key, int value);
238 int32 key, modifiers; local
242 if(msg->FindInt32("key", &key) != B_OK) break;
252 case B_ENTER: key = IM_VK_ENTER; break;
253 case B_BACKSPACE: key = IM_VK_BACK_SPACE; break;
254 case B_ESCAPE: key = IM_VK_ESCAPE; break;
255 case B_PAGE_UP: key = IM_VK_PAGE_UP; break;
256 case B_PAGE_DOWN: key = IM_VK_PAGE_DOWN; break;
257 case B_END: key = IM_VK_END; break
    [all...]
  /nv-g11n/inputmethod/sunpinyin2/wrapper/beos/
SunPinyinStandalone.cpp 91 virtual void updateStatus(int key, int value);
238 int32 key, modifiers; local
242 if(msg->FindInt32("key", &key) != B_OK) break;
252 case B_ENTER: key = IM_VK_ENTER; break;
253 case B_BACKSPACE: key = IM_VK_BACK_SPACE; break;
254 case B_ESCAPE: key = IM_VK_ESCAPE; break;
255 case B_PAGE_UP: key = IM_VK_PAGE_UP; break;
256 case B_PAGE_DOWN: key = IM_VK_PAGE_DOWN; break;
257 case B_END: key = IM_VK_END; break
    [all...]
  /nv-g11n/inputmethod/sunpinyin2/wrapper/ibus/setup/
main.py 69 section, key = self.__get_config_name()
70 return self.config.get_value(section, key, self.default)
73 section, key = self.__get_config_name()
74 return self.config.set_value(section, key, v)
221 def key(self): member in class:MappingOption
235 opt.is_enabled = (opt.key() in keys)
407 def key(self): member in class:PunctMapping
  /nv-g11n/inputmethod/sunpinyin2/wrapper/ibus/src/
engine_impl.cpp 116 CKeyEvent key = translate_key(key_val, key_code, modifiers); local
120 if ( !m_hotkey_profile->isModeSwitchKey(key) ) {
121 m_hotkey_profile->rememberLastKey(key);
125 return m_pv->onKeyEvent(key);
  /nv-g11n/inputmethod/sunpinyin/ime/iiim/cle/
ime.h 67 int keycode; ///< virtual key code for the key just be pressed, please IME_VK_xxx
68 int keychar; ///< corresponding ASCII char value if the key press is an ASCII value. Valid for \n and [0x20-0x7E]
69 int modifier; ///< status for modify key and mouse buttons, reference IME_XXX_MASK definition
70 int time_stamp; ///< incremental integers (per client), time_stamp when the key press happened.
209 const char * key; ///< Path string looks like unix file path, for uniquely identify a property member in struct:__anon307
453 /** \brief some key value definition returned by ImmPrefilterKey */
523 ImeKeyType (*ImmPrefilterKey)(ImeKey key);
536 IME_INVALID_KEY, ///< unexpected key, should not return to application, normally ring a bell
  /nv-g11n/inputmethod/sunpinyin2/wrapper/cle/iiim/cle/
ime.h 67 int keycode; ///< virtual key code for the key just be pressed, please IME_VK_xxx
68 int keychar; ///< corresponding ASCII char value if the key press is an ASCII value. Valid for \n and [0x20-0x7E]
69 int modifier; ///< status for modify key and mouse buttons, reference IME_XXX_MASK definition
70 int time_stamp; ///< incremental integers (per client), time_stamp when the key press happened.
209 const char * key; ///< Path string looks like unix file path, for uniquely identify a property member in struct:__anon25
453 /** \brief some key value definition returned by ImmPrefilterKey */
523 ImeKeyType (*ImmPrefilterKey)(ImeKey key);
536 IME_INVALID_KEY, ///< unexpected key, should not return to application, normally ring a bell
  /nv-g11n/g11n/src/openwin/lib/locale/iso8859-1/src/lib/X11/
Xlib.h 459 int key; member in struct:__anon212
574 unsigned int state; /* key or button mask */
592 unsigned int state; /* key or button mask */
610 unsigned int state; /* key or button mask */
635 unsigned int state; /* key or button mask */
1330 XIMHotKeyTrigger *key; member in struct:_XIMHotKeyTriggers
    [all...]
  /nv-g11n/g11n-spec/cmdassist/src/service/
stdsoap2.c 11622 { register char *key = soap->msgbuf; local
12758 char key[4096], val[4096]; \/* cookie size is up to 4096 bytes [RFC2109] *\/ local
    [all...]

Completed in 660 milliseconds