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

1 2 3 4

  /external/clang/test/CodeGen/
2002-02-13-UnnamedLocal.c 14 int foo(foostruct ic);
  /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...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
InputConnectionCompatUtils.java 46 public static void commitCorrection(InputConnection ic, int offset, CharSequence oldText,
48 if (ic == null || CONSTRUCTOR_CorrectionInfo == null
55 CompatUtils.invoke(ic, null, METHOD_InputConnection_commitCorrection,
64 public static CharSequence getSelectedText(InputConnection ic, int selStart, int selEnd) {
67 ic, null, METHOD_getSelectedText, 0);
73 public static void underlineWord(InputConnection ic, SelectedWord word) {
78 ic, null, METHOD_setComposingRegion, word.mStart, word.mEnd);
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);
  /external/clang/test/SemaTemplate/
temp_func_order.cpp 61 void test_f4(int i, const int ic) {
63 float &fr1 = f4(ic);
72 void test_f5(int i, const int ic) {
82 void test_f6(int i, const int ic) {
84 float &fr = f6(ic, ic);
  /external/llvm/test/Bindings/Ocaml/
bitwriter.ml 15 let ic = open_in_bin name in
16 let len = in_channel_length ic in
19 test ((input ic buf 0 len) = len);
21 close_in ic;
  /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/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...]
EditingUtils.java 253 * @param ic the InputConnection for accessing the text field
261 public static SelectedWord getWordAtCursorOrSelection(final InputConnection ic,
266 EditingUtils.Range range = getWordRangeAtCursor(ic, wordSeparators);
272 if (null == ic) return null;
274 CharSequence charsBefore = ic.getTextBeforeCursor(1, 0);
280 CharSequence charsAfter = ic.getTextAfterCursor(1, 0);
287 ic, selStart, selEnd);
  /external/webkit/Source/WebKit/chromium/src/
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...]
WebDevToolsFrontendImpl.cpp 95 InspectorController* ic = m_webViewImpl->page()->inspectorController(); local
96 ic->setInspectorFrontendClient(new InspectorFrontendClientImpl(m_webViewImpl->page(), m_client, this));
  /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...]
  /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();
  /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;
  /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...]
IInputMethodWrapper.java 154 InputConnection ic = inputContext != null local
158 inputMethod.startInput(ic, info);
164 InputConnection ic = inputContext != null local
168 inputMethod.restartInput(ic, info);
227 InputConnection ic = new InputConnectionWrapper( local
229 InputBinding nu = new InputBinding(ic, binding);
  /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...]
  /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/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...]
  /external/clang/test/CodeGenCXX/
vtable-layout-abi-examples.cpp 82 int ic; member in struct:Test1::C
  /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);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/voice/
Hints.java 91 public boolean showPunctuationHintIfNecessary(InputConnection ic) {
93 && ic != null
96 CharSequence charBeforeCursor = ic.getTextBeforeCursor(1, 0);
  /external/v8/test/mjsunit/
megamorphic-callbacks.js 44 // Initialize IC stubs.
60 assertEquals(100, load(o), "ic load");
66 assertEquals(42, o.y_mirror, "ic store");
70 assertEquals(300, call(o), "ic call");
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationData.java 42 public Entry(IBinder key, StatusBarNotification n, StatusBarIconView ic) {
45 this.icon = ic;

Completed in 495 milliseconds

1 2 3 4