Home | History | Annotate | Download | only in IlmImf

Lines Matching refs:Name

17 // *       Neither the name of Industrial Light & Magic nor the names of
122 void insert (const char name[],
125 void insert (const std::string &name,
131 // [n] Returns a reference to the channel with name n.
132 // If no channel with name n exists, an Iex::ArgExc
135 // findChannel(n) Returns a pointer to the channel with name n,
136 // or 0 if no channel with name n exists.
140 Channel & operator [] (const char name[]);
141 const Channel & operator [] (const char name[]) const;
143 Channel & operator [] (const std::string &name);
144 const Channel & operator [] (const std::string &name) const;
146 Channel * findChannel (const char name[]);
147 const Channel * findChannel (const char name[]) const;
149 Channel * findChannel (const std::string &name);
150 const Channel * findChannel (const std::string &name) const;
157 typedef std::map <Name, Channel> ChannelMap;
168 Iterator find (const char name[]);
169 ConstIterator find (const char name[]) const;
171 Iterator find (const std::string &name);
172 ConstIterator find (const std::string &name) const;
227 // Find all channels whose name begins with a given prefix:
230 // such that the following loop iterates over all channels whose name
280 const char * name () const;
302 const char * name () const;
351 ChannelList::Iterator::name () const
403 ChannelList::ConstIterator::name () const