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

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
regexp-macro-assembler-tracer.h 44 virtual void Bind(Label* label);
45 virtual void CheckAtStart(Label* on_at_start);
46 virtual void CheckCharacter(unsigned c, Label* on_equal);
49 Label* on_equal);
50 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
51 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
55 Label* on_failure,
57 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
58 virtual void CheckNotAtStart(Label* on_not_at_start)
    [all...]
regexp-macro-assembler-irregexp.h 55 virtual void Bind(Label* label);
60 virtual void GoTo(Label* label);
61 virtual void PushBacktrack(Label* label);
76 Label* on_end_of_input,
79 virtual void CheckCharacter(unsigned c, Label* on_equal);
82 Label* on_equal);
83 virtual void CheckCharacterGT(uc16 limit, Label* on_greater)
    [all...]
regexp-macro-assembler.h 38 Label* on_match;
71 // stack by an earlier PushBacktrack(Label*).
73 virtual void Bind(Label* label) = 0;
74 virtual void CheckAtStart(Label* on_at_start) = 0;
77 virtual void CheckCharacter(unsigned c, Label* on_equal) = 0;
82 Label* on_equal) = 0;
83 virtual void CheckCharacterGT(uc16 limit, Label* on_greater) = 0;
84 virtual void CheckCharacterLT(uc16 limit, Label* on_less) = 0;
86 // fail to match then goto the on_failure label. If check_eos is set the
    [all...]
full-codegen.h 175 Label* break_label() { return &break_label_; }
179 Label break_label_;
195 Label* continue_label() { return &continue_label_; }
198 Label continue_label_;
230 TryFinally(FullCodeGenerator* codegen, Label* finally_entry)
238 Label* finally_entry_;
303 Label* if_true,
304 Label* if_false,
305 Label* fall_through);
309 // fall-through label if it is set up
    [all...]
  /external/v8/src/mips/
regexp-macro-assembler-mips.h 56 virtual void Bind(Label* label);
57 virtual void CheckAtStart(Label* on_at_start);
58 virtual void CheckCharacter(uint32_t c, Label* on_equal);
61 Label* on_equal);
62 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
63 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
66 Label* on_failure,
70 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
71 virtual void CheckNotAtStart(Label* on_not_at_start)
    [all...]
  /external/v8/src/arm/
regexp-macro-assembler-arm.h 54 virtual void Bind(Label* label);
55 virtual void CheckAtStart(Label* on_at_start);
56 virtual void CheckCharacter(unsigned c, Label* on_equal);
59 Label* on_equal);
60 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
61 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
64 Label* on_failure,
68 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
69 virtual void CheckNotAtStart(Label* on_not_at_start)
    [all...]
  /external/v8/src/ia32/
regexp-macro-assembler-ia32.h 53 virtual void Bind(Label* label);
54 virtual void CheckAtStart(Label* on_at_start);
55 virtual void CheckCharacter(uint32_t c, Label* on_equal);
58 Label* on_equal);
59 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
60 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
63 Label* on_failure,
67 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
68 virtual void CheckNotAtStart(Label* on_not_at_start)
    [all...]
macro-assembler-ia32.h 90 Label* condition_met,
91 Label::Distance condition_met_distance = Label::kFar);
97 Label* branch,
98 Label::Distance distance = Label::kFar) {
106 Label* branch,
107 Label::Distance distance = Label::kFar) {
115 Label* has_color
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
update_view.h 12 class Label;
43 // Shows label with instructions for user to do a manual reboot.
47 // Shows label for "Preparing updates" state.
50 // Whether curtain window with throbber and label in the center should
58 // Creates Label control and adds it as a child.
59 void InitLabel(views::Label** label);
68 views::Label* installing_updates_label_;
69 views::Label* preparing_updates_label_;
70 views::Label* reboot_label_
    [all...]
network_selection_view.h 25 class Label;
100 // Updates text on label with currently connecting network.
112 views::Label* welcome_label_;
113 views::Label* select_language_label_;
114 views::Label* select_keyboard_label_;
115 views::Label* select_network_label_;
116 views::Label* connecting_network_label_;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
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...]
  /external/openfst/src/include/fst/
