Searched refs:py (Results 1 - 8 of 8) sorted by relevance

/packages/inputmethods/PinyinIME/jni/android/
H A Dcom_android_inputmethod_pinyin_PinyinDecoderService.cpp131 const char *py = im_get_sps_str(&py_len); // py_len gets decoded length local
132 assert(NULL != py);
134 py_len = strlen(py);
142 retbuf[i] = py[i];
152 const char *py = im_get_sps_str(&py_len); // py_len gets decoded length local
153 assert(NULL != py);
155 py_len = strlen(py);
/packages/apps/Camera/jni/feature_stab/src/dbreg/
H A Ddbstabsmooth.h136 bool is_point_in_rect(double px, double py, double rx, double ry, double w, double h);
H A Ddbstabsmooth.cpp291 bool db_StabilizationSmoother::is_point_in_rect(double px, double py, double rx, double ry, double w, double h) argument
297 if (py < ry)
299 if (py >= ry + h)
/packages/apps/Launcher2/src/com/android/launcher2/
H A DUtilities.java181 float py = (destHeight - src.getHeight()) / 2;
182 dest.drawBitmap(mask, px + xy[0], py + xy[1],
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DLatinKeyboardView.java576 final int px, py;
580 py = mMoreKeysPanel.translateY((int)me.getY(i));
583 py = (int)me.getY(i);
585 tracker.onMoveEvent(px, py, eventTime);
/packages/inputmethods/PinyinIME/jni/include/
H A Dmatrixsearch.h399 size_t search(const char *py, size_t py_len);
/packages/inputmethods/PinyinIME/jni/share/
H A Dmatrixsearch.cpp419 size_t MatrixSearch::search(const char *py, size_t py_len) { argument
420 if (!inited_ || NULL == py)
431 if ('\0' == py[ch_pos] || py[ch_pos] != pys_[ch_pos])
441 memcpy(pys_ + ch_pos, py + ch_pos, py_len - ch_pos);
445 if (!add_char(py[ch_pos])) {
H A Duserdict.cpp492 const unsigned char py = *spl_trie.get_spelling_str(splid_str[i]); local
493 searchable->signature[i>>2] |= (py << (8 * (i % 4)));

Completed in 362 milliseconds