HomeSort by relevance Sort by last modified time
    Searched defs:Label (Results 1 - 25 of 152) sorted by null

1 2 3 4 5 6 7

  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocList.h 19 MCSymbol *Label;
ErlangGCPrinter.cpp 88 MCSymbol *Label = PI->Label;
89 AP.EmitLabelPlusOffset(Label/*Hi*/, 0/*Offset*/, 4/*Size*/);
DIE.cpp 297 /// EmitValue - Emit label value.
300 AP->EmitLabelReference(Label, SizeOf(AP, Form),
306 /// SizeOf - Determine size of label value in bytes.
317 O << "Lbl: " << Label->getName();
550 /// EmitValue - Emit label value.
554 MCSymbol *Label = DD->getDebugLocEntries()[Index].Label;
557 AP->EmitSectionOffset(Label, DD->getDebugLocSym());
559 AP->EmitLabelDifference(Label, DD->getDebugLocSym(), 4);
  /external/llvm/lib/CodeGen/
ErlangGC.cpp 57 MCSymbol *Label = MBB.getParent()->getContext().CreateTempSymbol();
58 BuildMI(MBB, MI, DL, TII->get(TargetOpcode::GC_LABEL)).addSym(Label);
59 return Label;
76 MCSymbol* Label = InsertLabel(*MI->getParent(), RAI, MI->getDebugLoc());
77 FI.addSafePoint(GC::PostCall, Label, MI->getDebugLoc());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
Label.java 37 public class Label {
40 Label() {
43 Label(MethodLocation location) {
54 throw new IllegalStateException("Cannot get the location of a label that hasn't been placed yet.");
  /external/chromium_org/tools/gn/
label.cc 5 #include "tools/gn/label.h"
14 // We print user visible label names with no trailing slash after the
41 *err = Err(input_value, "Label can't start with a single slash",
95 const Label& current_toolchain,
140 "Toolchain name must end in a \")\" at the end of the label.");
190 Label::Label() {
193 Label::Label(const SourceDir& dir,
203 Label::Label(const SourceDir& dir, const base::StringPiece& name
    [all...]
label.h 15 // A label represents the name of a target or some other named thing in
16 // the source path. The label is always absolute and always includes a name
18 class Label {
20 Label();
22 // Makes a label given an already-separate out path and name.
24 Label(const SourceDir& dir,
29 // Makes a label with an empty toolchain.
30 Label(const SourceDir& dir, const base::StringPiece& name);
31 ~Label();
34 // current directory into a fully qualified label. On failure returns a
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
verify.h 30 typedef typename Arc::Label Label;
63 LOG(ERROR) << "Verify: Fst input label ID of arc at position "
67 LOG(ERROR) << "Verify: Fst input label ID " << arc.ilabel
73 LOG(ERROR) << "Verify: Fst output label ID of arc at position "
77 LOG(ERROR) << "Verify: Fst output label ID " << arc.olabel
arc.h 31 typedef int Label;
35 StdArc(Label i, Label o, Weight w, StateId s)
45 Label ilabel; // Transition input label
46 Label olabel; // Transition output label
55 typedef int Label;
59 LogArc(Label i, Label o, Weight w, StateId s
    [all...]
closure.h 41 typedef typename Arc::Label Label;
concat.h 41 typedef typename Arc::Label Label;
test-properties.h 74 typedef typename Arc::Label Label;
115 std::unordered_set<Label> *ilabels = 0;
116 std::unordered_set<Label> *olabels = 0;
127 ilabels = new std::unordered_set<Label>;
129 olabels = new std::unordered_set<Label>;
union.h 39 typedef typename Arc::Label Label;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKeyVisual.java 28 * There are two types of expected visual, an integer icon id and a string label.
31 static ExpectedKeyVisual newInstance(final String label) {
32 return new Label(label);
99 * This class represents a string label.
101 private static class Label extends ExpectedKeyVisual {
104 Label(final String label) { mLabel = label; }
108 return new Label(mLabel.toUpperCase(locale))
    [all...]
  /external/chromium_org/courgette/
assembly_program.h 25 // A Label is a symbolic reference to an address. Unlike a conventional
27 // stored in a table and the Label will be replaced with the index into the
31 class Label {
34 Label() : rva_(0), index_(kNoIndex), count_(0) {}
35 explicit Label(RVA rva) : rva_(rva), index_(kNoIndex), count_(0) {}
37 RVA rva_; // Address referred to by the label.
42 typedef std::map<RVA, Label*> RVAToLabel;
93 // Generates 4-byte relative reference to address of 'label'.
94 CheckBool EmitRel32(Label* label) WARN_UNUSED_RESULT
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
win32.h 50 SID_AND_ATTRIBUTES Label;
  /external/chromium_org/third_party/webrtc/base/
win32.h 33 SID_AND_ATTRIBUTES Label;
  /external/chromium_org/ui/message_center/views/
bounded_label_unittest.cc 15 #include "ui/views/controls/label.h"
60 // Exercise BounderLabel::GetWrappedText() using the fixture's test label.
65 // Exercise BounderLabel::GetLinesForWidthAndLimit() using the test label.
72 // Creates a label to test with. Returns this fixture, which can be used to
73 // test the newly created label using the exercise methods above.
74 BoundedLabelTest& Label(base::string16 text, int lines) {
95 Label(ToString(text), lines).GetWrappedText(ToPixels(width)))
99 Label(ToString(text), lines).GetLinesForWidth(ToPixels(width)))
  /external/dexmaker/src/main/java/com/google/dexmaker/
Label.java 30 public final class Label {
39 List<Label> catchLabels = Collections.emptyList();
42 Label primarySuccessor;
45 Label alternateSuccessor;
49 public Label() {}
78 for (Label catchLabel : catchLabels) {
  /external/llvm/include/llvm/MC/
MCWin64EH.h 32 MCSymbol *Label;
37 : Operation(Op), Label(L), Offset(0), Register(Reg) {
42 Label(L), Offset(Size) { }
44 : Operation(Op), Label(L), Offset(Off), Register(Reg) {
52 : Operation(Op), Label(L), Offset(Code ? 1 : 0) {
56 MCSymbol *getLabel() const { return Label; }
  /external/chromium_org/tools/traceline/traceline/
assembler.h 92 // A label can be in 3 states:
93 // - Unused, the label has never be used in an instruction.
94 // - Linked, the label has been referenced (by a jump, for example), but the
95 // target is not yet known, because the label is unbound.
96 // - Bound, the label has been bound so the offset is known.
97 class Label {
99 Label() { Unuse(); }
100 ~Label() { ASSERT(!is_linked()); }
351 void bind(Label* l) {
410 void jcc(Condition cc, Label* l)
    [all...]
  /external/chromium_org/third_party/skia/bench/
check_bench_regressions.py 48 class Label:
49 """The information in a label.
59 return "Label(%s, %s, %s, %s)" % (
94 keys = Label objects
99 point_name = Label(point.bench,point.config,point.time_type,
133 lines: dictionary mapping Label objects to the bench values.
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 38 /// label for use in relocations for assembler local references. Obviates the
43 /// label emitted to them. Used so we don't emit extraneous linker local
54 MCCodeEmitter *Emitter, bool label)
56 LabelSections(label) {}
123 MCSymbol *Label = getContext().CreateLinkerPrivateTempSymbol();
124 EmitLabel(Label);
167 // Create a temporary label to mark the start of the data region.
183 // Create a temporary label to mark the end of the data region.
  /external/skia/bench/
check_bench_regressions.py 48 class Label:
49 """The information in a label.
59 return "Label(%s, %s, %s, %s)" % (
94 keys = Label objects
99 point_name = Label(point.bench,point.config,point.time_type,
133 lines: dictionary mapping Label objects to the bench values.
  /art/compiler/utils/
assembler.h 74 class Label {
76 Label() : position_(0) {}
78 ~Label() {
79 // Assert if label is being destroyed with unresolved branches pending.
125 DISALLOW_COPY_AND_ASSIGN(Label);
156 Label* Continuation() { return &continuation_; }
157 Label* Entry() { return &entry_; }
163 Label entry_;
165 Label continuation_;

Completed in 602 milliseconds

1 2 3 4 5 6 7