arc.h 46 typedef int Label;
49 ArcTpl(Label i, Label o, const Weight& w, StateId s)
60 Label ilabel;
61 Label olabel;
78 typedef int Label;
82 StringArc(Label i, Label o, Weight w, StateId s)
96 Label ilabel; // Transition input label
    [all...]
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_;
replace-util.h 44 void Replace(const vector<pair<typename Arc::Label, const Fst<Arc>* > >&,
45 MutableFst<Arc> *, typename Arc::Label, bool);
49 // user provides a set of Label, Fst pairs at construction. These are
51 // and doing RTN connection and specific Fst replacement by label or
57 typedef typename Arc::Label Label;
61 typedef pair<Label, const Fst<Arc>*> FstPair;
62 typedef pair<Label, MutableFst<Arc>*> MutableFstPair;
63 typedef unordered_map<Label, Label> NonTerminalHash
203 Label label = fst_pairs[i].first; local
226 Label label = fst_pairs[i].first; local
439 Label label = nonterminal_array_[arc.nextstate]; local
462 Label label = nonterminal_array_[arc.nextstate]; local
468 Label label = nonterminal_array_[s]; local
526 Label label = nonterminal_array_[i]; local
540 Label label = nonterminal_array_[i]; local
    [all...]
  /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/webkit/Source/JavaScriptCore/bytecompiler/
LabelScope.h 33 #include "Label.h"
43 LabelScope(Type type, const Identifier* name, int scopeDepth, PassRefPtr<Label> breakTarget, PassRefPtr<Label> continueTarget)
61 Label* breakTarget() const { return m_breakTarget.get(); }
62 Label* continueTarget() const { return m_continueTarget.get(); }
73 RefPtr<Label> m_breakTarget;
74 RefPtr<Label> m_continueTarget;
  /external/chromium/chrome/browser/ui/views/
login_view.h 14 class Label;
46 views::Label* username_label_;
47 views::Label* password_label_;
50 views::Label* message_label_;
cookie_info_view.h 20 class Label;
82 views::View* label, views::View* value);
84 views::View* label, views::View* control);
90 views::Label* name_label_;
92 views::Label* content_label_;
94 views::Label* domain_label_;
96 views::Label* path_label_;
98 views::Label* send_for_label_;
100 views::Label* created_label_;
102 views::Label* expires_label_
    [all...]
  /external/v8/src/x64/
regexp-macro-assembler-x64.h 50 virtual void Bind(Label* label);
51 virtual void CheckAtStart(Label* on_at_start);
52 virtual void CheckCharacter(uint32_t c, Label* on_equal);
55 Label* on_equal);
56 virtual void CheckCharacterGT(uc16 limit, Label* on_greater);
57 virtual void CheckCharacterLT(uc16 limit, Label* on_less);
60 Label* on_failure,
64 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position);
65 virtual void CheckNotAtStart(Label* on_not_at_start)
    [all...]
macro-assembler-x64.h 178 Label* condition_met,
179 Label::Distance condition_met_distance = Label::kFar);
185 Label* branch,
186 Label::Distance distance = Label::kFar) {
194 Label* branch,
195 Label::Distance distance = Label::kFar) {
203 Label* on_black
    [all...]
  /tools/motodev/src/plugins/handset/src/com/motorola/studio/android/handset/ui/
AndroidPropertiesPage.java 28 import org.eclipse.swt.widgets.Label;
71 Label serialNumberLabel = new Label(parentComposite, SWT.NONE);
73 Label serialNumberValue = new Label(parentComposite, SWT.NONE);
76 Label targetLabel = new Label(parentComposite, SWT.NONE);
78 Label targetValue = new Label(parentComposite, SWT.NONE);
80 Label apiLabel = new Label(parentComposite, SWT.NONE)
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
MethodStubber.java 21 import org.objectweb.asm.Label;
43 Label l0 = new Label();
55 Label l1 = new Label();
61 l0, // label start
62 l1, // label end
120 public void visitJumpInsn(int opcode, Label label) {
125 public void visitLabel(Label label)
    [all...]
  /external/chromium/chrome/browser/chromeos/options/
wifi_config_view.h 27 class Label;
84 // Updates the error text label.
94 views::Label* phase_2_auth_label_;
96 views::Label* client_cert_label_;
98 views::Label* server_ca_cert_label_;
100 views::Label* identity_label_;
102 views::Label* identity_anonymous_label_;
106 views::Label* passphrase_label_;
109 views::Label* error_label_;
  /external/chromium/chrome/browser/ui/views/infobars/
link_infobar.h 32 views::Label* label_1_;
34 views::Label* label_2_;
  /external/llvm/include/llvm/MC/
MCLabel.h 23 /// MCLabel - Instances of this class represent a label name in the MC file,
27 // Instance - the instance number of this Directional Local Label
38 /// getInstance - Get the current instance of this Directional Local Label.
42 /// Label.
52 inline raw_ostream &operator<<(raw_ostream &OS, const MCLabel &Label) {
53 Label.print(OS);

Completed in 634 milliseconds

1 2 3 4 5 6 7 8 91011>>