Lines Matching refs:index

59 		status_t		GetInfo(type_code typeRequested, int32 index,
92 status_t AddSpecifier(const char *property, int32 index);
93 status_t AddSpecifier(const char *property, int32 index, int32 range);
97 status_t SetCurrentSpecifier(int32 index);
98 status_t GetCurrentSpecifier(int32 *index,
132 status_t RemoveData(const char *name, int32 index = 0);
138 status_t FindRect(const char *name, int32 index, BRect *rect) const;
140 status_t FindPoint(const char *name, int32 index, BPoint *point) const;
142 status_t FindString(const char *name, int32 index, const char **string) const;
144 status_t FindString(const char *name, int32 index, BString *string) const;
147 status_t FindInt8(const char *name, int32 index, int8 *value) const;
149 status_t FindUInt8(const char *name, int32 index, uint8 *value) const;
151 status_t FindInt16(const char *name, int32 index, int16 *value) const;
153 status_t FindUInt16(const char *name, int32 index, uint16 *value) const;
155 status_t FindInt32(const char *name, int32 index, int32 *value) const;
157 status_t FindUInt32(const char *name, int32 index, uint32 *value) const;
159 status_t FindInt64(const char *name, int32 index, int64 *value) const;
161 status_t FindUInt64(const char *name, int32 index, uint64 *value) const;
163 status_t FindBool(const char *name, int32 index, bool *value) const;
165 status_t FindFloat(const char *name, int32 index, float *value) const;
167 status_t FindDouble(const char *name, int32 index, double *value) const;
169 status_t FindPointer(const char *name, int32 index, void **pointer) const;
171 status_t FindMessenger(const char *name, int32 index, BMessenger *messenger) const;
173 status_t FindRef(const char *name, int32 index, entry_ref *ref) const;
175 status_t FindMessage(const char *name, int32 index, BMessage *message) const;
177 status_t FindFlat(const char *name, int32 index, BFlattenable *object) const;
180 status_t FindData(const char *name, type_code type, int32 index,
185 status_t ReplaceRect(const char *name, int32 index, BRect aRect);
187 status_t ReplacePoint(const char *name, int32 index, BPoint aPoint);
189 status_t ReplaceString(const char *name, int32 index, const char *aString);
191 status_t ReplaceString(const char *name, int32 index, const BString &aString);
193 status_t ReplaceInt8(const char *name, int32 index, int8 value);
195 status_t ReplaceUInt8(const char *name, int32 index, uint8 value);
197 status_t ReplaceInt16(const char *name, int32 index, int16 value);
199 status_t ReplaceUInt16(const char *name, int32 index, uint16 value);
201 status_t ReplaceInt32(const char *name, int32 index, int32 value);
203 status_t ReplaceUInt32(const char *name, int32 index, uint32 value);
205 status_t ReplaceInt64(const char *name, int32 index, int64 value);
207 status_t ReplaceUInt64(const char *name, int32 index, uint64 value);
209 status_t ReplaceBool(const char *name, int32 index, bool aBoolean);
211 status_t ReplaceFloat(const char *name, int32 index, float aFloat);
213 status_t ReplaceDouble(const char *name, int32 index, double aDouble);
215 status_t ReplacePointer(const char *name,int32 index,const void *pointer);
217 status_t ReplaceMessenger(const char *name, int32 index, BMessenger messenger);
219 status_t ReplaceRef( const char *name, int32 index, const entry_ref *ref);
221 status_t ReplaceMessage(const char *name, int32 index, const BMessage *message);
223 status_t ReplaceFlat(const char *name, int32 index, BFlattenable *object);
226 status_t ReplaceData(const char *name, type_code type, int32 index,