Searched defs:ic (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/cmds/service/
H A Dservice.cpp71 int ic = getopt(argc, argv, "h?"); local
72 if (ic < 0)
75 switch (ic) {
81 aerr << "service: Unknown option -" << ic << endl;
/frameworks/base/libs/utils/
H A DZipUtils.cpp278 int ic; local
282 ic = getc(fp);
283 if (ic != 0x1f || getc(fp) != 0x8b)
309 ic = getc(fp);
310 } while (ic != 0 && ic != EOF);
315 ic = getc(fp);
316 } while (ic != 0 && ic != EOF);
/frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
H A Dd8_31pf.cpp174 Word16 ic; local
223 ic = LSBs - ((LSBs >> 2) << 2);
226 pos_indx[index1] = ib + (ic & 1);
242 pos_indx[index2] = ib + (ic >> 1);
247 ic =
253 ic =
255 ic,
262 ic,
/frameworks/base/cmds/runtime/
H A Dmain_runtime.cpp346 int ic; local
363 ic = getopt(argc, argv, "g:j:v:d:l:ns");
364 if (ic < 0)
367 switch (ic) {
390 LOGE("runtime: unrecognized flag -%c\n", ic);
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
H A Dc8_31pf.cpp445 Word16 ic; local
461 ic = pos_indxC >> 1;
463 tempWord32 = ((Word32) ic * 25) << 1;
467 ic = (Word16) tempWord32;
469 ib += ic;
479 ic = ((Word16)(pos_indxC & 1)) << 2;
481 ib += ic;
574 Word16 ic; local
587 indx[NB_TRACK] = (ia/2+(ib/2)*5 +(ic/2)*25)*8 + ia%2 + (ib%2)*2 + (ic
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java626 public void reportFinishInputConnection(InputConnection ic) { argument
627 if (mServedInputConnection != ic) {
628 ic.finishComposingText();
942 InputConnection ic = view.onCreateInputConnection(tba);
943 if (DEBUG) Log.v(TAG, "Starting input: tba=" + tba + " ic=" + ic);
963 mServedInputConnection = ic;
965 if (ic != null) {
971 servedContext = new ControlledInputConnectionWrapper(vh.getLooper(), ic);
977 if (DEBUG) Log.v(TAG, "START INPUT: " + view + " ic
[all...]
/frameworks/base/opengl/libagl/
H A Dprimitives.cpp880 unsigned int ic = 3; local
900 vertex_t* s = ivl[ic-1];
904 for (unsigned int i=0 ; i<ic ; i++) {
945 ic = oc;
966 vertex_t* s = ivl[ic-1];
969 for (unsigned int i=0 ; i<ic ; i++) {
1010 ic = oc;
1021 for (unsigned int i=2 ; i<ic ; i++) {
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java296 final InputConnection ic = getCurrentInputConnection();
297 if (ei != null && ic != null) {
299 ic.performEditorAction(ei.actionId);
302 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
333 + " ic=" + mInputConnection);
334 InputConnection ic = getCurrentInputConnection();
335 if (ic != null) ic.reportFullscreenMode(mIsFullscreen);
345 + " ic=" + mInputConnection);
352 public void startInput(InputConnection ic, EditorInf argument
357 restartInput(InputConnection ic, EditorInfo attribute) argument
1432 doStartInput(InputConnection ic, EditorInfo attribute, boolean restarting) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp480 sp<InputChannel> ic = local
482 if (ic != NULL) {
483 nativeInputQueue = new AInputQueue(ic, mainWorkWrite);

Completed in 373 milliseconds