HomeSort by relevance Sort by last modified time
    Searched refs:FIRST (Results 26 - 50 of 101) sorted by null

12 3 4 5

  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
Notepadv3.java 36 private static final int INSERT_ID = Menu.FIRST;
37 private static final int DELETE_ID = Menu.FIRST + 1;
42 /** Called when the activity is first created. */
  /external/e2fsprogs/lib/ss/
ct_c.sed 28 # The first section of this script is just to cannoicalize the file.
32 :FIRST
80 # First, parse out the subroutine name
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryAddWordFragment.java 52 private static final int OPTIONS_MENU_ADD = Menu.FIRST;
53 private static final int OPTIONS_MENU_DELETE = Menu.FIRST + 1;
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSettings.java 83 * The first is for "usual Settings", appearing as any other Setup fragment.
95 /* package */ static final int MENU_ID_WPS_PBC = Menu.FIRST;
96 private static final int MENU_ID_WPS_PIN = Menu.FIRST + 1;
97 private static final int MENU_ID_SAVED_NETWORK = Menu.FIRST + 2;
98 /* package */ static final int MENU_ID_ADD_NETWORK = Menu.FIRST + 3;
99 private static final int MENU_ID_ADVANCED = Menu.FIRST + 4;
100 private static final int MENU_ID_SCAN = Menu.FIRST + 5;
101 private static final int MENU_ID_CONNECT = Menu.FIRST + 6;
102 private static final int MENU_ID_FORGET = Menu.FIRST + 7;
103 private static final int MENU_ID_MODIFY = Menu.FIRST + 8
    [all...]
  /development/build/tools/
mk_sdk_repo_xml.sh 62 # Get the root element from the schema. This is the first element
251 # Get the first letter of the schema name (e.g. sdk-repo => 'r')
277 # only use its first definition.
330 # First we expect a type. For convenience the type can be plural.
340 FIRST="1"
360 # these attributes from the first zip found.
381 if [[ $FIRST ]]; then
382 FIRST=""
  /external/clang/lib/Basic/
IdentifierTable.cpp 204 // the first and third character. For preprocessor ID's there are no
208 #define HASH(LEN, FIRST, THIRD) \
209 (LEN << 5) + (((FIRST-'a') + (THIRD-'a')) & 31)
210 #define CASE(LEN, FIRST, THIRD, NAME) \
211 case HASH(LEN, FIRST, THIRD): \
419 IdentifierInfo *first = sel.getIdentifierInfoForSlot(0); local
420 if (!first) return OMF_None;
422 StringRef name = first->getName();
464 IdentifierInfo *first = sel.getIdentifierInfoForSlot(0); local
465 if (!first) return OIT_None
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageSummary.java 64 private static final int MENU_STATS_TYPE = Menu.FIRST;
65 private static final int MENU_STATS_REFRESH = Menu.FIRST + 1;
66 private static final int MENU_BATTERY_SAVER = Menu.FIRST + 2;
67 private static final int MENU_HELP = Menu.FIRST + 3;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/indices/
u_unfilled_gen.py 29 FIRST, LAST = 'first', 'last'
  /external/mesa3d/src/gallium/auxiliary/indices/
u_unfilled_gen.py 29 FIRST, LAST = 'first', 'last'
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DevicePickerFragment.java 38 private static final int MENU_ID_REFRESH = Menu.FIRST;
BluetoothSettings.java 70 private static final int MENU_ID_SCAN = Menu.FIRST;
71 private static final int MENU_ID_RENAME_DEVICE = Menu.FIRST + 1;
72 private static final int MENU_ID_SHOW_RECEIVED = Menu.FIRST + 2;
  /packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionaryAddWordFragment.java 47 private static final int OPTIONS_MENU_DELETE = Menu.FIRST;
  /frameworks/base/core/tests/coretests/src/android/view/
MenuTest.java 77 final int GROUP_ONE = Menu.FIRST;
78 final int GROUP_TWO = Menu.FIRST + 1;
  /packages/apps/Settings/src/com/android/settings/
ApnSettings.java 75 private static final int MENU_NEW = Menu.FIRST;
76 private static final int MENU_RESTORE = Menu.FIRST + 1;
ZonePicker.java 74 private static final int MENU_TIMEZONE = Menu.FIRST+1;
75 private static final int MENU_ALPHABETICAL = Menu.FIRST;
  /packages/apps/Music/src/com/android/music/
MusicPicker.java 83 static final int TRACK_MENU = Menu.FIRST;
85 static final int ALBUM_MENU = Menu.FIRST+1;
87 static final int ARTIST_MENU = Menu.FIRST+2;
135 /** Set to true when the list view has been shown for the first time. */
333 // hidden) in case this is the first cursor we have gotten.
404 /** Called when the activity is first created. */
567 * The first time this is called, we hide the large progress indicator
  /packages/apps/Settings/src/com/android/settings/accounts/
AccountSyncSettings.java 66 private static final int MENU_SYNC_NOW_ID = Menu.FIRST;
67 private static final int MENU_SYNC_CANCEL_ID = Menu.FIRST + 1;
68 private static final int MENU_REMOVE_ACCOUNT_ID = Menu.FIRST + 2;
ManageAccountsSettings.java 76 private static final int MENU_SYNC_NOW_ID = Menu.FIRST;
77 private static final int MENU_SYNC_CANCEL_ID = Menu.FIRST + 1;
  /packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipEditor.java 51 private static final int MENU_SAVE = Menu.FIRST;
52 private static final int MENU_DISCARD = Menu.FIRST + 1;
53 private static final int MENU_REMOVE = Menu.FIRST + 2;
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderThrottle.java 387 static final int POPULATE_ID = Menu.FIRST;
388 static final int CLEAR_ID = Menu.FIRST+1;
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderThrottleSupport.java 388 static final int POPULATE_ID = Menu.FIRST;
389 static final int CLEAR_ID = Menu.FIRST+1;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
LL1Analyzer.java 78 LookaheadSet s = FIRST(r);
79 System.out.println("FIRST("+r.name+")="+s);
86 // walk every rule in this grammar and compare FIRST set with
91 //System.out.println(r.name+" FIRST="+r.FIRST);
96 // System.out.println(r.name+" exists in imported grammar: FIRST="+importedRule.FIRST);
97 if ( !r.FIRST.equals(importedRule.FIRST) ) {
114 // somebody invokes rule whose FIRST changed in subgrammar
    [all...]
  /external/clang/include/clang/AST/
Comment.h 187 #define COMMENT_RANGE(BASE, FIRST, LAST) \
188 First##BASE##Constant=FIRST##Kind, Last##BASE##Constant=LAST##Kind,
189 #define LAST_COMMENT_RANGE(BASE, FIRST, LAST) \
190 First##BASE##Constant=FIRST##Kind, Last##BASE##Constant=LAST##Kind
  /prebuilts/misc/common/swig/include/2.0.11/
swig.swg 220 %define %aggregate_check(TYPE, NAME, FIRST, ...)
223 static TYPE values[] = { FIRST, ##__VA_ARGS__ };
598 * The wrapper is used as follows. First consider a function like this:
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
TouchPaint.java 48 * few added refinements. First, there may be multiple tools available including
68 private static final int CLEAR_ID = Menu.FIRST;
71 private static final int FADE_ID = Menu.FIRST+1;
384 // Advance color when the right mouse button or first stylus button

Completed in 622 milliseconds

12 3 4 5