Searched refs:item (Results 276 - 300 of 2965) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/FunctionObjects/
H A D15.3.2.1-3.js51 var item = 0;
74 array[item++] = new TestCase( SECTION, "MyFunc.length", 2000, MyFunc.length );
75 array[item++] = new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, eval("var MY_OB = MyFunc("+s+"); MY_OB") );
77 array[item++] = new TestCase( SECTION, "MyObject.length", 2000, MyObject.length );
79 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") );
80 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()") );
81 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)") );
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/FilteringController/
H A DFilteringArrayController.py44 for item in objects:
45 if item == self.newObj:
46 # if the item has just been created, add it unconditionally
47 matchedObjects.append(item)
50 lowerName = item.valueForKeyPath_(u"firstName").lower()
52 matchedObjects.append(item)
54 lowerName = item.valueForKeyPath_(u"lastName").lower()
56 matchedObjects.append(item)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/CocoaBindings/FilteringController/
H A DFilteringArrayController.py44 for item in objects:
45 if item == self.newObj:
46 # if the item has just been created, add it unconditionally
47 matchedObjects.append(item)
50 lowerName = item.valueForKeyPath_(u"firstName").lower()
52 matchedObjects.append(item)
54 lowerName = item.valueForKeyPath_(u"lastName").lower()
56 matchedObjects.append(item)
/macosx-10.9.5/BerkeleyDB-21/db/hsearch/
H A Dhsearch.c90 __db_hsearch(item, action)
91 ENTRY item;
101 DB_INIT_DBT(key, item.key, strlen(item.key) + 1);
106 DB_SET_DBT(val, item.data, strlen(item.data) + 1);
130 item.data = (char *)val.data;
136 retval.key = item.key;
137 retval.data = item.data;
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/String/
H A D15.5.3.2-3.js53 var item = 0;
56 array[item++] = new TestCase( SECTION,
63 array[item++] = new TestCase( SECTION,
70 array[item++] = new TestCase( SECTION,
77 array[item++] = new TestCase( SECTION,
84 array[item++] = new TestCase( SECTION,
90 array[item++] = new TestCase( SECTION, "(String.fromCharCode(65535)).charCodeAt(0)", 65535, (String.fromCharCode(65535)).charCodeAt(0) );
91 array[item++] = new TestCase( SECTION, "(String.fromCharCode(65536)).charCodeAt(0)", 0, (String.fromCharCode(65536)).charCodeAt(0) );
92 array[item++] = new TestCase( SECTION, "(String.fromCharCode(65537)).charCodeAt(0)", 1, (String.fromCharCode(65537)).charCodeAt(0) );
H A D15.5.3.1-1.js51 var item = 0;
53 array[item++] = new TestCase( SECTION, "String.prototype.length", 0, String.prototype.length );
55 array[item++] = new TestCase( SECTION,
H A D15.5.4.1.js44 var item = 0;
46 array[item++] = new TestCase( SECTION, "String.prototype.constructor == String", true, String.prototype.constructor == String );
47 array[item++] = new TestCase( SECTION, "var STRING = new String.prototype.constructor('hi'); STRING.getClass = Object.prototype.toString; STRING.getClass()",
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dhsearch.c64 ENTRY item; member in struct:_hash_s
77 free(((Hash_t*)obj)->item.key);
117 ENTRY* hsearch(ENTRY item, ACTION action) argument
119 ENTRY* hsearch(item, action)
120 ENTRY item;
129 if(!(o = (Hash_t*)dtmatch(Hashtab,item.key)) && action == ENTER &&
131 { o->item = item;
135 return o ? &(o->item) : NIL(ENTRY*);
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_rd_block_parser.rb46 item("one", para("desc one")),
47 item("two", para("desc two"))))
61 item(nil, para("one")),
62 item(nil, para("two"))))
77 item(nil,
95 item(nil, para(*contents))))
102 (1) item
109 item(nil,
110 para("item"),
126 item(ni
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/emacs-lisp/
H A Deasymenu.el58 The first element of MENU must be a string. It is the menu bar item name.
78 A menu item is usually a vector of three elements: [NAME CALLBACK ENABLE]
80 NAME is a string--the menu item name.
82 CALLBACK is a command to run when the item is chosen,
83 or a list to evaluate when the item is chosen.
85 ENABLE is an expression; the item is enabled for selection
88 Alternatively, a menu item may have the form:
96 KEYS is a string; a complex keyboard equivalent to this menu item.
104 menu item.
106 a menu. Use `:key-sequence nil' when you know that this menu item ha
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/Boolean/
H A D15.6.3.1-4.js49 var item = 0;
53 array[item++] = new TestCase( SECTION,
58 array[item++] = new TestCase( SECTION,
H A D15.6.3.1.js52 var item = 0;
54 array[item++] = new TestCase( SECTION, "Boolean.prototype.valueOf()", false, Boolean.prototype.valueOf() );
55 array[item++] = new TestCase( SECTION, "Boolean.length", 1, Boolean.length );
H A D15.6.3.js48 var item = 0;
50 array[item++] = new TestCase( SECTION, "Boolean.__proto__ == Function.prototype", true, Boolean.__proto__ == Function.prototype );
51 array[item++] = new TestCase( SECTION, "Boolean.length", 1, Boolean.length );
H A D15.6.4.2-3.js48 var item = 0;
50 array[item++] = new TestCase( SECTION, "tostr=Boolean.prototype.toString; x=true; x.toString=tostr;x.toString()", "true", eval("tostr=Boolean.prototype.toString; x=true; x.toString=tostr;x.toString()") );
51 array[item++] = new TestCase( SECTION, "tostr=Boolean.prototype.toString; x=false; x.toString=tostr;x.toString()", "false", eval("tostr=Boolean.prototype.toString; x=false; x.toString=tostr;x.toString()") );
H A D15.6.4.3-2.js48 var item = 0;
50 array[item++] = new TestCase( SECTION, "valof=Boolean.prototype.valueOf; x=new Boolean(); x.valueOf=valof;x.valueOf()", false, eval("valof=Boolean.prototype.valueOf; x=new Boolean(); x.valueOf=valof;x.valueOf()") );
51 array[item++] = new TestCase( SECTION, "valof=Boolean.prototype.valueOf; x=new Boolean(true); x.valueOf=valof;x.valueOf()", true, eval("valof=Boolean.prototype.valueOf; x=new Boolean(true); x.valueOf=valof;x.valueOf()") );
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/LexicalConventions/
H A D7.2-6.js51 var item = 0;
53 array[item++] = new TestCase( SECTION, "var a\u000Ab = 5; ab=10;ab;", 10, eval("var a\nb = 5; ab=10;ab") );
54 array[item++] = new TestCase( SECTION, "var a\u000Db = 5; ab=10;b;", 5, eval("var a\nb = 5; ab=10;b") );
H A D7.5-1.js45 var item = 0;
47 array[item++] = new TestCase( SECTION, "var $123 = 5", 5, eval("var $123 = 5;$123") );
48 array[item++] = new TestCase( SECTION, "var _123 = 5", 5, eval("var _123 = 5;_123") );
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/Math/
H A D15.8-1.js60 var item = 0;
61 array[item++] = new TestCase( SECTION,
66 array[item++] = new TestCase( SECTION,
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/Number/
H A D15.7.3.2-2.js47 var item = 0;
49 array[item++] = new TestCase( SECTION, "delete( Number.MAX_VALUE ); Number.MAX_VALUE", 1.7976931348623157e308, "delete( Number.MAX_VALUE );Number.MAX_VALUE" );
50 array[item++] = new TestCase( SECTION, "delete( Number.MAX_VALUE )", false, "delete( Number.MAX_VALUE )" );
H A D15.7.3.js50 var item = 0;
51 array[item++] = new TestCase(SECTION, "Number.__proto__", Function.prototype, Number.__proto__ );
52 array[item++] = new TestCase(SECTION, "Number.length", 1, Number.length );
/macosx-10.9.5/WebKit-7537.78.2/mac/History/
H A DWebBackForwardList.h57 - (void)addItem:(WebHistoryItem *)item;
74 @param item The history item to move the pointer to
76 - (void)goToItem:(WebHistoryItem *)item;
145 @param item The item that will be checked for presence in the WebBackForwardList.
146 @result Returns YES if the item is in the list.
148 - (BOOL)containsItem:(WebHistoryItem *)item;
153 @param index Index of the desired list item relative to the current item;
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/
H A Dewk_context_menu.cpp63 if (EwkContextMenuItem* item = static_cast<EwkContextMenuItem*>(data)) {
64 item->setParentMenu(this);
65 m_contextMenuItems = eina_list_append(m_contextMenuItems, item);
85 void EwkContextMenu::appendItem(EwkContextMenuItem* item) argument
87 item->setParentMenu(this);
89 if (item->type() == EWK_SUBMENU_TYPE)
90 item->subMenu()->setEwkView(this->ewkView());
92 m_contextMenuItems = eina_list_append(m_contextMenuItems, item);
95 void EwkContextMenu::removeItem(EwkContextMenuItem* item) argument
97 m_contextMenuItems = eina_list_remove(m_contextMenuItems, item);
100 contextMenuItemSelected(WKContextMenuItemRef item) argument
120 ewk_context_menu_item_append(Ewk_Context_Menu* menu, Ewk_Context_Menu_Item* item) argument
130 ewk_context_menu_item_remove(Ewk_Context_Menu* menu, Ewk_Context_Menu_Item* item) argument
155 ewk_context_menu_item_select(Ewk_Context_Menu* menu, Ewk_Context_Menu_Item* item) argument
[all...]
H A Dewk_context_menu.h65 * Appends the item of the context menu.
68 * @param item the item to append
71 EAPI Eina_Bool ewk_context_menu_item_append(Ewk_Context_Menu *menu, Ewk_Context_Menu_Item *item);
74 * Removes the item of the context menu.
77 * @param item the item to remove
80 EAPI Eina_Bool ewk_context_menu_item_remove(Ewk_Context_Menu *menu, Ewk_Context_Menu_Item *item);
99 * Selects the item from the context menu.
102 * @param item th
[all...]
H A Dewk_popup_menu_item_private.h41 static PassOwnPtr<EwkPopupMenuItem> create(WKPopupItemRef item) argument
43 return adoptPtr(new EwkPopupMenuItem(item));
59 explicit EwkPopupMenuItem(WKPopupItemRef item);
/macosx-10.9.5/ruby-104/ruby/test/rss/
H A Dtest_maker_trackback.rb25 item = maker.items.last
26 item.trackback_ping = @elements[:ping]
28 item.trackback_abouts.new_about do |new_about|

Completed in 429 milliseconds

<<11121314151617181920>>