/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
union-find.h | 40 // Finds the representative of the set 'item' belongs to. 42 T FindSet(T item) { 43 if (item >= parent_.size() 44 || item == fail_ 45 || parent_[item] == fail_) return fail_; 48 T *p = &parent_[item]; 49 for (; *p != item; item = *p, p = &parent_[item]) { 64 // 'item'. The range [0;max) is reset if item >= max [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/ |
15.8.2.7.js | 44 var item = 0; 46 array[item++] = new TestCase( SECTION, "Math.cos.length", 1, Math.cos.length ); 48 array[item++] = new TestCase( SECTION, "Math.cos()", Number.NaN, Math.cos() ); 49 array[item++] = new TestCase( SECTION, "Math.cos(void 0)", Number.NaN, Math.cos(void 0) ); 50 array[item++] = new TestCase( SECTION, "Math.cos(false)", 1, Math.cos(false) ); 51 array[item++] = new TestCase( SECTION, "Math.cos(null)", 1, Math.cos(null) ); 53 array[item++] = new TestCase( SECTION, "Math.cos('0')", 1, Math.cos('0') ); 54 array[item++] = new TestCase( SECTION, "Math.cos('Infinity')", Number.NaN, Math.cos("Infinity") ); 55 array[item++] = new TestCase( SECTION, "Math.cos('3.14159265359')", -1, Math.cos('3.14159265359') ); 57 array[item++] = new TestCase( SECTION, "Math.cos(NaN)", Number.NaN, Math.cos(Number.NaN) (…) [all...] |
15.8.2.1.js | 47 var item = 0; 49 array[item++] = new TestCase( SECTION, "Math.abs.length", 1, Math.abs.length ); 51 array[item++] = new TestCase( SECTION, "Math.abs()", Number.NaN, Math.abs() ); 52 array[item++] = new TestCase( SECTION, "Math.abs( void 0 )", Number.NaN, Math.abs(void 0) ); 53 array[item++] = new TestCase( SECTION, "Math.abs( null )", 0, Math.abs(null) ); 54 array[item++] = new TestCase( SECTION, "Math.abs( true )", 1, Math.abs(true) ); 55 array[item++] = new TestCase( SECTION, "Math.abs( false )", 0, Math.abs(false) ); 56 array[item++] = new TestCase( SECTION, "Math.abs( string primitive)", Number.NaN, Math.abs("a string primitive") ); 57 array[item++] = new TestCase( SECTION, "Math.abs( string object )", Number.NaN, Math.abs(new String( 'a String object' )) ); 58 array[item++] = new TestCase( SECTION, "Math.abs( Number.NaN )", Number.NaN, Math.abs(Number.NaN) (…) [all...] |
15.8.2.17.js | 48 var item = 0; 50 array[item++] = new TestCase( SECTION, "Math.sqrt.length", 1, Math.sqrt.length ); 52 array[item++] = new TestCase( SECTION, "Math.sqrt()", Number.NaN, Math.sqrt() ); 53 array[item++] = new TestCase( SECTION, "Math.sqrt(void 0)", Number.NaN, Math.sqrt(void 0) ); 54 array[item++] = new TestCase( SECTION, "Math.sqrt(null)", 0, Math.sqrt(null) ); 55 array[item++] = new TestCase( SECTION, "Math.sqrt(true)", 1, Math.sqrt(1) ); 56 array[item++] = new TestCase( SECTION, "Math.sqrt(false)", 0, Math.sqrt(false) ); 57 array[item++] = new TestCase( SECTION, "Math.sqrt('225')", 15, Math.sqrt('225') ); 59 array[item++] = new TestCase( SECTION, "Math.sqrt(NaN)", Number.NaN, Math.sqrt(Number.NaN) ); 60 array[item++] = new TestCase( SECTION, "Math.sqrt(-Infinity)", Number.NaN, Math.sqrt(Number.NEGATIVE_INF (…) [all...] |
/external/wpa_supplicant/wpa_gui-qt4/ |
wpagui.ui | 20 <item rowspan="1" row="0" column="0" colspan="2" > 26 </item> 27 <item rowspan="1" row="0" column="2" colspan="2" > 29 </item> 30 <item rowspan="1" row="1" column="0" colspan="2" > 36 </item> 37 <item rowspan="1" row="1" column="2" colspan="2" > 39 </item> 40 <item rowspan="1" row="2" column="0" colspan="4" > 49 <item row="0" column="0" [all...] |
eventhistory.ui | 19 <item> 55 </item> 56 <item> 61 <item> 76 </item> 77 <item> 83 </item> 85 </item>
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/ |
15.6.1.js | 56 var item = 0; 58 array[item++] = new TestCase( SECTION, "Boolean(1)", true, Boolean(1) ); 59 array[item++] = new TestCase( SECTION, "Boolean(0)", false, Boolean(0) ); 60 array[item++] = new TestCase( SECTION, "Boolean(-1)", true, Boolean(-1) ); 61 array[item++] = new TestCase( SECTION, "Boolean('1')", true, Boolean("1") ); 62 array[item++] = new TestCase( SECTION, "Boolean('0')", true, Boolean("0") ); 63 array[item++] = new TestCase( SECTION, "Boolean('-1')", true, Boolean("-1") ); 64 array[item++] = new TestCase( SECTION, "Boolean(true)", true, Boolean(true) ); 65 array[item++] = new TestCase( SECTION, "Boolean(false)", false, Boolean(false) ); 67 array[item++] = new TestCase( SECTION, "Boolean('true')", true, Boolean("true") ) [all...] |
/packages/apps/Gallery3D/src/com/cooliris/media/ |
MediaItemTexture.java | 50 public MediaItemTexture(Context context, Config config, MediaItem item) { 53 mItem = item; 59 final MediaItem item = mItem; local 61 MediaSet parentMediaSet = item.mParentMediaSet; 65 if (item.mMimeType != null && item.mMimeType.contains("video")) { 74 long id = parentMediaSet.mPicasaAlbumId == Shared.INVALID ? Utils.Crc64Long(item.mFilePath) : item.mId; 75 return cache.isDataAvailable(id, item.mDateModifiedInSec * 1000); 99 final MediaItem item = mItem local [all...] |
/bootable/diskinstaller/libdiskconfig/ |
write_lst.c | 32 struct write_list *item; local 34 if (!(item = malloc(sizeof(struct write_list) + data_len))) { 39 item->len = data_len; 40 return item; 44 free_wl(struct write_list *item) 46 if (item) 47 free(item); 51 wlist_add(struct write_list **lst, struct write_list *item) 53 item->next = (*lst); 54 *lst = item; [all...] |
/development/samples/ApiDemos/res/menu/ |
shortcuts.xml | 19 <item android:id="@+id/invisible_item" 22 android:title="Invisible item" /> 24 <item android:id="@+id/a_item" 28 <item android:id="@+id/b_item" 32 <item android:id="@+id/c_item" 36 <item android:id="@+id/d_item" 40 <item android:id="@+id/e_item" 44 <item android:id="@+id/f_item" 48 <item android:id="@+id/g_item" 52 <item android:id="@+id/h_item [all...] |
checkable.xml | 25 <item android:title="None"> 31 <item android:id="@+id/noncheckable_item_1" 33 <item android:id="@+id/noncheckable_item_2" 35 <item android:id="@+id/noncheckable_item_3" 39 </item> 41 <item android:title="All"> 46 <item android:id="@+id/checkable_item_1" 48 <item android:id="@+id/checkable_item_2" 51 <item android:id="@+id/checkable_item_3" 56 </item> [all...] |
/system/core/libdiskconfig/ |
write_lst.c | 32 struct write_list *item; local 34 if (!(item = malloc(sizeof(struct write_list) + data_len))) { 39 item->len = data_len; 40 return item; 44 free_wl(struct write_list *item) 46 if (item) 47 free(item); 51 wlist_add(struct write_list **lst, struct write_list *item) 53 item->next = (*lst); 54 *lst = item; [all...] |
/packages/apps/AlarmClock/res/values/ |
strings.xml | 22 <!-- Menu item on Alarm Clock screen: Add alarm --> 25 <!-- Context Menu Item on Alarm Settings screen: Delete alarm --> 28 <!-- Context Menu Item on Alarm Settings screen: Enable alarm --> 31 <!-- Context Menu Item on Alarm Settings screen: Disable alarm --> 37 <!-- Menu item on Alarm Clock screen: Show clock --> 40 <!-- Menu item on Alarm Clock screen: Hide clock --> 92 <item>This alarm is set for less than 1 minute from now.</item> 93 <item>This alarm is set for <xliff:g id="DAYS" example="2 days">%1$s</xliff:g> from now.</item> [all...] |
styles.xml | 19 <item name="android:layout_width">match_parent</item> 20 <item name="android:layout_height">match_parent</item> 21 <item name="android:layout_gravity">center_horizontal</item> 27 <item name="android:windowBackground">@android:color/transparent</item>
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/TypeConversion/ |
9.5-2.js | 92 var item = 0; 94 array[item++] = new TestCase( SECTION, "0 << 0", 0, 0 << 0 ); 95 array[item++] = new TestCase( SECTION, "-0 << 0", 0, -0 << 0 ); 96 array[item++] = new TestCase( SECTION, "Infinity << 0", 0, "Infinity" << 0 ); 97 array[item++] = new TestCase( SECTION, "-Infinity << 0", 0, "-Infinity" << 0 ); 98 array[item++] = new TestCase( SECTION, "Number.POSITIVE_INFINITY << 0", 0, Number.POSITIVE_INFINITY << 0 ); 99 array[item++] = new TestCase( SECTION, "Number.NEGATIVE_INFINITY << 0", 0, Number.NEGATIVE_INFINITY << 0 ); 100 array[item++] = new TestCase( SECTION, "Number.NaN << 0", 0, Number.NaN << 0 ); 102 array[item++] = new TestCase( SECTION, "Number.MIN_VALUE << 0", 0, Number.MIN_VALUE << 0 ); 103 array[item++] = new TestCase( SECTION, "-Number.MIN_VALUE << 0", 0, -Number.MIN_VALUE < (…) [all...] |
/development/samples/SkeletonApp/res/values/ |
styles.xml | 24 <item name="android:layout_width">wrap_content</item> 25 <item name="android:layout_height">wrap_content</item> 26 <item name="android:textAppearance">@style/TextAppearance.ActionButton</item> 33 <item name="android:textStyle">italic</item>
|
/frameworks/base/core/res/res/drawable/ |
btn_circle.xml | 18 <item android:state_window_focused="false" android:state_enabled="true" 20 <item android:state_window_focused="false" android:state_enabled="false" 22 <item android:state_pressed="true" android:state_enabled="false" 24 <item android:state_pressed="true" 26 <item android:state_focused="true" android:state_enabled="true" 28 <item android:state_enabled="true" 30 <item android:state_focused="true" 32 <item
|
btn_check.xml | 21 <item android:state_checked="true" android:state_window_focused="false" 24 <item android:state_checked="false" android:state_window_focused="false" 28 <item android:state_checked="true" android:state_pressed="true" 31 <item android:state_checked="false" android:state_pressed="true" 35 <item android:state_checked="true" android:state_focused="true" 38 <item android:state_checked="false" android:state_focused="true" 42 <item android:state_checked="false" 45 <item android:state_checked="true" 52 <item android:state_checked="true" android:state_window_focused="false" 54 <item android:state_checked="false" android:state_window_focused="false [all...] |
btn_star.xml | 18 <item android:state_checked="false" android:state_window_focused="false" 20 <item android:state_checked="true" android:state_window_focused="false" 22 <item android:state_checked="true" android:state_window_focused="false" 24 <item android:state_checked="false" android:state_window_focused="false" 27 <item android:state_checked="true" android:state_pressed="true" 29 <item android:state_checked="false" android:state_pressed="true" 32 <item android:state_checked="true" android:state_focused="true" 34 <item android:state_checked="false" android:state_focused="true" 37 <item android:state_checked="true" android:state_focused="true" android:state_enabled="false" 39 <item android:state_checked="true" android:state_focused="false" android:state_enabled="false [all...] |
/frameworks/base/tests/LocationTracker/res/menu/ |
menu.xml | 20 <item android:id="@+id/start_service_menu" 22 <item android:id="@+id/stop_service_menu" 24 <item android:id="@+id/settings_menu" 26 <item android:id="@+id/export_sub_menu" 29 <item android:id="@+id/export_kml" 31 <item android:id="@+id/export_csv" 34 </item> 35 <item android:title="@string/clear_data"
|
/frameworks/base/tools/localize/testdata/values/ |
strings.xml | 27 <item>Email</item> 28 <item>Home</item> 29 <item>Work</item> 30 <item>Other\u2026</item>
|
/external/ipsec-tools/src/racoon/ |
isakmp_frag.c | 183 struct isakmp_frag_item *item; local 213 if ((item = racoon_malloc(sizeof(*item))) == NULL) { 222 item->frag_num = frag->index; 223 item->frag_last = (frag->flags & ISAKMP_FRAG_LAST); 224 item->frag_next = NULL; 225 item->frag_packet = buf; 227 /* Look for the last frag while inserting the new item in the chain */ 228 if (item->frag_last) 229 last_frag = item->frag_num 270 struct isakmp_frag_item *item; local [all...] |
/device/htc/dream-sapphire/overlay/frameworks/base/core/res/res/values/ |
config.xml | 43 <item>"wifi,1,1,1"</item> 44 <item>"mobile,0,0,0"</item> 45 <item>"mobile_mms,2,0,2"</item> 46 <item>"mobile_supl,3,0,2"</item> 47 <item>"mobile_dun,4,0,4"</item> [all...] |
/frameworks/base/core/java/android/view/ |
MenuItem.java | 26 * Interface for direct access to a previously created menu item. 28 * An Item is returned by calling one of the {@link android.view.Menu#add} 35 * Interface definition for a callback to be invoked when a menu item is 43 * Called when a menu item has been invoked. This is the first code 47 * @param item The menu item that was invoked. 52 public boolean onMenuItemClick(MenuItem item); 56 * Return the identifier for this menu item. The identifier can not 59 * @return The menu item's identifier. 64 * Return the group identifier that this menu item is part of. The grou [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
Statistics.java | 29 /** {@code non-null;} data about each type of item */ 40 * Adds the given item to the statistics. 42 * @param item {@code non-null;} the item to add 44 public void add(Item item) { 45 String typeName = item.typeName(); 49 dataMap.put(typeName, new Data(item, typeName)); 51 data.add(item); 61 Collection<? extends Item> items = list.items() [all...] |