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

/frameworks/av/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/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/native/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/av/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/packages/SystemUI/src/com/android/systemui/statusbar/
H A DNotificationData.java44 public Entry(IBinder key, StatusBarNotification n, StatusBarIconView ic) { argument
47 this.icon = ic;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java107 Context context, IccFileHandler fh, UiccCard ic) {
109 || ic == null) {
559 * @param ic Icc card
563 Context context, UiccCard ic) {
567 if (ic != null) {
571 ca = ic.getApplicationIndex(0);
580 || ic == null) {
585 sInstance = new CatService(ci, ca, ir, context, fh, ic);
106 CatService(CommandsInterface ci, UiccCardApplication ca, IccRecords ir, Context context, IccFileHandler fh, UiccCard ic) argument
562 getInstance(CommandsInterface ci, Context context, UiccCard ic) argument
/frameworks/native/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.java332 final InputConnection ic = getCurrentInputConnection();
333 if (ei != null && ic != null) {
335 ic.performEditorAction(ei.actionId);
338 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
369 + " ic=" + mInputConnection);
370 InputConnection ic = getCurrentInputConnection();
371 if (ic != null) ic.reportFullscreenMode(mIsFullscreen);
381 + " ic=" + mInputConnection);
388 public void startInput(InputConnection ic, EditorInf argument
393 restartInput(InputConnection ic, EditorInfo attribute) argument
1565 doStartInput(InputConnection ic, EditorInfo attribute, boolean restarting) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java783 public void reportFinishInputConnection(InputConnection ic) { argument
784 if (mServedInputConnection != ic) {
785 ic.finishComposingText();
787 if (ic instanceof BaseInputConnection) {
788 ((BaseInputConnection) ic).reportFinish();
1106 InputConnection ic = view.onCreateInputConnection(tba);
1107 if (DEBUG) Log.v(TAG, "Starting input: tba=" + tba + " ic=" + ic);
1131 mServedInputConnection = ic;
1133 if (ic !
[all...]
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp454 sp<InputChannel> ic = local
456 if (ic != NULL) {
457 nativeInputQueue = new AInputQueue(ic, mainWorkWrite);

Completed in 799 milliseconds