Searched refs:item (Results 376 - 400 of 2965) sorted by relevance

<<11121314151617181920>>

/macosx-10.9.5/tcl-102/tcl_ext/bwidget/bwidget/
H A Dlistbox.tcl21 # - ListBox::item - deprecated
149 set data(dnd,item) ""
310 proc ListBox::insert { path index item args } {
314 set item [Widget::nextIndex $path $item]
316 if {[info exists data(exists,$item)]} {
317 return -code error "item \"$item\" already exists"
320 Widget::init ListBox::Item $path.$item $args
322 set data(items) [linsert $data(items) $index $item]
[all...]
/macosx-10.9.5/CPANInternal-140/Krb5-1.9/
H A DKrb5.pm110 =item error(n)
116 =item init_context()
121 =item init_ets() (DEPRECATED)
126 =item get_default_realm()
130 =item get_host_realm(host)
134 =item get_krbhst(realm)
138 =item build_principal_ext(p)
145 =item parse_name(name)
150 =item sname_to_principal(hostname,sname,type)
156 =item cc_resolv
[all...]
/macosx-10.9.5/ruby-104/ruby/sample/rss/
H A Dlist_description.rb63 maker.items.each do |item|
64 item.title ||= "No title"
65 item.link ||= "UNKNOWN"
70 rss.items.each do |item|
72 channels[rss.channel.title] << item if item.description
84 end[0..10].each do |item|
85 puts " Item: #{item.title.shorten(50)}"
86 puts " Description: #{item.description.shorten(50)}"
/macosx-10.9.5/BerkeleyDB-21/db/test/
H A Denv007.tcl104 foreach item $rlist {
105 set envarg [lindex $item 0]
106 set configarg [lindex $item 1]
107 set envval [lindex $item 2]
108 set configval [lindex $item 3]
109 set msg [lindex $item 4]
110 set statcmd [lindex $item 5]
111 set statstr [lindex $item 6]
112 set index [lindex $item 7]
113 set getter [lindex $item
[all...]
/macosx-10.9.5/WebKit-7537.78.2/gtk/webkit/
H A Dwebkitwebhistoryitem.cpp35 * @short_description: One item of the #WebKitWebBackForwardList and or global history
38 * A history item consists out of a title and a uri. It can be part of the
101 WebCore::HistoryItem* item = core(webHistoryItem); local
102 item->deref();
136 * The title of the history item.
145 _("The title of the history item"),
152 * The alternate title of the history item.
161 _("The alternate title of the history item"),
168 * The URI of the history item.
177 _("The URI of the history item"),
280 RefPtr<WebCore::HistoryItem> item = WebCore::HistoryItem::create(); local
303 RefPtr<WebCore::HistoryItem> item = WebCore::HistoryItem::create(historyUri, historyTitle, 0); local
320 WebCore::HistoryItem* item = core(webHistoryItem); local
342 WebCore::HistoryItem* item = core(webHistoryItem); local
364 WebCore::HistoryItem* item = core(webHistoryItem); local
382 WebCore::HistoryItem* item = core(WEBKIT_WEB_HISTORY_ITEM(webHistoryItem)); local
404 WebCore::HistoryItem* item = core(WEBKIT_WEB_HISTORY_ITEM(webHistoryItem)); local
426 WebCore::HistoryItem* item = core(WEBKIT_WEB_HISTORY_ITEM(webHistoryItem)); local
447 WebKitWebHistoryItem* item = WEBKIT_WEB_HISTORY_ITEM(g_object_new(WEBKIT_TYPE_WEB_HISTORY_ITEM, 0)); local
466 WebCore::HistoryItem* item = core(webHistoryItem); local
478 WebCore::HistoryItem* item = core(webHistoryItem); local
489 WebCore::HistoryItem* item = core(webHistoryItem); local
516 RefPtr<WebCore::HistoryItem> item = historyItem; local
[all...]
/macosx-10.9.5/CPANInternal-140/DBIx-Class/script/
H A Ddbicadmin160 =item B<--create>
166 =item B<--upgrade>
172 =item B<--install>
178 =item B<--deploy>
184 =item B<--select>
190 =item B<--insert>
196 =item B<--update>
202 =item B<--delete>
208 =item B<--op>
214 =item
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/PythonBrowser/
H A DPythonBrowserModel.py23 def outlineView_numberOfChildrenOfItem_(self, view, item):
24 if item is None:
25 item = self.root
26 return len(item)
28 def outlineView_child_ofItem_(self, view, child, item):
29 if item is None:
30 item = self.root
31 return item.getChild(child)
33 def outlineView_isItemExpandable_(self, view, item):
34 if item i
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/Examples/AppKit/PythonBrowser/
H A DPythonBrowserModel.py23 def outlineView_numberOfChildrenOfItem_(self, view, item):
24 if item is None:
25 item = self.root
26 return len(item)
28 def outlineView_child_ofItem_(self, view, child, item):
29 if item is None:
30 item = self.root
31 return item.getChild(child)
33 def outlineView_isItemExpandable_(self, view, item):
34 if item i
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/lib/Template/Stash/
H A DContext.pm231 # if $ident is a list reference, then we evaluate each item in the
312 # Returns a "reference" to a particular item. This is represented as a
313 # closure which will return the actual stash item when called.
319 my ($root, $item, $result);
326 ($item, $args) = @$ident[$i, $i + 1];
329 ($root = $self->_dotop($root, $item, $args));
333 $item = $ident;
338 $self->_dotop($root, $item, \@args);
375 # _dotop($root, $item, \@args, $lvalue, $nextItem)
391 # Returns the result of evaluating the item agains
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/lib/Template/Stash/
H A DContext.pm231 # if $ident is a list reference, then we evaluate each item in the
312 # Returns a "reference" to a particular item. This is represented as a
313 # closure which will return the actual stash item when called.
319 my ($root, $item, $result);
326 ($item, $args) = @$ident[$i, $i + 1];
329 ($root = $self->_dotop($root, $item, $args));
333 $item = $ident;
338 $self->_dotop($root, $item, \@args);
375 # _dotop($root, $item, \@args, $lvalue, $nextItem)
391 # Returns the result of evaluating the item agains
[all...]
/macosx-10.9.5/Libinfo-449.1.3/lookup.subproj/
H A Dcache_module.c47 si_item_t *item[CACHE_MAX]; member in struct:__anon2973
59 si_item_t *item; local
61 item = pp->cache_store[cat].item[where];
62 if (item == NULL) return NULL;
64 if (si_item_is_valid(item)) return si_item_retain(item);
66 si_item_release(item);
67 pp->cache_store[cat].item[where] = NULL;
76 si_item_t *item, *las local
109 si_item_t *item; local
214 si_item_t *item; local
230 si_item_t *item; local
497 si_cache_add_item(si_mod_t *si, si_mod_t *src, si_item_t *item) argument
535 si_item_t *item; local
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/gssapi/cf/
H A Dtest_gsscf.c56 GSSItemRef item = GSSItemAdd(attrs, NULL); local
57 if (item == NULL) {
60 CFShow(item);
61 CFRelease(item);
74 item = (GSSItemRef)CFArrayGetValueAtIndex(items, n);
80 GSSItemOperation(item, kGSSOperationAcquire, opts, q, ^(CFTypeRef type, CFErrorRef e) {
101 item = (GSSItemRef)CFArrayGetValueAtIndex(items, n);
103 CFShow(item);
105 GSSItemOperation(item, kGSSOperationCredentialDiagnostics, NULL, q, ^(CFTypeRef type, CFErrorRef e) {
137 item
264 GSSItemRef item = GSSItemAdd(attrs, NULL); local
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DContextMenu.js46 if (type === "item" || type === "checkbox")
80 case "item":
81 return { type: "item", id: this._id, label: this._label, enabled: !this._disabled };
113 var item = new WebInspector.ContextMenuItem(this._contextMenu, "item", label, disabled);
114 this._pushItem(item);
115 this._contextMenu._setHandler(item.id(), handler);
116 return item;
126 var item = new WebInspector.ContextSubMenuItem(this._contextMenu, label, disabled);
127 this._pushItem(item);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFELighting.cpp64 int center = static_cast<int>(pixels->item(offset + cAlphaChannelOffset));
65 int right = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
67 int bottom = static_cast<int>(pixels->item(offset + cAlphaChannelOffset));
68 int bottomRight = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
75 int left = static_cast<int>(pixels->item(offset - cPixelSize + cAlphaChannelOffset));
76 int center = static_cast<int>(pixels->item(offset + cAlphaChannelOffset));
77 int right = static_cast<int>(pixels->item(offset + cPixelSize + cAlphaChannelOffset));
79 int bottomLeft = static_cast<int>(pixels->item(offset - cPixelSize + cAlphaChannelOffset));
80 int bottom = static_cast<int>(pixels->item(offset + cAlphaChannelOffset));
81 int bottomRight = static_cast<int>(pixels->item(offse
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/tkextlib/treectrl/
H A Doutlook-folders.rb88 item = t.item_create(:button=>button)
90 item = t.item_create
91 t.item_hasbutton(item, button)
95 t.item_style_set(item, 0, 's4')
96 t.item_complex(item,
99 t.item_style_set(item, 0, 's3')
100 t.item_complex(item, [['e2', {:text=>text}]])
104 t.item_style_set(item, 0, 's2')
105 t.item_complex(item,
112 t.item_style_set(item,
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/Array/
H A D15.4.4.5-2.js126 var item = 0;
129 S[item++] = "var A = new Array()";
131 // array contains one item
132 S[item++] = "var A = new Array( true )";
135 S[item++] = "var A = new Array( true, false, new Boolean(true), new Boolean(false), 'true', 'false' )";
137 S[item++] = "var A = new Array(); A[3] = 'undefined'; A[6] = null; A[8] = 'null'; A[0] = void 0";
139 S[item] = "var A = new Array( ";
143 S[item] += "\'"+ String.fromCharCode(i) +"\'" ;
145 S[item] += ",";
149 S[item]
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DBlobResourceHandle.cpp271 const BlobDataItem& item = m_blobData->items().at(m_sizeItemCount); local
272 switch (item.type) {
274 didGetSize(item.length);
278 m_asyncStream->getSize(item.path, item.expectedModificationTime);
280 didGetSize(m_stream->getSize(item.path, item.expectedModificationTime));
300 // The size passed back is the size of the whole file. If the underlying item is a sliced file, we need to use the slice length.
301 const BlobDataItem& item = m_blobData->items().at(m_sizeItemCount); local
302 if (item
361 const BlobDataItem& item = m_blobData->items().at(m_readItemCount); local
391 readDataSync(const BlobDataItem& item, char* buf, int length) argument
411 readFileSync(const BlobDataItem& item, char* buf, int length) argument
458 const BlobDataItem& item = m_blobData->items().at(m_readItemCount); local
467 readDataAsync(const BlobDataItem& item) argument
479 readFileAsync(const BlobDataItem& item) argument
[all...]
/macosx-10.9.5/CPANInternal-140/URI/URI/
H A DURL.pm209 =item *
214 =item *
219 =item *
223 =item *
227 =item *
231 =item *
235 =item *
239 =item *
243 =item *
247 =item *
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/Date/
H A D15.9.5.30-1.js140 var item = testcases.length;
142 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
143 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
145 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
146 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
147 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
148 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
149 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
150 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
151 testcases[item
[all...]
H A D15.9.5.31-1.js137 var item = testcases.length;
141 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
142 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
144 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
145 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
146 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
147 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
148 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
149 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
150 testcases[item
[all...]
H A D15.9.5.32-1.js88 var item = testcases.length;
90 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
91 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
93 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
94 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
95 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
96 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
97 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
98 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
99 testcases[item
[all...]
H A D15.9.5.33-1.js88 var item = testcases.length;
90 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
91 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
93 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
94 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
95 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
96 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
97 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
98 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
99 testcases[item
[all...]
H A D15.9.5.34-1.js150 var item = testcases.length;
154 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
155 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
157 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
158 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
159 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
160 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
161 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
162 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
163 testcases[item
[all...]
H A D15.9.5.35-1.js70 var item = testcases.length;
74 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
75 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
77 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
78 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
79 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
80 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
81 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
82 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
83 testcases[item
[all...]
H A D15.9.5.36-1.js170 var item = testcases.length;
174 testcases[item++] = new TestCase( SECTION, DateString+".getTime()", UTCDate.value, DateCase.getTime() );
175 testcases[item++] = new TestCase( SECTION, DateString+".valueOf()", UTCDate.value, DateCase.valueOf() );
177 testcases[item++] = new TestCase( SECTION, DateString+".getUTCFullYear()", UTCDate.year, DateCase.getUTCFullYear() );
178 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMonth()", UTCDate.month, DateCase.getUTCMonth() );
179 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDate()", UTCDate.date, DateCase.getUTCDate() );
180 testcases[item++] = new TestCase( SECTION, DateString+".getUTCDay()", UTCDate.day, DateCase.getUTCDay() );
181 testcases[item++] = new TestCase( SECTION, DateString+".getUTCHours()", UTCDate.hours, DateCase.getUTCHours() );
182 testcases[item++] = new TestCase( SECTION, DateString+".getUTCMinutes()", UTCDate.minutes,DateCase.getUTCMinutes() );
183 testcases[item
[all...]

Completed in 209 milliseconds

<<11121314151617181920>>