HomeSort by relevance Sort by last modified time
    Searched full:insert_id (Results 1 - 9 of 9) sorted by null

  /development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
Notepadv1.java 27 public static final int INSERT_ID = Menu.FIRST;
45 menu.add(0, INSERT_ID, 0, R.string.menu_insert);
52 case INSERT_ID:
  /external/checkpolicy/
policy_parse.y 341 { if (insert_id("T",0)) return -1; }
343 { if (insert_id("F",0)) return -1; }
717 | GENFSCON filesystem path '-' '-' {insert_id("-", 0);} security_context_def
723 { if (insert_id(yytext,0)) return -1; }
752 { if (insert_id("*", 0)) return -1;
755 { if (insert_id("~", 0)) return -1;
758 { if (insert_id("~", 0)) return -1;
760 | identifier '-' { if (insert_id("-", 0)) return -1; } identifier
764 { if (insert_id("~", 1)) return -1; }
767 { if (insert_id("*", 1)) return -1;
    [all...]
policy_define.h 66 int insert_id(char *id,int push);
policy_define.c 107 int insert_id(char *id, int push) function
    [all...]
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
Notepadv2.java 35 private static final int INSERT_ID = Menu.FIRST;
71 menu.add(0, INSERT_ID,0, R.string.menu_insert);
78 case INSERT_ID:
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
Notepadv3.java 36 private static final int INSERT_ID = Menu.FIRST;
71 menu.add(0, INSERT_ID, 0, R.string.menu_insert);
78 case INSERT_ID:
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
Notepadv2.java 36 private static final int INSERT_ID = Menu.FIRST;
73 menu.add(0, INSERT_ID, 0, R.string.menu_insert);
80 case INSERT_ID:
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
Notepadv3.java 36 private static final int INSERT_ID = Menu.FIRST;
73 menu.add(0, INSERT_ID, 0, R.string.menu_insert);
80 case INSERT_ID:
  /frameworks/base/docs/html/training/notepad/
notepad-ex1.jd 397 <pre>public static final int INSERT_ID = Menu.FIRST;</pre>
408 menu.add(0, INSERT_ID, 0, R.string.menu_insert);
420 <code>item.getId()</code> set to <code>INSERT_ID</code> (the constant we
429 <p>In the case of <var>INSERT_ID</var>, call a new method, <code>createNote()</code>,
443 case INSERT_ID:

Completed in 1062 milliseconds