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/libs/androidfw/
H A DZipUtils.cpp280 int ic; local
284 ic = getc(fp);
285 if (ic != 0x1f || getc(fp) != 0x8b)
311 ic = getc(fp);
312 } while (ic != 0 && ic != EOF);
317 ic = getc(fp);
318 } while (ic != 0 && ic != EOF);
/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/native/cmds/service/
H A Dservice.cpp82 int ic = getopt(argc, argv, "h?"); local
83 if (ic < 0)
86 switch (ic) {
92 aerr << "service: Unknown option -" << ic << endl;
/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/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java107 Context context, IccFileHandler fh, UiccCard ic) {
109 || ic == null) {
531 * @param ic Icc card
535 Context context, UiccCard ic) {
539 if (ic != null) {
543 ca = ic.getApplicationIndex(0);
552 || ic == null) {
557 sInstance = new CatService(ci, ca, ir, context, fh, ic);
106 CatService(CommandsInterface ci, UiccCardApplication ca, IccRecords ir, Context context, IccFileHandler fh, UiccCard ic) argument
534 getInstance(CommandsInterface ci, Context context, UiccCard ic) argument
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp660 int ic = getopt_long(argc, argv, "", longOptions, &optionIndex); local
661 if (ic == -1) {
665 switch (ic) {
708 if (ic != '?') {
709 fprintf(stderr, "getopt_long returned unexpected value 0x%x\n", ic);
/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.java333 final InputConnection ic = getCurrentInputConnection();
334 if (ei != null && ic != null) {
336 ic.performEditorAction(ei.actionId);
339 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
370 + " ic=" + mInputConnection);
371 InputConnection ic = getCurrentInputConnection();
372 if (ic != null) ic.reportFullscreenMode(mIsFullscreen);
382 + " ic=" + mInputConnection);
388 public void startInput(InputConnection ic, EditorInf argument
393 restartInput(InputConnection ic, EditorInfo attribute) argument
1576 doStartInput(InputConnection ic, EditorInfo attribute, boolean restarting) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodManager.java797 public void reportFinishInputConnection(InputConnection ic) { argument
798 if (mServedInputConnection != ic) {
799 ic.finishComposingText();
801 if (ic instanceof BaseInputConnection) {
802 ((BaseInputConnection) ic).reportFinish();
1121 InputConnection ic = view.onCreateInputConnection(tba);
1122 if (DEBUG) Log.v(TAG, "Starting input: tba=" + tba + " ic=" + ic);
1146 mServedInputConnection = ic;
1148 if (ic !
[all...]

Completed in 329 milliseconds