Searched refs:item (Results 126 - 150 of 3493) sorted by relevance

1234567891011>>

/external/hamcrest/src/org/hamcrest/
H A DMatcher.java24 * Evaluates the matcher for argument <var>item</var>.
31 * @param item the object against which the matcher is evaluated.
32 * @return <code>true</code> if <var>item</var> matches, otherwise <code>false</code>.
36 boolean matches(Object item); argument
/external/smack/src/org/jivesoftware/smackx/
H A DOfflineMessageHeader.java50 public OfflineMessageHeader(DiscoverItems.Item item) { argument
52 user = item.getEntityID();
53 jid = item.getName();
54 stamp = item.getNode();
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
H A D15.5.4.5-5.js72 var item = 0;
73 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(0)", 0x0074, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(0)") );
74 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(1)", 0x0072, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(1)") );
75 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(2)", 0x0075, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(2)") );
76 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(3)", 0x0065, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(3)") );
77 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(4)") );
78 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(-1)", Number.NaN, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(-1)") );
80 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(true)", 0x0072, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(true)") );
81 array[item++] = new TestCase( SECTION, "x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(false)", 0x0074, eval("x = new Boolean(true); x.charCodeAt=String.prototype.charCodeAt;x.charCodeAt(false)") );
83 array[item
[all...]
H A D15.5.4.5-3.js72 var item = 0;
76 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(0)", 0x0068, foo.charCodeAt(0) );
77 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(1)", 0x0065, foo.charCodeAt(1) );
78 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(2)", 0x006c, foo.charCodeAt(2) );
79 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(3)", 0x006c, foo.charCodeAt(3) );
80 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(4)", 0x006f, foo.charCodeAt(4) );
81 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(-1)", Number.NaN, foo.charCodeAt(-1) );
82 array[item++] = new TestCase( SECTION, "var foo = new MyObject('hello');foo.charCodeAt(5)", Number.NaN, foo.charCodeAt(5) );
86 array[item++] = new TestCase( SECTION, "var boo = new MyObject(true);boo.charCodeAt(0)", 0x0074, boo.charCodeAt(0) );
87 array[item
[all...]
H A D15.5.4.6-2.js97 var item = 0;
101 array[item++] = new TestCase( SECTION, "function f() { return this; }; function g() { var h = f; return h(); }; g().toString()", GLOBAL, g().toString() );
104 array[item++] = new TestCase( SECTION, "String.prototype.indexOf.length", 1, String.prototype.indexOf.length );
105 array[item++] = new TestCase( SECTION, "String.prototype.indexOf.length = null; String.prototype.indexOf.length", 1, eval("String.prototype.indexOf.length = null; String.prototype.indexOf.length") );
106 array[item++] = new TestCase( SECTION, "delete String.prototype.indexOf.length", false, delete String.prototype.indexOf.length );
107 array[item++] = new TestCase( SECTION, "delete String.prototype.indexOf.length; String.prototype.indexOf.length", 1, eval("delete String.prototype.indexOf.length; String.prototype.indexOf.length") );
109 array[item++] = new TestCase( SECTION, "var s = new String(); s.indexOf()", -1, eval("var s = new String(); s.indexOf()") );
122 array[item++] = new TestCase( SECTION,
128 array[item++] = new TestCase( SECTION,
138 array[item
[all...]
H A D15.5.4.2-1.js51 var item = 0;
52 array[item++] = new TestCase( SECTION, "String.prototype.toString()", "", String.prototype.toString() );
53 array[item++] = new TestCase( SECTION, "(new String()).toString()", "", (new String()).toString() );
54 array[item++] = new TestCase( SECTION, "(new String(\"\")).toString()", "", (new String("")).toString() );
55 array[item++] = new TestCase( SECTION, "(new String( String() )).toString()","", (new String(String())).toString() );
56 array[item++] = new TestCase( SECTION, "(new String( \"h e l l o\" )).toString()", "h e l l o", (new String("h e l l o")).toString() );
57 array[item++] = new TestCase( SECTION, "(new String( 0 )).toString()", "0", (new String(0)).toString() );
H A D15.5.4.8-3.js91 var item = 0;
98 array[item++] = new TestCase( SECTION,
103 array[item++] = new TestCase( SECTION,
110 array[item++] = new TestCase( SECTION,
115 array[item++] = new TestCase( SECTION,
121 array[item++] = new TestCase( SECTION,
126 array[item++] = new TestCase( SECTION,
131 array[item++] = new TestCase( SECTION,
136 array[item++] = new TestCase( SECTION,
141 array[item
[all...]
/external/smack/src/org/jivesoftware/smackx/muc/
H A DHostedRoom.java41 public HostedRoom(DiscoverItems.Item item) { argument
43 jid = item.getEntityID();
44 name = item.getName();
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKBackForwardListItem.h37 WK_EXPORT WKURLRef WKBackForwardListItemCopyURL(WKBackForwardListItemRef item);
38 WK_EXPORT WKStringRef WKBackForwardListItemCopyTitle(WKBackForwardListItemRef item);
39 WK_EXPORT WKURLRef WKBackForwardListItemCopyOriginalURL(WKBackForwardListItemRef item);
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dmenu.js37 * Walks up the ancestors until a menu item belonging to this menu is found.
39 * @return {cr.ui.MenuItem} The found menu item or null.
50 * Handles mouseover events and selects the hovered item.
60 * Handles mouseout events and deselects any selected item.
69 * The selected menu item or null if none.
75 set selectedItem(item) {
76 var index = Array.prototype.indexOf.call(this.children, item);
87 var item = this.selectedItem;
95 // Edge case when we need to go the last item fisrt.
100 item
[all...]
/external/clang/test/CodeGenCXX/
H A Dtypeid-cxx11.cpp13 template<typename T> constexpr Item item(const char *name) { function in namespace:Test1
23 item<A>("A"), item<B>("B"), item<C>("C"), item<int>("int")
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
H A DReferenceType.java47 public boolean checkItem(Item item) { argument
50 return item instanceof StringIdItem;
52 return item instanceof TypeIdItem;
54 return item instanceof FieldIdItem;
56 return item instanceof MethodIdItem;
/external/webkit/Source/WebCore/platform/
H A DContextMenu.cpp40 const ContextMenuItem& item = items[i]; local
41 if (item.action() == action)
42 return &item;
43 if (item.type() != SubmenuType)
45 if (const ContextMenuItem* subMenuItem = findItemWithAction(action, item.subMenuItems()))
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/NativeObjects/
H A D15-2.js50 var item = 0;
52 array[item++] = new TestCase( SECTION, "Object.__proto__", Function.prototype, Object.__proto__ );
53 array[item++] = new TestCase( SECTION, "Array.__proto__", Function.prototype, Array.__proto__ );
54 array[item++] = new TestCase( SECTION, "String.__proto__", Function.prototype, String.__proto__ );
55 array[item++] = new TestCase( SECTION, "Boolean.__proto__", Function.prototype, Boolean.__proto__ );
56 array[item++] = new TestCase( SECTION, "Number.__proto__", Function.prototype, Number.__proto__ );
57 array[item++] = new TestCase( SECTION, "Date.__proto__", Function.prototype, Date.__proto__ );
58 array[item++] = new TestCase( SECTION, "TestCase.__proto__", Function.prototype, TestCase.__proto__ );
60 array[item++] = new TestCase( SECTION, "eval.__proto__", Function.prototype, eval.__proto__ );
61 array[item
[all...]
/external/qemu/android/utils/
H A Drefset.c18 _arefSet_hashItem( void* item )
22 hash = (uint32_t)(ptrdiff_t)item >> 2;
23 if (sizeof(item) > 4)
24 hash ^= ((uint64_t)(ptrdiff_t)item >> 32);
30 _arefSet_lookup( ARefSet* s, void* item) argument
32 uint32_t hash = _arefSet_hashItem(item);
38 if (*pnode == item || *pnode == NULL)
48 _arefSet_lookupInsert( ARefSet* s, void* item) argument
50 uint32_t hash = _arefSet_hashItem(item);
62 } else if (*pnode == item)
93 void* item = s->buckets[nn]; local
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
H A D15.4.5.2-1.js46 var item = 0;
48 array[item++] = new TestCase( SECTION,
53 array[item++] = new TestCase( SECTION,
58 array[item++] = new TestCase( SECTION,
63 array[item++] = new TestCase( SECTION,
69 array[item++] = new TestCase( SECTION,
74 array[item++] = new TestCase( SECTION,
H A D15.4.5.1-1.js71 var item = 0;
75 array[item++] = new TestCase( SECTION,
81 array[item++] = new TestCase( SECTION,
86 array[item++] = new TestCase( SECTION,
95 array[item++] = new TestCase( SECTION,
100 array[item++] = new TestCase( SECTION,
117 array[item++] = new TestCase( SECTION,
122 array[item++] = new TestCase( SECTION,
130 array[item++] = new TestCase( SECTION,
135 array[item
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
H A D7.2-1.js51 var item = 0;
53 array[item++] = new TestCase( SECTION, "var a\nb = 5; ab=10;ab;", 10, eval("var a\nb = 5; ab=10;ab") );
54 array[item++] = new TestCase( SECTION, "var a\nb = 5; ab=10;b;", 5, eval("var a\nb = 5; ab=10;b") );
55 array[item++] = new TestCase( SECTION, "var a\rb = 5; ab=10;ab;", 10, eval("var a\rb = 5; ab=10;ab") );
56 array[item++] = new TestCase( SECTION, "var a\rb = 5; ab=10;b;", 5, eval("var a\rb = 5; ab=10;b") );
57 array[item++] = new TestCase( SECTION, "var a\r\nb = 5; ab=10;ab;", 10, eval("var a\r\nb = 5; ab=10;ab") );
58 array[item++] = new TestCase( SECTION, "var a\r\nb = 5; ab=10;b;", 5, eval("var a\r\nb = 5; ab=10;b") );
/external/webkit/Tools/DumpRenderTree/
H A DWorkQueue.cpp52 void WorkQueue::queue(WorkQueueItem* item) argument
58 delete item;
62 theQueue[endOfQueue++] = item;
96 WorkQueueItem* item = dequeue(); local
97 ASSERT(item);
98 startedLoad = item->invoke();
99 delete item;
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
H A D15.1.2.2-1.js105 var item = 0;
110 array[item++] = new TestCase( SECTION, "parseInt.length", 2, parseInt.length );
111 array[item++] = new TestCase( SECTION, "parseInt.length = 0; parseInt.length", 2, eval("parseInt.length = 0; parseInt.length") );
112 array[item++] = new TestCase( SECTION, "var PROPS=''; for ( var p in parseInt ) { PROPS += p; }; PROPS", "", eval("var PROPS=''; for ( var p in parseInt ) { PROPS += p; }; PROPS") );
113 array[item++] = new TestCase( SECTION, "delete parseInt.length", false, delete parseInt.length );
114 array[item++] = new TestCase( SECTION, "delete parseInt.length; parseInt.length", 2, eval("delete parseInt.length; parseInt.length") );
115 array[item++] = new TestCase( SECTION, "parseInt.length = null; parseInt.length", 2, eval("parseInt.length = null; parseInt.length") );
117 array[item++] = new TestCase( SECTION, "parseInt()", NaN, parseInt() );
118 array[item++] = new TestCase( SECTION, "parseInt('')", NaN, parseInt("") );
119 array[item
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
H A D15.3.1.1-1.js52 var item = 0;
58 // array[item++] = new TestCase( SECTION, "myfunc.toString()", "function anonymous() { }", myfunc.toString() );
61 array[item++] = new TestCase( SECTION,
65 array[item++] = new TestCase( SECTION, "myfunc.length", 0, myfunc.length );
66 array[item++] = new TestCase( SECTION, "myfunc.prototype.toString()", "[object Object]", myfunc.prototype.toString() );
67 array[item++] = new TestCase( SECTION, "myfunc.prototype.constructor", myfunc, myfunc.prototype.constructor );
68 array[item++] = new TestCase( SECTION, "myfunc.arguments", null, myfunc.arguments );
69 array[item++] = new TestCase( SECTION, "var OBJ = new MyObject(true); OBJ.valueOf()", true, eval("var OBJ = new MyObject(true); OBJ.valueOf()") );
70 array[item++] = new TestCase( SECTION, "OBJ.toString()", "true", OBJ.toString() );
71 array[item
[all...]
H A D15.3.2.1-1.js53 var item = 0;
58 // array[item++] = new TestCase( SECTION, "myfunc.toString()", "function anonymous() { }", myfunc.toString() );
62 array[item++] = new TestCase( SECTION, "myfunc = new Function(); myfunc.toString = Object.prototype.toString; myfunc.toString()",
65 array[item++] = new TestCase( SECTION, "myfunc.length", 0, myfunc.length );
66 array[item++] = new TestCase( SECTION, "myfunc.prototype.toString()", "[object Object]", myfunc.prototype.toString() );
68 array[item++] = new TestCase( SECTION, "myfunc.prototype.constructor", myfunc, myfunc.prototype.constructor );
69 array[item++] = new TestCase( SECTION, "myfunc.arguments", null, myfunc.arguments );
71 array[item++] = new TestCase( SECTION, "var OBJ = new MyObject(true); OBJ.valueOf()", true, eval("var OBJ = new MyObject(true); OBJ.valueOf()") );
72 array[item++] = new TestCase( SECTION, "OBJ.toString()", "true", OBJ.toString() );
73 array[item
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DSection.java50 * if this section already has an item equivalent to the one that is being interned.
61 * The type of item that this section holds
84 * @return the offset of the byte immediate after the last item in this section
93 T item = items.get(i);
94 assert item != null;
96 offset = item.placeAt(offset, i);
116 for (Item item: items) {
117 assert item!=null;
119 item.writeTo(out);
147 * This method in the concrete item subclas
179 intern(T item) argument
197 getInternedItem(T item) argument
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
H A D15.9.3.2-1.js205 item = testcases.length;
207 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", ResultArray[TIME], DateCase.getTime() );
208 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", ResultArray[TIME], DateCase.valueOf() );
210 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", ResultArray[UTC_YEAR], DateCase.getUTCFullYear() );
211 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", ResultArray[UTC_MONTH], DateCase.getUTCMonth() );
212 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", ResultArray[UTC_DATE], DateCase.getUTCDate() );
213 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", ResultArray[UTC_DAY], DateCase.getUTCDay() );
214 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", ResultArray[UTC_HOURS], DateCase.getUTCHours() );
215 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", ResultArray[UTC_MINUTES],DateCase.getUTCMinutes() );
216 testcases[item
[all...]
H A D15.9.3.2-2.js183 item = testcases.length;
185 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", ResultArray[TIME], DateCase.getTime() );
186 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", ResultArray[TIME], DateCase.valueOf() );
188 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", ResultArray[UTC_YEAR], DateCase.getUTCFullYear() );
189 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", ResultArray[UTC_MONTH], DateCase.getUTCMonth() );
190 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", ResultArray[UTC_DATE], DateCase.getUTCDate() );
191 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", ResultArray[UTC_DAY], DateCase.getUTCDay() );
192 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", ResultArray[UTC_HOURS], DateCase.getUTCHours() );
193 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", ResultArray[UTC_MINUTES],DateCase.getUTCMinutes() );
194 testcases[item
[all...]

Completed in 846 milliseconds

1234567891011>>