HomeSort by relevance Sort by last modified time
    Searched full:item (Results 1276 - 1300 of 4518) sorted by null

<<51525354555657585960>>

  /sdk/ddms/app/src/com/android/ddms/
StaticPortConfigDialog.java 268 // create a new item for the table
269 TableItem item = new TableItem(mPortTable, SWT.NONE); local
271 item.setText(COL_DEVICE, deviceName);
272 item.setText(COL_APPLICATION, appName);
273 item.setText(COL_PORT, Integer.toString(portNumber));
293 * @param index The index of the item to be replaced
299 // get the table item by index
300 TableItem item = mPortTable.getItem(index); local
303 item.setText(COL_DEVICE, deviceName);
304 item.setText(COL_APPLICATION, appName)
318 TableItem item = mPortTable.getItem(index); local
328 TableItem item = mPortTable.getItem(index); local
338 TableItem item = mPortTable.getItem(index); local
378 TableItem item = mPortTable.getItem(i); local
    [all...]
  /system/core/libpixelflinger/tinyutils/
SortedVector.h 80 //! finds the index of an item
81 ssize_t indexOf(const TYPE& item) const;
83 //! finds where this item should be inserted
84 size_t orderOf(const TYPE& item) const;
91 //! read-only access to an item at a given index
104 //! add an item in the right place (and replace the one that is there)
105 ssize_t add(const TYPE& item);
107 //! editItemAt() MUST NOT change the order of this item
116 //! removes an item
121 //! remove one item
    [all...]
  /system/wlan/ti/wilink_6_1/utils/
queue.c 58 TI_UINT32 uNodeHeaderOffset; /* Offset of NodeHeader field from the entry of the queued item */
133 * \param uNodeHeaderOffset - Offset of NodeHeader field from the entry of the queued item.
218 * \brief Enqueue an item
220 * Enqueue an item at the queue's head (last in queue).
224 * \param hItem - Handle to queued item
225 * \return TI_OK if item was queued, or TI_NOK if not queued due to overflow
231 TQueNodeHdr *pQueNodeHdr; /* the Node-Header in the given item */
237 /* Find NodeHeader in the given item */
241 /* Check that (pNext == NULL) --> Sanity check that this item was dequeued before */
244 TRACE0(pQue->hReport, REPORT_SEVERITY_ERROR, "que_Enqueue(): Trying to enqueue an item that wasn't dequeued!")
    [all...]
  /frameworks/base/libs/utils/
