HomeSort by relevance Sort by last modified time
    Searched refs:item (Results 176 - 200 of 5060) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Examples/NetscapeCocoaPlugin/
MenuHandler.m 73 NSMenuItem *item = [[NSMenuItem alloc] initWithTitle:@"Open URL" action:@selector(_openURL:) keyEquivalent:@""];
74 [item setTarget:self];
75 [menu addItem:item];
76 [item release];
78 item = [[NSMenuItem alloc] initWithTitle:@"Disabled Item" action:@selector(_disabledItem:) keyEquivalent:@""];
79 [item setTarget:self];
80 [menu addItem:item];
81 [item release];
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
15.4.2.2-2.js 64 var item = 0;
66 array[item++] = new TestCase( SECTION, "(new Array(new Number(1073741823))).length", 1, (new Array(new Number(1073741823))).length );
67 array[item++] = new TestCase( SECTION, "(new Array(new Number(0))).length", 1, (new Array(new Number(0))).length );
68 array[item++] = new TestCase( SECTION, "(new Array(new Number(1000))).length", 1, (new Array(new Number(1000))).length );
69 array[item++] = new TestCase( SECTION, "(new Array('mozilla, larryzilla, curlyzilla')).length", 1, (new Array('mozilla, larryzilla, curlyzilla')).length );
70 array[item++] = new TestCase( SECTION, "(new Array(true)).length", 1, (new Array(true)).length );
71 array[item++] = new TestCase( SECTION, "(new Array(false)).length", 1, (new Array(false)).length);
72 array[item++] = new TestCase( SECTION, "(new Array(new Boolean(true)).length", 1, (new Array(new Boolean(true))).length );
73 array[item++] = new TestCase( SECTION, "(new Array(new Boolean(false)).length", 1, (new Array(new Boolean(false))).length );
15.4.2.3.js 47 var item = 0;
48 array[item++] = new TestCase( SECTION, "new Array() +''", "", (new Array()) +"" );
49 array[item++] = new TestCase( SECTION, "typeof new Array()", "object", (typeof new Array()) );
50 array[item++] = new TestCase( SECTION,
55 array[item++] = new TestCase( SECTION, "(new Array()).length", 0, (new Array()).length );
56 array[item++] = new TestCase( SECTION, "(new Array()).toString == Array.prototype.toString", true, (new Array()).toString == Array.prototype.toString );
57 array[item++] = new TestCase( SECTION, "(new Array()).join == Array.prototype.join", true, (new Array()).join == Array.prototype.join );
58 array[item++] = new TestCase( SECTION, "(new Array()).reverse == Array.prototype.reverse", true, (new Array()).reverse == Array.prototype.reverse );
59 array[item++] = new TestCase( SECTION, "(new Array()).sort == Array.prototype.sort", true, (new Array()).sort == Array.prototype.sort );
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...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
15.3.5-1.js 69 var item = 0;
93 array[item++] = new TestCase( SECTION, "MyFunc.length", 2000, MyFunc.length );
94 array[item++] = new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, eval("var MY_OB = MyFunc("+s+"); MY_OB") );
95 array[item++] = new TestCase( SECTION, "MyFunc.prototype.toString()", "[object Object]", MyFunc.prototype.toString() );
96 array[item++] = new TestCase( SECTION, "typeof MyFunc.prototype", "object", typeof MyFunc.prototype );
99 array[item++] = new TestCase( SECTION, "MyObject.length", 2000, MyObject.length );
101 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1.length") );
102 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1()") );
103 array[item++] = new TestCase( SECTION, "FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1(1,2,3,4,5)", 3, eval("FUN1 = new Function( 'a','b','c', 'return FUN1.length' ); FUN1(1,2,3,4,5)") );
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
15.5.4.5-5.js 72 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++] = new TestCase( SECTION, "x = new String(); x.charCodeAt(0)", Number.NaN, eval("x=ne (…)
    [all...]
  /external/webkit/Source/WebCore/dom/
TouchList.cpp 34 Touch* TouchList::item(unsigned index) function in class:WebCore::TouchList
  /external/webkit/Source/WebCore/fileapi/
FileList.cpp 37 File* FileList::item(unsigned index) const function in class:WebCore::FileList
  /external/webkit/Source/WebKit2/Shared/
MutableDictionary.cpp 39 bool MutableDictionary::add(const String& key, APIObject* item)
41 std::pair<MapType::iterator, bool> result = m_map.add(key, item);
45 bool MutableDictionary::set(const String& key, APIObject* item)
47 std::pair<MapType::iterator, bool> result = m_map.set(key, item);
  /libcore/luni/src/main/java/org/w3c/dom/
DOMStringList.java 26 * Returns the <code>index</code>th item in the collection. If
34 public String item(int index); method in interface:DOMStringList
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Math/
15.8.2.12.js 52 var item = 0;
54 array[item++] = new TestCase( SECTION, "Math.min.length", 2, Math.min.length );
56 array[item++] = new TestCase( SECTION, "Math.min()", Infinity, Math.min() );
57 array[item++] = new TestCase( SECTION, "Math.min(void 0, 1)", Number.NaN, Math.min( void 0, 1 ) );
58 array[item++] = new TestCase( SECTION, "Math.min(void 0, void 0)", Number.NaN, Math.min( void 0, void 0 ) );
59 array[item++] = new TestCase( SECTION, "Math.min(null, 1)", 0, Math.min( null, 1 ) );
60 array[item++] = new TestCase( SECTION, "Math.min(-1, null)", -1, Math.min( -1, null ) );
61 array[item++] = new TestCase( SECTION, "Math.min(true, false)", 0, Math.min(true,false) );
63 array[item++] = new TestCase( SECTION, "Math.min('-99','99')", -99, Math.min( "-99","99") );
65 array[item++] = new TestCase( SECTION, "Math.min(NaN,0)", Number.NaN, Math.min(Number.NaN,0) )
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
15.1.2.5-1.js 80 var item = 0;
82 array[item++] = new TestCase( SECTION, "unescape.length", 1, unescape.length );
83 array[item++] = new TestCase( SECTION, "unescape.length = null; unescape.length", 1, eval("unescape.length=null; unescape.length") );
84 array[item++] = new TestCase( SECTION, "delete unescape.length", false, delete unescape.length );
85 array[item++] = new TestCase( SECTION, "delete unescape.length; unescape.length", 1, eval("delete unescape.length; unescape.length") );
86 array[item++] = new TestCase( SECTION, "var MYPROPS=''; for ( var p in unescape ) { MYPROPS+= p }; MYPROPS", "", eval("var MYPROPS=''; for ( var p in unescape ) { MYPROPS+= p }; MYPROPS") );
88 array[item++] = new TestCase( SECTION, "unescape()", "undefined", unescape() );
89 array[item++] = new TestCase( SECTION, "unescape('')", "", unescape('') );
90 array[item++] = new TestCase( SECTION, "unescape( null )", "null", unescape(null) );
91 array[item++] = new TestCase( SECTION, "unescape( void 0 )", "undefined", unescape(void 0) )
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebBackForwardListProxy.cpp 86 static void updateBackForwardItem(uint64_t itemID, HistoryItem* item)
89 item->encodeBackForwardTree(encoder);
92 item->originalURLString(), item->urlString(), item->title(), encoder.data()), 0);
97 RefPtr<HistoryItem> item = prpItem; local
99 // This item/itemID pair should not already exist in our maps.
100 ASSERT(!historyItemToIDMap().contains(item.get()));
103 historyItemToIDMap().set(item, itemID);
104 idToHistoryItemMap().set(itemID, item);
144 RefPtr<HistoryItem> item = prpItem; local
    [all...]
  /external/webkit/Source/WebKit/efl/ewk/
