Searched refs:Entry (Results 1 - 25 of 458) sorted by relevance

1234567891011>>

/macosx-10.9.5/emacs-92/emacs/oldXMenu/
H A DXDelAssoc.c27 register XAssoc *Entry; local
34 Entry = bucket->next;
37 for (; Entry != bucket; Entry = Entry->next) {
38 if (Entry->x_id == x_id) {
40 if (Entry->display == dpy) {
45 emacs_remque((struct qelem *)Entry);
46 free((char *)Entry);
52 if (Entry
[all...]
H A DXLookAssoc.c28 register XAssoc *Entry; local
35 Entry = bucket->next;
38 for (; Entry != bucket; Entry = Entry->next) {
39 if (Entry->x_id == x_id) {
41 if (Entry->display == dpy) {
44 return(Entry->data);
49 if (Entry->x_id > x_id) {
H A DXDestAssoc.c18 register XAssoc *Entry, *entry_next; local
24 Entry = bucket->next;
25 Entry != bucket;
26 Entry = entry_next
28 entry_next = Entry->next;
29 free((char *)Entry);
H A DXMakeAssoc.c38 register XAssoc *Entry; local
46 Entry = bucket->next;
48 /* If (Entry != bucket), the bucket is empty so make */
50 /* if (Entry == bucket), the we have to search the */
52 if (Entry != bucket) {
57 /* before the current value of "Entry". */
58 for (; Entry != bucket; Entry = Entry->next) {
59 if (Entry
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/filesystem/
H A DEntryCallback.idl34 boolean handleEvent(Entry entry);
H A DDataTransferItemFileSystem.idl34 [CallWith=ScriptExecutionContext] Entry webkitGetAsEntry();
H A DEntryArray.h36 #include "Entry.h"
50 Entry* item(unsigned index) const;
51 void set(unsigned index, PassRefPtr<Entry>);
55 void append(PassRefPtr<Entry> entry) { m_entries.append(entry); }
60 Vector<RefPtr<Entry> > m_entries;
H A DDataTransferItemFileSystem.h41 class Entry;
46 static PassRefPtr<Entry> webkitGetAsEntry(ScriptExecutionContext*, DataTransferItem*);
H A DEntryArray.idl38 getter Entry item([IsIndex] unsigned long index);
H A DEntryCallback.h40 class Entry;
45 virtual bool handleEvent(Entry*) = 0;
H A DEntryArray.cpp42 Entry* EntryArray::item(unsigned index) const
H A DFileEntry.idl37 ] interface FileEntry : Entry {
H A DEntry.cpp31 #include "Entry.h"
49 Entry::Entry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) function in class:WebCore::Entry
54 void Entry::getMetadata(PassRefPtr<MetadataCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef)
61 void Entry::moveTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
68 void Entry::copyTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
75 void Entry::remove(PassRefPtr<VoidCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
82 void Entry::getParent(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
/macosx-10.9.5/ruby-104/ruby/lib/rss/dublincore/
H A Datom.rb9 class Entry; include DublinCoreModel; end class in class:RSS.Atom.Feed
12 class Entry class in class:RSS.Atom
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLFormattingElementList.h45 // Ideally Entry would be private, but HTMLTreeBuilder has to coordinate
47 // access to Entry::isMarker() and Entry::replaceElement() to do so.
48 class Entry { class in class:WebCore::HTMLFormattingElementList
51 explicit Entry(PassRefPtr<HTMLStackItem> item) function in class:WebCore::HTMLFormattingElementList::Entry
56 Entry(MarkerEntryType) function in class:WebCore::HTMLFormattingElementList::Entry
60 ~Entry() {}
84 Bookmark(Entry* entry)
90 void moveToAfter(Entry* before)
97 Entry* mar
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DPredIteratorCache.h43 BasicBlock **&Entry = BlockToPredsMap[BB]; local
44 if (Entry) return Entry;
51 Entry = Memory.Allocate<BasicBlock*>(PredCache.size());
52 std::copy(PredCache.begin(), PredCache.end(), Entry);
53 return Entry;
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/bwidget/
H A Dentry.rb12 class Entry < Tk::Entry class in class:Tk.BWidget
17 class Tk::BWidget::Entry
20 TkCommandNames = ['Entry'.freeze].freeze
21 WidgetClassName = 'Entry'.freeze
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DUniqueVector.h36 unsigned insert(const T &Entry) { argument
38 unsigned &Val = Map[Entry];
47 Vector.push_back(Entry);
53 unsigned idFor(const T &Entry) const {
55 typename std::map<T, unsigned>::const_iterator MI = Map.find(Entry);
/macosx-10.9.5/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DMapEntryParameter.java14 * A simple <code>Map.Entry</code> implementation that can be used as in
21 * interface contract since these state that <code>Map.Entry</code> objects
29 public class MapEntryParameter implements Map.Entry {
49 * java.util.Map.Entry#hashCode}.
61 * java.util.Map.Entry#equals}.
67 if (!(other instanceof Map.Entry)) {
71 Map.Entry e = (Map.Entry) other;
H A DStoredEntrySet.java24 * <p>The {@link java.util.Map.Entry#setValue} method of the Map.Entry objects
42 * @param mapEntry must be a {@link java.util.Map.Entry} instance.
50 * java.util.Map.Entry} instance.
56 Map.Entry entry = (Map.Entry) mapEntry; // allow ClassCastException
65 * @param mapEntry is a {@link java.util.Map.Entry} instance to be removed.
68 * the mapEntry is not a {@link java.util.Map.Entry} instance or is not
77 if (!(mapEntry instanceof Map.Entry)) {
80 Map.Entry entr
[all...]
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/ext/pb_ds/detail/
H A Dcond_dealtor.hpp57 template<typename Entry, class Allocator>
61 Entry, \
64 template<typename Entry, class Allocator>
69 typename Allocator::template rebind<Entry>::other
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/tile/
H A Dtentry.rb10 class TEntry < Tk::Entry
12 Entry = TEntry
16 class Tk::Tile::TEntry < Tk::Entry
47 #Tk.__set_toplevel_aliases__(:Ttk, Tk::Tile::Entry, :TkEntry)
49 :Ttk, Tk::Tile::Entry, :TkEntry)
/macosx-10.9.5/tcl-102/tk/tk/library/
H A Dentry.tcl35 bind Entry <<Cut>> {
43 bind Entry <<Copy>> {
50 bind Entry <<Paste>> {
62 bind Entry <<Clear>> {
66 bind Entry <<PasteSelection>> {
73 bind Entry <<TraverseIn>> {
80 bind Entry <1> {
84 bind Entry <B1-Motion> {
88 bind Entry <Double-1> {
93 bind Entry <Tripl
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/library/
H A Dentry.tcl35 bind Entry <<Cut>> {
43 bind Entry <<Copy>> {
50 bind Entry <<Paste>> {
62 bind Entry <<Clear>> {
66 bind Entry <<PasteSelection>> {
75 bind Entry <1> {
79 bind Entry <B1-Motion> {
83 bind Entry <Double-1> {
88 bind Entry <Triple-1> {
93 bind Entry <Shif
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DValue.cpp508 ValueHandleBase *&Entry = pImpl->ValueHandles[VP.getPointer()]; local
509 assert(Entry != 0 && "Value doesn't have any handles?");
510 AddToExistingUseList(&Entry);
522 ValueHandleBase *&Entry = Handles[VP.getPointer()]; local
523 assert(Entry == 0 && "Value really did already have handles?");
524 AddToExistingUseList(&Entry);
577 ValueHandleBase *Entry = pImpl->ValueHandles[V]; local
578 assert(Entry && "Value bit set but no entries exist");
589 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entr
635 ValueHandleBase *Entry = pImpl->ValueHandles[Old]; local
[all...]

Completed in 230 milliseconds

1234567891011>>