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

/frameworks/base/core/java/android/view/inputmethod/
H A DInputConnectionInspector.java95 public static int getMissingMethodFlags(@Nullable final InputConnection ic) { argument
96 if (ic == null) {
100 if (ic instanceof BaseInputConnection) {
104 if (ic instanceof InputConnectionWrapper) {
105 return ((InputConnectionWrapper) ic).getMissingMethodFlags();
107 return getMissingMethodFlagsInternal(ic.getClass());
/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/incident/
H A Dmain.cpp172 IncidentSection const* ic = find_section(arg); local
173 if (ic == NULL) {
177 args.addSection(ic->id);
/frameworks/base/libs/usb/tests/accessorytest/
H A Daudio.c187 int init_audio(unsigned int ic, unsigned int id, unsigned int oc, unsigned int od) argument
194 input_card = ic;
/frameworks/native/cmds/service/
H A Dservice.cpp75 int ic = getopt(argc, argv, "h?"); local
76 if (ic < 0)
79 switch (ic) {
85 aerr << "service: Unknown option -" << ic << endl;
/frameworks/support/v13/java/android/support/v13/view/inputmethod/
H A DInputConnectionCompat.java44 InputConnection createWrapper(@NonNull InputConnection ic, argument
81 public InputConnection createWrapper(@NonNull InputConnection ic, argument
86 return ic;
89 return new InputConnectionWrapper(ic, false /* mutable */) {
/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/libs/androidfw/
H A DZipUtils.cpp265 int ic; local
269 ic = getc(fp);
270 if (ic != 0x1f || getc(fp) != 0x8b)
296 ic = getc(fp);
297 } while (ic != 0 && ic != EOF);
302 ic = getc(fp);
303 } while (ic != 0 && ic != EOF);
/frameworks/av/media/libaaudio/examples/loopback/src/
H A DLoopbackAnalyzer.h104 for (int ic = 0; ic < numCorrelations; ic++) {
105 double correlation = calculateCorrelation(&haystack[ic], needle, needleSize);
106 results[ic] = correlation;
120 int ic; local
128 for (ic = 0; ic < numCorrelations; ic++) {
129 double correlation = calculateCorrelation(&haystack[ic], needl
[all...]
/frameworks/ml/nn/common/operations/internal/optimized/
H A Ddepthwiseconv_float.h188 int ic = 0; local
190 for (; ic <= input_depth - 16; ic += 16) {
219 for (; ic <= input_depth - 4; ic += 4) {
238 for (; ic < input_depth; ic++) {
257 int ic = 0; local
259 for (; ic <= input_depth - 2; ic
324 int ic = 0; local
[all...]
H A Ddepthwiseconv_uint8.h808 int ic = 0; local
810 for (; ic <= input_depth - 8; ic += 8) {
860 for (; ic < input_depth; ic++) {
883 int ic = 0; local
885 for (; ic <= input_depth - 8; ic += 8) {
924 for (; ic < input_depth; ic
948 int ic = 0; local
[all...]
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp905 int ic = getopt_long(argc, argv, "", longOptions, &optionIndex); local
906 if (ic == -1) {
910 switch (ic) {
983 if (ic != '?') {
984 fprintf(stderr, "getopt_long returned unexpected value 0x%x\n", ic);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java131 Context context, IccFileHandler fh, UiccCard ic, int slotId) {
133 || ic == null) {
184 * @param ic Icc card
189 Context context, UiccCard ic, int slotId) {
193 if (ic != null) {
197 ca = ic.getApplicationIndex(0);
214 || ic == null) {
218 sInstance[slotId] = new CatService(ci, ca, ir, context, fh, ic, slotId);
1070 Context context, UiccCard ic) {
1074 if (ic !
130 CatService(CommandsInterface ci, UiccCardApplication ca, IccRecords ir, Context context, IccFileHandler fh, UiccCard ic, int slotId) argument
188 getInstance(CommandsInterface ci, Context context, UiccCard ic, int slotId) argument
1069 update(CommandsInterface ci, Context context, UiccCard ic) argument
[all...]
/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.java366 final InputConnection ic = getCurrentInputConnection();
367 if (ei != null && ic != null) {
369 ic.performEditorAction(ei.actionId);
372 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
403 + " ic=" + mInputConnection);
416 + " ic=" + mInputConnection);
422 public void startInput(InputConnection ic, EditorInfo attribute) { argument
424 doStartInput(ic, attribute, false);
427 public void restartInput(InputConnection ic, EditorInfo attribute) { argument
429 doStartInput(ic, attribut
1814 doStartInput(InputConnection ic, EditorInfo attribute, boolean restarting) argument
[all...]

Completed in 1174 milliseconds