Lines Matching defs:location
57 // Unbound location that can be used with the assembler bind() method and
122 int32_t location,
127 : ForwardReference<int32_t>(location,
185 explicit ForwardRefListIterator(Location* location)
186 : ForwardRefListIteratorBase(&location->forward_) {}
221 // meet the minimum location requirement.
222 bool Needs16BitPadding(int location) const;
253 explicit Location(Offset location)
254 : LocationBase<int32_t>(location), referenced_(false) {}
256 explicit Location(Offset location) = delete;
257 Location(AllocatorWrapper allocator, Offset location)
258 : LocationBase<int32_t>(location), referenced_(false), forward_(allocator) {}
287 explicit Label(Offset location) : Location(location) {}
291 explicit Label(Offset location) = delete;
292 explicit Label(AllocatorWrapper allocator, Offset location) : Location(allocator, location) {}