VectorImpl.cpp 130 ssize_t VectorImpl::insertAt(const void* item, size_t index, size_t numItems)
136 if (item) {
137 _do_splat(where, item, numItems);
166 void* item = reinterpret_cast<char*>(array) + mItemSize*(i); local
168 if (cmp(curr, item, state) > 0) {
176 item = reinterpret_cast<char*>(array) + mItemSize*(i);
182 _do_copy(temp, item, 1);
219 void VectorImpl::push(const void* item)
221 insertAt(item, size());
229 ssize_t VectorImpl::add(const void* item)
    [all...]
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
SdkTargetSelector.java 164 * The event's item contains a {@link TableItem}.
215 * Returns the selected item.
217 * @return The selected item or null.
270 if (e.item instanceof TableItem) {
271 TableItem i = (TableItem) e.item;
283 if (e.item instanceof TableItem) {
284 TableItem i = (TableItem) e.item;
298 private void enforceSingleSelection(TableItem item) {
299 if (item.getChecked()) {
300 Table parentTable = item.getParent()
333 TableItem item = new TableItem(table, SWT.NONE); local
342 TableItem item = new TableItem(table, SWT.NONE); local
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/man/man1/
arm-eabi-ld.1 252 .IX Item "@file"
265 .IX Item "-akeyword"
272 .IX Item "-Aarchitecture"
275 .IX Item "--architecture=architecture"
286 .IX Item "-b input-format"
289 .IX Item "--format=input-format"
314 .IX Item "-c MRI-commandfile"
317 .IX Item "--mri-script=MRI-commandfile"
328 .IX Item "-d"
331 .IX Item "-dc
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/man/man1/
arm-eabi-ld.1 252 .IX Item "@file"
265 .IX Item "-akeyword"
272 .IX Item "-Aarchitecture"
275 .IX Item "--architecture=architecture"
286 .IX Item "-b input-format"
289 .IX Item "--format=input-format"
314 .IX Item "-c MRI-commandfile"
317 .IX Item "--mri-script=MRI-commandfile"
328 .IX Item "-d"
331 .IX Item "-dc
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/man/man1/
arm-eabi-ld.1 252 .IX Item "@file"
265 .IX Item "-akeyword"
272 .IX Item "-Aarchitecture"
275 .IX Item "--architecture=architecture"
286 .IX Item "-b input-format"
289 .IX Item "--format=input-format"
314 .IX Item "-c MRI-commandfile"
317 .IX Item "--mri-script=MRI-commandfile"
328 .IX Item "-d"
331 .IX Item "-dc
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/man/man1/
arm-eabi-ld.1 252 .IX Item "@file"
265 .IX Item "-akeyword"
272 .IX Item "-Aarchitecture"
275 .IX Item "--architecture=architecture"
286 .IX Item "-b input-format"
289 .IX Item "--format=input-format"
314 .IX Item "-c MRI-commandfile"
317 .IX Item "--mri-script=MRI-commandfile"
328 .IX Item "-d"
331 .IX Item "-dc
    [all...]
  /packages/apps/Gallery/res/values/
strings.xml 153 <!-- Menu item for playing the video. -->
176 <item>Large</item>
178 <item>Small</item>
182 <item>1</item>
183 <item>0</item>
196 <item>Newest first</item
    [all...]
  /external/openssl/crypto/engine/
eng_lib.c 158 ENGINE_CLEANUP_ITEM *item = OPENSSL_malloc(sizeof( local
160 if(!item) return NULL;
161 item->cb = cb;
162 return item;
166 ENGINE_CLEANUP_ITEM *item; local
168 item = int_cleanup_item(cb);
169 if(item)
170 sk_ENGINE_CLEANUP_ITEM_insert(cleanup_stack, item, 0);
174 ENGINE_CLEANUP_ITEM *item; local
176 item = int_cleanup_item(cb)
    [all...]
  /external/svox/pico/lib/
picosa.h 50 - all other item types are forwarded through the PU without modification:
61 limits) of items terminated by a PUNC item.
64 empty, non-processed item types can be processed immediately)
66 Ensuring terminal PUNC item:
68 converted to a PUNC(...FLUSH...) item
78 PUNC item enforced if necessary.
97 together with the trailing PUNC item results in:
138 BOUND in item sequence equals PHR0 bound strength)
172 - item size: header plus len=256 (valid for Pico in general)
173 - see defines below for max nr of items. Item heads plus ref. to content
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.4.3-1.js 50 var item = 0;
54 array[item++] = new TestCase( SECTION, "Array.prototype.join.length", 1, Array.prototype.join.length );
55 array[item++] = new TestCase( SECTION, "delete Array.prototype.join.length", false, delete Array.prototype.join.length );
56 array[item++] = new TestCase( SECTION, "delete Array.prototype.join.length; Array.prototype.join.length", 1, eval("delete Array.prototype.join.length; Array.prototype.join.length") );
60 array[item++] = new TestCase( SECTION,
67 array[item++] = new TestCase( SECTION,
73 array[item++] = new TestCase( SECTION,
79 array[item++] = new TestCase( SECTION,
84 array[item++] = new TestCase( SECTION,
90 array[item++] = new TestCase( SECTION
    [all...]
15.4.1.3.js 51 var item = 0;
53 array[item++] = new TestCase( SECTION,
58 array[item++] = new TestCase( SECTION,
63 array[item++] = new TestCase( SECTION,
68 array[item++] = new TestCase( SECTION,
15.4.3.1-2.js 44 var item = 0;
47 array[item++] = new TestCase( SECTION, "var props = ''; for ( p in Array ) { props += p } props", "", eval("var props = ''; for ( p in Array ) { props += p } props") );
49 array[item++] = new TestCase( SECTION, "Array.prototype = null; Array.prototype", ARRAY_PROTO, eval("Array.prototype = null; Array.prototype") );
51 array[item++] = new TestCase( SECTION, "delete Array.prototype", false, delete Array.prototype );
52 array[item++] = new TestCase( SECTION, "delete Array.prototype; Array.prototype", ARRAY_PROTO, eval("delete Array.prototype; Array.prototype") );
  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 99 List<PickAdapter.Item> items = getItems();
107 * Handle clicking of dialog item by passing back
126 * method that calls through to {@link PickAdapter.Item#getIntent(Intent)}.
129 PickAdapter.Item item = (PickAdapter.Item) mAdapter.getItem(position); local
130 return item.getIntent(mBaseIntent);
140 protected List<PickAdapter.Item> getItems() {
142 List<PickAdapter.Item> items = new ArrayList<PickAdapter.Item>();
307 Item item = (Item) getItem(position); local
    [all...]
  /external/dropbear/
queue.c 47 ret = queue->head->item;
66 return queue->head->item;
69 void enqueue(struct Queue* queue, void* item) {
76 newlink->item = item;
  /external/emma/core/java12/com/vladium/emma/report/
IItemVisitor.java 19 Object visit (AllItem item, Object ctx);
20 Object visit (PackageItem item, Object ctx);
21 Object visit (SrcFileItem item, Object ctx);
22 Object visit (ClassItem item, Object ctx);
23 Object visit (MethodItem item, Object ctx);
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.4-1.js 49 var item = 0;
51 array[item++] = new TestCase( SECTION, "typeof Boolean.prototype == typeof( new Boolean )", true, typeof Boolean.prototype == typeof( new Boolean ) );
52 array[item++] = new TestCase( SECTION, "typeof( Boolean.prototype )", "object", typeof(Boolean.prototype) );
53 array[item++] = new TestCase( SECTION,
57 array[item++] = new TestCase( SECTION, "Boolean.prototype.valueOf()", false, Boolean.prototype.valueOf() );
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Date/
15.9.2.2-6.js 50 var item = 0;
53 array[item++] = new TestCase( SECTION, "Date(2031,11,31,23,59,59)", (new Date()).toString(), Date(2031,11,31,23,59,59));
54 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,0)", (new Date()).toString(), Date(2032,0,1,0,0,0) );
55 array[item++] = new TestCase( SECTION, "Date(2032,0,1,0,0,1)", (new Date()).toString(), Date(2032,0,1,0,0,1) );
56 array[item++] = new TestCase( SECTION, "Date(2031,11,31,16,0,0,0)", (new Date()).toString(), Date(2031,11,31,16,0,0,0));
15.9.5.28-1.js 140 var item = testcases.length;
144 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
145 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
147 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
148 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
149 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
150 // testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
151 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
152 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
153 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSe (…)
    [all...]
15.9.5.30-1.js 140 var item = testcases.length;
142 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
143 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
145 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
146 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
147 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
148 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
149 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
150 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
151 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSe (…)
    [all...]
15.9.5.31-1.js 137 var item = testcases.length;
141 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
142 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
144 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
145 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
146 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
147 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
148 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
149 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
150 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSe (…)
    [all...]
15.9.5.36-1.js 170 var item = testcases.length;
174 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
175 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
177 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
178 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
179 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
180 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
181 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
182 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
183 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSe (…)
    [all...]
15.9.5.36-2.js 156 var item = testcases.length;
160 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
161 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
163 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
164 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
165 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
166 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
167 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
168 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
169 testcases[item++] = new TestCase( SECTION, DateString+".getUTCSeconds()", UTCDate.seconds,DateCase.getUTCSe (…)
    [all...]

Completed in 292 milliseconds

<<51525354555657585960>>