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

1 2 3 4 5 6 7 8

  /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()
    [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,
28 ~Label();
31 // current directory into a fully qualified label. On failure returns an
32 // is_null() label and sets the error.
33 static Label Resolve(const SourceDir& current_dir
    [all...]
  /external/chromium/chrome/browser/autofill/
form_group.cc 11 const string16 FormGroup::Label() const { return string16(); }
  /external/llvm/lib/CodeGen/AsmPrinter/
ErlangGCPrinter.cpp 88 MCSymbol *Label = PI->Label;
89 AP.EmitLabelPlusOffset(Label/*Hi*/, 0/*Offset*/, 4/*Size*/);
  /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>;
  /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;
  /external/chromium/third_party/libjingle/source/talk/base/
win32.h 44 SID_AND_ATTRIBUTES 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/libjingle/source/talk/base/
win32.h 50 SID_AND_ATTRIBUTES Label;
  /external/chromium_org/ui/message_center/views/
bounded_label_unittest.cc 14 #include "ui/views/controls/label.h"
58 // Exercise BounderLabel::GetWrappedText() using the fixture's test label.
63 // Exercise BounderLabel::GetLinesForWidthAndLimit() using the test label.
70 // Creates a label to test with. Returns this fixture, which can be used to
71 // test the newly created label using the exercise methods above.
72 BoundedLabelTest& Label(string16 text, int lines) {
92 Label(ToString(text), lines).GetWrappedText(ToPixels(width)))
96 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; }

Completed in 493 milliseconds

1 2 3 4 5 6 7 8