ewk_history.h 48 * Represents one item from Ewk_History.
57 EAPI Eina_Bool ewk_history_history_item_add(Ewk_History *history, const Ewk_History_Item *item);
58 EAPI Eina_Bool ewk_history_history_item_set(Ewk_History *history, const Ewk_History_Item *item);
63 EAPI Eina_Bool ewk_history_history_item_contains(const Ewk_History *history, const Ewk_History_Item *item);
77 EAPI void ewk_history_item_free(Ewk_History_Item *item);
80 EAPI const char *ewk_history_item_title_get(const Ewk_History_Item *item);
81 EAPI const char *ewk_history_item_title_alternate_get(const Ewk_History_Item *item);
82 EAPI void ewk_history_item_title_alternate_set(Ewk_History_Item *item, const char *title);
83 EAPI const char *ewk_history_item_uri_get(const Ewk_History_Item *item);
84 EAPI const char *ewk_history_item_uri_original_get(const Ewk_History_Item *item);
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/NativeObjects/
15-2.js 50 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++] = new TestCase( SECTION, "Math.pow.__proto__", Function.prototype, Math.pow.__proto__ )
    [all...]
  /frameworks/base/core/java/android/speech/tts/
AudioPlaybackHandler.java 41 private void stop(PlaybackQueueItem item) {
42 if (item == null) {
46 item.stop(false);
49 public void enqueue(PlaybackQueueItem item) {
51 mQueue.put(item);
76 * @return false iff the queue is empty and no queue item is currently
106 final PlaybackQueueItem item = it.next(); local
107 if (item.getCallerIdentity() == callerIdentity) {
121 PlaybackQueueItem item = null; local
123 item = mQueue.take()
    [all...]
  /external/ceres-solver/docs/
changes.tex 41 \item A new richer, more expressive and consistent API for ordering
43 \item A non-linear generalization of Ruhe \& Wedin's Algorithm
48 \item An image denoising example using fields of experts. (Petter
50 \item Defines for Ceres version and ABI version.
51 \item Higher precision timer code where available. (Petter Strandmark)
52 \item Example Makefile for users of Ceres.
53 \item IterationSummary now informs the user when the step is a
55 \item Fewer memory allocations when using \texttt{DenseQRSolver}.
56 \item GradientChecker for testing CostFunctions (William Rucklidge)
57 \item Add support for cost functions with 10 parameter blocks i
    [all...]
  /external/chromium/webkit/glue/
glue_serialize.cc 297 const WebHistoryItem& item, SerializeObject* obj) {
304 WriteString(item.urlString(), obj);
305 WriteString(item.originalURLString(), obj);
306 WriteString(item.target(), obj);
307 WriteString(item.parent(), obj);
308 WriteString(item.title(), obj);
309 WriteString(item.alternateTitle(), obj);
310 WriteReal(item.lastVisitedTime(), obj);
311 WriteInteger(item.scrollOffset().x, obj);
312 WriteInteger(item.scrollOffset().y, obj)
354 WebHistoryItem item; local
482 const WebHistoryItem& item = local
496 const WebHistoryItem& item = local
    [all...]
glue_serialize.h 20 const WebKit::WebHistoryItem& item);
26 const WebKit::WebHistoryItem& item, int version,
  /external/webrtc/src/system_wrappers/source/
list_stl.cc 16 ListItem::ListItem(const void* item)
18 item_ptr_(item),
23 ListItem::ListItem(const unsigned int item)
26 item_(item)
73 ListItem* item = new ListItem(ptr); local
74 list_.push_back(item);
80 ListItem* item = new ListItem(item_id); local
81 list_.push_back(item);
87 ListItem* item = new ListItem(item_id); local
88 list_.push_front(item);
94 ListItem* item = new ListItem(ptr); local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapter.java 78 void bindGridView(View view, Context context, BrowserBookmarksAdapterItem item) {
88 tv.setText(item.title);
89 if (item.is_folder) {
96 if (item.thumbnail == null || !item.has_thumbnail) {
99 thumb.setImageDrawable(item.thumbnail);
107 BrowserBookmarksAdapterItem item) {
108 if (item == null) {
109 item = new BrowserBookmarksAdapterItem();
111 Bitmap thumbnail = item.thumbnail != null ? item.thumbnail.getBitmap() : null
127 BrowserBookmarksAdapterItem item = new BrowserBookmarksAdapterItem(); local
    [all...]
  /external/harfbuzz/src/
harfbuzz-myanmar.c 254 static HB_Bool myanmar_shape_syllable(HB_Bool openType, HB_ShaperItem *item, HB_Bool invalid)
257 // MMDEBUG("\nsyllable from %d len %d, str='%s'", item->item.pos, item->item.length,
258 // item->string->mid(item->from, item->length).toUtf8().data());
262 const int availableGlyphs = item->num_glyphs;
264 const HB_UChar16 *uc = item->string + item->item.pos
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-myanmar.c 254 static HB_Bool myanmar_shape_syllable(HB_Bool openType, HB_ShaperItem *item, HB_Bool invalid)
257 // MMDEBUG("\nsyllable from %d len %d, str='%s'", item->item.pos, item->item.length,
258 // item->string->mid(item->from, item->length).toUtf8().data());
262 const int availableGlyphs = item->num_glyphs;
264 const HB_UChar16 *uc = item->string + item->item.pos
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
StackList.cs 52 public void Push(object item)
54 Add(item);
  /external/chromium/chrome/common/extensions/docs/js/
sidebar.js 57 * If a list item possesses the class "leftNavSelected" its ancestor <ul> is
65 var item = items[i];
66 if (item.className == 'leftNavSelected') {
67 selectedNode = item;
68 } else if (item.firstChild &&
69 item.firstChild.nodeType == TEXT_NODE) {
77 item.insertBefore(a, item.firstChild);
78 toggleList(item.getElementsByTagName('ul'));

Completed in 666 milliseconds

1 2 3 4 5 6 78 91011>>