HomeSort by relevance Sort by last modified time
    Searched defs:ic (Results 1 - 25 of 63) sorted by null

1 2 3

  /frameworks/base/core/java/com/android/internal/view/
IInputConnectionWrapper.java 196 InputConnection ic = mInputConnection.get(); local
197 if (ic == null || !isActive()) {
202 args.callback.setTextAfterCursor(ic.getTextAfterCursor(
212 InputConnection ic = mInputConnection.get(); local
213 if (ic == null || !isActive()) {
218 args.callback.setTextBeforeCursor(ic.getTextBeforeCursor(
228 InputConnection ic = mInputConnection.get(); local
229 if (ic == null || !isActive()) {
234 args.callback.setSelectedText(ic.getSelectedText(
244 InputConnection ic = mInputConnection.get() local
260 InputConnection ic = mInputConnection.get(); local
274 InputConnection ic = mInputConnection.get(); local
283 InputConnection ic = mInputConnection.get(); local
292 InputConnection ic = mInputConnection.get(); local
301 InputConnection ic = mInputConnection.get(); local
310 InputConnection ic = mInputConnection.get(); local
319 InputConnection ic = mInputConnection.get(); local
328 InputConnection ic = mInputConnection.get(); local
337 InputConnection ic = mInputConnection.get(); local
346 InputConnection ic = mInputConnection.get(); local
359 InputConnection ic = mInputConnection.get(); local
368 InputConnection ic = mInputConnection.get(); local
377 InputConnection ic = mInputConnection.get(); local
386 InputConnection ic = mInputConnection.get(); local
395 InputConnection ic = mInputConnection.get(); local
404 InputConnection ic = mInputConnection.get(); local
413 InputConnection ic = mInputConnection.get(); local
    [all...]
  /frameworks/base/core/java/com/android/internal/statusbar/
StatusBarIconList.java 58 StatusBarIcon ic = mIcons[i]; local
59 if (ic == null) {
63 ic.writeToParcel(out, flags);
  /external/webkit/Source/WebKit/chromium/src/
WebDevToolsFrontendImpl.cpp 95 InspectorController* ic = m_webViewImpl->page()->inspectorController(); local
96 ic->setInspectorFrontendClient(new InspectorFrontendClientImpl(m_webViewImpl->page(), m_client, this));
WebDevToolsAgentImpl.cpp 195 InspectorController* ic = inspectorController(); local
196 ic->disconnectFrontend();
197 ic->hideHighlight();
198 ic->close();
232 InspectorController* ic = inspectorController(); local
233 ic->restoreInspectorStateFromCookie(value);
297 InspectorController* ic = inspectorController(); local
298 ic->evaluateForTestInFrontend(callId, script);
303 InspectorController* ic = inspectorController(); local
305 ic->startTimelineProfiler()
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
d8_31pf.cpp 174 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,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
EditorInfoCompatUtils.java 50 public static void performEditorActionNext(InputConnection ic) {
51 ic.performEditorAction(EditorInfo.IME_ACTION_NEXT);
54 public static void performEditorActionPrevious(InputConnection ic) {
57 ic.performEditorAction(OBJ_IME_ACTION_PREVIOUS);
  /system/core/libcutils/
strdup8to16.c 71 int ic; local
74 while ((ic = *utf8Str++) != '\0') {
78 if ((ic & 0xc0) == 0x80) {
89 expected = UTF8_SEQ_LENGTH(ic) - 1;
  /build/tools/acp/
acp.c 175 int ic, retVal; local
184 ic = getopt(argc, argv, "defprtuv");
185 if (ic < 0)
188 switch (ic) {
214 fprintf(stderr, "Unexpected arg -%c\n", ic);
  /external/clang/test/CodeGenCXX/
vtable-layout-abi-examples.cpp 82 int ic; member in struct:Test1::C
  /external/icu4c/layout/
IndicRearrangementProcessor.cpp 69 le_int32 ia, ib, ic, id, ix, x; local
166 ic = glyphStorage.getCharIndex(lastGlyph - 1, success);
180 glyphStorage.setCharIndex(firstGlyph, ic, success);
187 ic = glyphStorage.getCharIndex(lastGlyph - 1, success);
202 glyphStorage.setCharIndex(firstGlyph + 1, ic, success);
210 ic = glyphStorage.getCharIndex(lastGlyph - 1, success);
225 glyphStorage.setCharIndex(firstGlyph, ic, success);
235 ic = glyphStorage.getCharIndex(lastGlyph - 1, success);
251 glyphStorage.setCharIndex(firstGlyph + 1, ic, success);
317 ic = glyphStorage.getCharIndex(lastGlyph - 1, success)
    [all...]
  /frameworks/base/libs/utils/
ZipUtils.cpp 278 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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
SectionHelper.java 299 final DefaultInformationControl ic = new DefaultInformationControl(control.getShell()); local
300 ic.setInformation(tooltip);
301 Point sz = ic.computeSizeHint();
302 ic.setSize(sz.x, sz.y);
303 ic.setVisible(false); // initially hidden
310 ic.setVisible(false);
314 ic.setLocation(control.toDisplay(10, 25)); // same offset as in PDETextHover
315 ic.setVisible(true);
320 ic.dispose();
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
SoftKeyboard.java 276 InputConnection ic = getCurrentInputConnection(); local
277 if (ic != null) {
278 ic.finishComposingText();
316 InputConnection ic = getCurrentInputConnection(); local
317 if (c == 0 || ic == null) {
385 InputConnection ic = getCurrentInputConnection(); local
386 if (ic != null) {
389 ic.clearMetaKeyStates(KeyEvent.META_ALT_ON);
532 InputConnection ic = getCurrentInputConnection(); local
533 if (ic == null) return
    [all...]
  /frameworks/base/cmds/service/
service.cpp 71 int ic = getopt(argc, argv, "h?"); local
72 if (ic < 0)
75 switch (ic) {
81 aerr << "service: Unknown option -" << ic << endl;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/
VoiceProxy.java 310 InputConnection ic = mService.getCurrentInputConnection(); local
311 if (!mImmediatelyAfterVoiceInput && mAfterVoiceInput && ic != null) {
312 if (mHints.showPunctuationHintIfNecessary(ic)) {
384 InputConnection ic = mService.getCurrentInputConnection(); local
385 if (ic != null) ic.commitText("", 1);
392 InputConnection ic = mService.getCurrentInputConnection(); local
393 if (ic != null) ic.finishComposingText();
530 InputConnection ic = mService.getCurrentInputConnection() local
    [all...]
  /dalvik/vm/
UtfString.cpp 110 int ic; local
112 while ((ic = *utf8Str++) != '\0') {
114 if ((ic & 0x80) != 0) {
117 if ((ic & 0x20) != 0) {
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterToUTF8Buffered.java 218 int ic = chars[end_chunk - 1]; local
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
c8_31pf.cpp 445 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%2)*4; *
    [all...]
  /packages/apps/Browser/src/com/android/browser/widget/
BookmarkThumbnailWidgetProvider.java 96 Intent ic = new Intent(context, BookmarkWidgetProxy.class); local
98 PendingIntent.getBroadcast(context, 0, ic,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PostCompilerBuilder.java 495 IContainer ic = androidOutputFolder.getParent(); local
496 if (ic != null) {
497 ic.refreshLocal(IResource.DEPTH_ONE, monitor);
    [all...]
  /external/skia/tests/
MathTest.cpp 488 SkFixed ic = SkFloatToFixed(fc); local
491 maxDiff = SkMax32(maxDiff, SkAbs32(ic - c));
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 330 final InputConnection ic = getCurrentInputConnection();
331 if (ei != null && ic != null) {
333 ic.performEditorAction(ei.actionId);
336 ic.performEditorAction(ei.imeOptions&EditorInfo.IME_MASK_ACTION);
367 + " ic=" + mInputConnection);
368 InputConnection ic = getCurrentInputConnection(); local
369 if (ic != null) ic.reportFullscreenMode(mIsFullscreen);
379 + " ic=" + mInputConnection);
386 public void startInput(InputConnection ic, EditorInfo attribute)
825 InputConnection ic = mStartedInputConnection; local
854 InputConnection ic = getCurrentInputConnection(); local
1268 InputConnection ic = getCurrentInputConnection(); local
1313 InputConnection ic = getCurrentInputConnection(); local
1573 InputConnection ic = getCurrentInputConnection(); local
1895 InputConnection ic = getCurrentInputConnection(); local
1932 InputConnection ic = getCurrentInputConnection(); local
1964 InputConnection ic = getCurrentInputConnection(); local
2068 InputConnection ic = getCurrentInputConnection(); local
2194 InputConnection ic = getCurrentInputConnection(); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIME.java 653 final InputConnection ic = getCurrentInputConnection(); local
654 commitTyped(ic);
655 if (ic != null) ic.finishComposingText(); // For voice input
931 final InputConnection ic = getCurrentInputConnection(); local
1132 final InputConnection ic = getCurrentInputConnection(); local
1158 final InputConnection ic = getCurrentInputConnection(); local
1168 final InputConnection ic = getCurrentInputConnection(); local
1217 final InputConnection ic = getCurrentInputConnection(); local
1366 final InputConnection ic = getCurrentInputConnection(); local
1467 final InputConnection ic = getCurrentInputConnection(); local
1524 final InputConnection ic = getCurrentInputConnection(); local
1565 final InputConnection ic = getCurrentInputConnection(); local
1693 final InputConnection ic = getCurrentInputConnection(); local
1732 final InputConnection ic = getCurrentInputConnection(); local
1833 final InputConnection ic = getCurrentInputConnection(); local
2042 final InputConnection ic = getCurrentInputConnection(); local
2054 final InputConnection ic = getCurrentInputConnection(); local
    [all...]
  /dalvik/tools/hprof-conv/
HprofConv.c 198 int ic; local
203 ic = getc(in);
209 pBuf->storage[pBuf->curLen++] = (unsigned char) ic;
210 } while (ic != 0);
  /external/speex/libspeex/
smallft.c 277 int idij,ipph,i,j,k,l,ic,ik,is; local
531 ic=idp2-i;
533 cc[ic+t6-1]=ch[i+t8-1]-ch[i+t9-1];
535 cc[ic+t6]=ch[i+t9]-ch[i+t8];

Completed in 795 milliseconds

1 2 3