Lines Matching refs:Label
110 class Label {
112 Label(); // An undefined label.
113 Label(uint64_t value); // A label with a fixed value
114 Label(const Label &value); // A label equal to another.
115 ~Label();
127 Label &operator=(uint64_t value);
128 Label &operator=(const Label &value);
129 Label operator+(uint64_t addend) const;
130 Label operator-(uint64_t subtrahend) const;
131 uint64_t operator-(const Label &subtrahend) const;
158 bool IsKnownOffsetFrom(const Label &label, uint64_t *offset_p = NULL) const;
236 inline Label operator+(uint64_t a, const Label &l) { return l + a; }
311 Section &Append(Endianness endianness, size_t size, const Label &label);
361 Section &L8(const Label &label), &L16(const Label &label),
362 &L32(const Label &label), &L64(const Label &label),
363 &B8(const Label &label), &B16(const Label &label),
364 &B32(const Label &label), &B64(const Label &label),
365 &D8(const Label &label), &D16(const Label &label),
366 &D32(const Label &label), &D64(const Label &label);
432 Label start() const { return start_; } in start()
436 Label Here() const { return start_ + Size(); } in Here()
439 Section &Mark(Label *label) { *label = Here(); return *this; } in Mark()
451 const Label &set_label) in Reference()
465 Label label;
478 Label start_;