Home | History | Annotate | Download | only in file

Lines Matching refs:Pointer

40  * A class that represents a pointer of any level that can be stored in the file.

43 public class Pointer {
47 /** The level of the pointer. */
51 /** This variable indicates if the field is a function pointer. */
55 * Constructr. Stores the basic data about the pointer.
57 * the level of the pointer
59 * this variable indicates if the field is a function pointer
61 * the repository f data; used in fetching the value that the pointer points
63 public Pointer(int pointerLevel, boolean function, BlenderContext blenderContext) {
70 * This method fills the pointer with its address value (it doesn't get the actual data yet. Use the 'fetch' method
73 * the stream we read the pointer value from
89 throw new NullPointerException("The pointer points to nothing!");
99 Pointer p = new Pointer(pointerLevel - 1, this.function, blenderContext);
122 * This method indicates if this pointer points to a function.
123 * @return <b>true</b> if this is a function pointer and <b>false</b> otherwise
130 * This method indicates if this is a null-pointer or not.
131 * @return <b>true</b> if the pointer is null and <b>false</b> otherwise
138 * This method indicates if this is a null-pointer or not.
139 * @return <b>true</b> if the pointer is not null and <b>false</b> otherwise
146 * This method returns the old memory address of the structure pointed by the pointer.
147 * @return the old memory address of the structure pointed by the pointer
174 Pointer other = (Pointer) obj;