Searched refs:item (Results 176 - 200 of 3493) sorted by relevance

1234567891011>>

/external/webkit/Examples/NetscapeCocoaPlugin/
H A DMenuHandler.m73 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/WebCore/dom/
H A DTouchList.cpp34 Touch* TouchList::item(unsigned index) function in class:WebCore::TouchList
/external/webkit/Source/WebCore/fileapi/
H A DFileList.cpp37 File* FileList::item(unsigned index) const function in class:WebCore::FileList
/external/webkit/Source/WebKit2/Shared/
H A DMutableDictionary.cpp39 bool MutableDictionary::add(const String& key, APIObject* item) argument
41 std::pair<MapType::iterator, bool> result = m_map.add(key, item);
45 bool MutableDictionary::set(const String& key, APIObject* item) argument
47 std::pair<MapType::iterator, bool> result = m_map.set(key, item);
/external/smack/src/org/jivesoftware/smackx/muc/
H A DOccupant.java42 Occupant(MUCAdmin.Item item) { argument
44 this.jid = item.getJid();
45 this.affiliation = item.getAffiliation();
46 this.role = item.getRole();
47 this.nick = item.getNick();
54 MUCUser.Item item = mucUser.getItem();
55 this.jid = item.getJid();
56 this.affiliation = item.getAffiliation();
57 this.role = item.getRole();
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Array/
H A D15.4.2.2-2.js64 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 );
H A D15.4.2.3.js47 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 );
H A D15.4.4.2.js46 var item = 0;
48 array[item++] = new TestCase( SECTION, "Array.prototype.toString.length", 0, Array.prototype.toString.length );
50 array[item++] = new TestCase( SECTION, "(new Array()).toString()", "", (new Array()).toString() );
51 array[item++] = new TestCase( SECTION, "(new Array(2)).toString()", ",", (new Array(2)).toString() );
52 array[item++] = new TestCase( SECTION, "(new Array(0,1)).toString()", "0,1", (new Array(0,1)).toString() );
53 array[item++] = new TestCase( SECTION, "(new Array( Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY)).toString()", "NaN,Infinity,-Infinity", (new Array( Number.NaN, Number.POSITIVE_INFINITY, Number.NEGATIVE_INFINITY)).toString() );
55 array[item++] = new TestCase( SECTION, "(new Array( Boolean(1), Boolean(0))).toString()", "true,false", (new Array(Boolean(1),Boolean(0))).toString() );
56 array[item++] = new TestCase( SECTION, "(new Array(void 0,null)).toString()", ",", (new Array(void 0,null)).toString() );
68 array[item++] = new TestCase( SECTION, "MYARR.toString()", EXPECT_STRING, MYARR.toString() );
H A D15.4.4.3-1.js50 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
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
H A D15.3.5-1.js69 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/NativeObjects/
H A D15-1.js51 var item = 0;
53 array[item++] = new TestCase( SECTION, "Function.prototype.__proto__", Object.prototype, Function.prototype.__proto__ );
54 array[item++] = new TestCase( SECTION, "Array.prototype.__proto__", Object.prototype, Array.prototype.__proto__ );
55 array[item++] = new TestCase( SECTION, "String.prototype.__proto__", Object.prototype, String.prototype.__proto__ );
56 array[item++] = new TestCase( SECTION, "Boolean.prototype.__proto__", Object.prototype, Boolean.prototype.__proto__ );
57 array[item++] = new TestCase( SECTION, "Number.prototype.__proto__", Object.prototype, Number.prototype.__proto__ );
58 // array[item++] = new TestCase( SECTION, "Math.prototype.__proto__", Object.prototype, Math.prototype.__proto__ );
59 array[item++] = new TestCase( SECTION, "Date.prototype.__proto__", Object.prototype, Date.prototype.__proto__ );
60 array[item++] = new TestCase( SECTION, "TestCase.prototype.__proto__", Object.prototype, TestCase.prototype.__proto__ );
62 array[item
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
H A D15.1.2.5-1.js80 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
[all...]
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebBackForwardListProxy.cpp86 static void updateBackForwardItem(uint64_t itemID, HistoryItem* item) argument
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);
107 WK2NotifyHistoryItemChanged(HistoryItem* item) argument
121 idForItem(HistoryItem* item) argument
144 RefPtr<HistoryItem> item = prpItem; local
162 goToItem(HistoryItem* item) argument
[all...]
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_history.h48 * 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/ceres-solver/docs/
H A Dchanges.tex41 \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 Ad
[all...]
/external/chromium/webkit/glue/
H A Dglue_serialize.cc297 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
296 WriteHistoryItem( const WebHistoryItem& item, SerializeObject* obj) argument
354 WebHistoryItem item; local
417 HistoryItemToString(const WebHistoryItem& item) argument
449 HistoryItemToVersionedString(const WebHistoryItem& item, int version, std::string* serialized_item) argument
482 const WebHistoryItem& item = local
496 const WebHistoryItem& item = local
[all...]
H A Dglue_serialize.h20 const WebKit::WebHistoryItem& item);
26 const WebKit::WebHistoryItem& item, int version,
/external/webrtc/src/system_wrappers/source/
H A Dlist_stl.cc16 ListItem::ListItem(const void* item) argument
18 item_ptr_(item),
23 ListItem::ListItem(const unsigned int item) argument
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
235 Erase(ListItem* item) argument
[all...]
/external/harfbuzz/src/
H A Dharfbuzz-myanmar.c254 static HB_Bool myanmar_shape_syllable(HB_Bool openType, HB_ShaperItem *item, HB_Bool invalid) argument
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
460 HB_MyanmarShape(HB_ShaperItem *item) argument
[all...]
/external/harfbuzz_ng/src/hb-old/
H A Dharfbuzz-myanmar.c254 static HB_Bool myanmar_shape_syllable(HB_Bool openType, HB_ShaperItem *item, HB_Bool invalid) argument
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
461 HB_MyanmarShape(HB_ShaperItem *item) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DStackList.cs52 public void Push(object item) argument
54 Add(item);
/external/chromium/chrome/browser/importer/
H A Dimporter_progress_observer.h20 // Invoked when data for the specified item is about to be collected.
21 virtual void ImportItemStarted(ImportItem item) = 0;
23 // Invoked when data for the specified item has been collected from the
25 virtual void ImportItemEnded(ImportItem item) = 0;
/external/chromium/chrome/common/extensions/docs/js/
H A Dsidebar.js57 * 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'));
/external/dropbear/
H A Dqueue.h30 void* item; member in struct:Link
47 void enqueue(struct Queue* queue, void* item);
/external/icu4c/test/depstest/
H A Ddependencies.py17 items: Map from library or group names to item maps.
18 Each item has a "type" ("library" or "group" or "system_symbols").
19 A library or group item can have an optional set of "files" (as in the files attribute).
20 Each item can have an optional set of "deps" (libraries & groups).
21 A group item also has a "library" name unless it is a group of system symbols.
22 The one "system_symbols" item and its groups have sets of "system_symbols"
30 # item contents: {"type": "binary"} with optional files & deps
73 def _ReadFiles(deps_file, item, library_name):
75 item_files = item.get("files")
80 if item_files == None: item_files = item["file
[all...]

Completed in 1582 milliseconds

1234567891011>>