Searched defs:item (Results 1 - 25 of 208) sorted by relevance

123456789

/external/openssl/crypto/pqueue/
H A Dpq_test.c65 pitem *item; local
70 item = pitem_new(3, NULL);
71 pqueue_insert(pq, item);
73 item = pitem_new(1, NULL);
74 pqueue_insert(pq, item);
76 item = pitem_new(2, NULL);
77 pqueue_insert(pq, item);
79 item = pqueue_find(pq, 1);
80 fprintf(stderr, "found %ld\n", item->priority);
82 item
[all...]
/external/webkit/WebCore/dom/
H A DTouchList.cpp34 Touch* TouchList::item(unsigned index) function in class:WebCore::TouchList
H A DStaticNodeList.cpp41 Node* StaticNodeList::item(unsigned index) const function in class:WebCore::StaticNodeList
H A DClientRectList.cpp55 ClientRect* ClientRectList::item(unsigned index) function in class:WebCore::ClientRectList
H A DChildNodeList.cpp50 Node* ChildNodeList::item(unsigned index) const function in class:WebCore::ChildNodeList
103 // Note: Due to the overrides of the length and item functions above,
/external/webkit/WebCore/html/
H A DFileList.cpp37 File* FileList::item(unsigned index) const function in class:WebCore::FileList
/external/webkit/WebCore/bindings/v8/custom/
H A DV8NamedNodesCollection.cpp38 Node* V8NamedNodesCollection::item(unsigned index) const function in class:WebCore::V8NamedNodesCollection
H A DV8StyleSheetListCustom.cpp51 HTMLStyleElement* item = imp->getNamedItem(toWebCoreString(name)); local
52 if (!item)
55 return toV8(item->sheet());
H A DV8SQLResultSetRowListCustom.cpp44 INC_STATS("DOM.SQLResultSetRowList.item()");
64 v8::Local<v8::Object> item = v8::Object::New(); local
85 item->Set(v8String(rowList->columnNames()[i]), value, static_cast<v8::PropertyAttribute>(v8::DontDelete|v8::ReadOnly));
88 return item;
/external/webkit/JavaScriptCore/tests/mozilla/ecma/Expressions/
H A D11.1.1.js39 var item = 0; variable
45 testcases[item++] = new TestCase( SECTION,
50 testcases[item++] = new TestCase( SECTION,
57 testcases[item++] = new TestCase( SECTION,
64 testcases[item++] = new TestCase( SECTION,
71 testcases[item++] = new TestCase( SECTION,
76 testcases[item++] = new TestCase( SECTION,
81 testcases[item++] = new TestCase( SECTION,
86 testcases[item++] = new TestCase( SECTION,
92 testcases[item
[all...]
/external/dropbear/
H A Dqueue.c47 ret = queue->head->item;
66 return queue->head->item;
69 void enqueue(struct Queue* queue, void* item) { argument
76 newlink->item = item;
H A Dqueue.h30 void* item; member in struct:Link
47 void enqueue(struct Queue* queue, void* item);
/external/emma/core/java12/com/vladium/emma/report/
H A DAbstractItemVisitor.java20 public Object visit (final AllItem item, final Object ctx) argument
25 public Object visit (final PackageItem item, final Object ctx) argument
30 public Object visit (final SrcFileItem item, final Object ctx) argument
35 public Object visit (final ClassItem item, final Object ctx) argument
40 public Object visit (final MethodItem item, final Object ctx) argument
H A DIItemVisitor.java19 Object visit (AllItem item, Object ctx); argument
20 Object visit (PackageItem item, Object ctx); argument
21 Object visit (SrcFileItem item, Object ctx); argument
22 Object visit (ClassItem item, Object ctx); argument
23 Object visit (MethodItem item, Object ctx); argument
/external/webkit/WebCore/bindings/js/
H A DJSInspectorFrontendHostCustom.cpp63 JSObject* item = asObject(array->getIndex(i)); local
64 JSValue label = item->get(execState, Identifier(execState, "label"));
65 JSValue id = item->get(execState, Identifier(execState, "id"));
H A DJSSQLResultSetRowListCustom.cpp42 JSValue JSSQLResultSetRowList::item(ExecState* exec, const ArgList& args) function in class:WebCore::JSSQLResultSetRowList
/external/webkit/WebCore/css/
H A DStyleList.h36 StyleBase* item(unsigned num) { return num < length() ? m_children[num].get() : 0; } function in class:WebCore::StyleList
H A DCSSRuleList.cpp41 StyleBase* style = list->item(i);
57 CSSRule* CSSRuleList::item(unsigned index) function in class:WebCore::CSSRuleList
60 StyleBase* rule = m_list->item(index);
H A DStyleSheetList.cpp53 StyleSheet* StyleSheetList::item(unsigned index) function in class:WebCore::StyleSheetList
/external/webkit/WebCore/html/canvas/
H A DCanvasNumberArray.h46 float item(unsigned index) const { return (index >= m_data.size()) ? 0 : m_data[index]; } function in class:WebCore::CanvasNumberArray
/external/webkit/WebKit/chromium/src/
H A DWebNodeList.cpp75 WebNode WebNodeList::item(size_t index) const function in class:WebKit::WebNodeList
77 return WebNode(m_private->item(index));
/external/webkit/WebKit/qt/tests/qgraphicswebview/
H A Dtst_qgraphicswebview.cpp38 QGraphicsWebView item; local
39 item.url();
40 item.title();
41 item.icon();
42 item.zoomFactor();
43 item.history();
44 item.settings();
45 item.page();
46 item.setPage(0);
47 item
[all...]
/external/wpa_supplicant/wpa_gui/
H A Deventhistory.ui.h34 Q3ListViewItem *item; local
35 item = new Q3ListViewItem(eventListView,
38 if (item == NULL)
40 eventListView->setSelected(item, false);
/external/wpa_supplicant_6/wpa_supplicant/wpa_gui/
H A Deventhistory.ui.h34 Q3ListViewItem *item; local
35 item = new Q3ListViewItem(eventListView,
38 if (item == NULL)
40 eventListView->setSelected(item, false);
/external/openssl/crypto/rand/
H A Drand_vms.c95 } item[32], *pitem; local
101 pitem = item;
123 while ((status = sys$getjpiw(0, &pid, 0, item, iosb, 0, 0))

Completed in 255 milliseconds

123456789