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

1 2 3 4 5

  /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/openfst/src/include/fst/extensions/pdt/
reverse.h 39 const vector<pair<typename Arc::Label,
40 typename Arc::Label> > &parens,
42 typedef typename Arc::Label Label;
48 vector<pair<Label, Label> > relabel_pairs;
  /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/openfst/src/bin/
fstreplace.cc 46 typedef int64 Label;
47 typedef pair<Label, const s::FstClass* > FstTuple;
49 Label root = atoll(argv[2]);
55 Label lab = atoll(argv[i + 1]);
fstsymbols.cc 29 DEFINE_string(isymbols, "", "Input label symbol table");
30 DEFINE_string(osymbols, "", "Output label symbol table");
95 typedef int64 Label;
96 vector<pair<Label, Label> > ipairs;
105 typedef int64 Label;
106 vector<pair<Label, Label> > opairs;
fstrelabel.cc 33 DEFINE_string(isymbols, "", "Input label symbol table");
34 DEFINE_string(osymbols, "", "Output label symbol table");
99 typedef int64 Label;
100 vector<pair<Label, Label> > ipairs;
101 vector<pair<Label, Label> > opairs;
  /external/openfst/src/extensions/pdt/
pdtreplace.cc 28 DEFINE_string(pdt_parentheses, "", "PDT parenthesis label pairs.");
52 typedef int64 Label;
53 typedef pair<Label, const s::FstClass* > FstTuple;
55 Label root = atoll(argv[2]);
61 Label lab = atoll(argv[i + 1]);
  /external/openfst/src/include/fst/script/
relabel.h 56 // In case int64 is not the same as Arc::Label,
58 typedef typename Arc::Label Label;
60 vector<pair<Label, Label> > converted_ipairs(args->arg2.size());
63 vector<pair<Label, Label> > converted_opairs(args->arg3.size());
  /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/openfst/src/include/fst/
arcfilter.h 74 typedef typename A::Label Label;
82 Label label = match_input_ ? arc.ilabel : arc.olabel; local
83 bool match = labels_.Find(label) != labels_.End();
87 void AddLabel(Label label) {
88 labels_.Insert(label);
92 CompactSet<Label, kNoLabel> labels_;
verify.h 33 typedef typename Arc::Label Label;
66 LOG(ERROR) << "Verify: Fst input label ID of arc at position "
70 LOG(ERROR) << "Verify: Fst input label ID " << arc.ilabel
76 LOG(ERROR) << "Verify: Fst output label ID of arc at position "
80 LOG(ERROR) << "Verify: Fst output label ID " << arc.olabel
closure.h 48 typedef typename Arc::Label Label;
concat.h 49 typedef typename Arc::Label Label;
115 typedef typename Arc::Label Label;
test-properties.h 78 typedef typename Arc::Label Label;
119 unordered_set<Label> *ilabels = 0;
120 unordered_set<Label> *olabels = 0;
131 ilabels = new unordered_set<Label>;
133 olabels = new unordered_set<Label>;
union.h 46 typedef typename Arc::Label Label;
  /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/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.

Completed in 657 milliseconds

1 2 3 4 5