HomeSort by relevance Sort by last modified time
    Searched refs:item (Results 151 - 175 of 4541) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webrtc/src/system_wrappers/interface/
list_wrapper.h 25 ListItem(const unsigned int item);
74 // Returns a pointer to the ListItem stored after item in the list.
75 ListItem* Next(ListItem* item) const;
77 // Returns a pointer to the ListItem stored before item in the list.
78 ListItem* Previous(ListItem* item) const;
80 // Removes item from the list.
81 int Erase(ListItem* item);
83 // Insert list item after existing_previous_item. Please note that new_item
90 // Insert list item before existing_next_item. Please note that new_item
98 void PushBackImpl(ListItem* item);
    [all...]
  /external/webrtc/src/system_wrappers/source/
list_no_stl.h 23 ListNoStlItem(const unsigned int item);
58 ListNoStlItem* Next(ListNoStlItem* item) const;
59 ListNoStlItem* Previous(ListNoStlItem* item) const;
60 int Erase(ListNoStlItem* item);
68 void PushBack(ListNoStlItem* item);
69 void PushFront(ListNoStlItem* item);
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...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8StyleSheetListCustom.cpp 51 HTMLStyleElement* item = imp->getNamedItem(toWebCoreString(name)); local
52 if (!item)
55 return toV8(item->sheet());
  /external/nist-sip/java/gov/nist/core/
MultiMap.java 35 public Object remove( Object key, Object item );
  /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/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/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/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...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
InfoPanel.java 66 TableItem item; local
68 item = new TableItem(mTable, SWT.NONE);
69 item.setText(0, mLabels[i]);
70 item.setText(1, "-");
139 TableItem item = mTable.getItem(i); local
140 item.setText(1, "-");
143 TableItem item; local
159 item = mTable.getItem(ENT_APP_DESCR);
160 item.setText(1, clientDescription);
161 item = mTable.getItem(ENT_VM_VERSION)
    [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/qemu/android/tools/
gen-hw-config.py 28 # a dictionary that maps item types as they appear in the .ini
65 class Item:
95 lastItem = Item(value)
118 for item in items:
119 if item.type == None:
120 sys.stderr.write("ignoring config item with no type '%s'\n" % item.name)
123 if not typesToMacros.has_key(item.type):
124 sys.stderr.write("ignoring config item with unknown type '%s': '%s'\n" % \
125 (item.type, item.name)
    [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...]
  /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...]
  /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/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 298 milliseconds

1 2 3 4 5 67 8 91011>>