/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
NFAFactory.java | 97 if ( t.label.isEpsilon() && !t.label.isAction() && s.getNumberOfTransitions()==1 ) { 117 /** From label A build Graph o-A->o */ 118 public StateCluster build_Atom(int label, GrammarAST associatedAST) { 123 transitionBetweenStates(left, right, label); 141 Label label = new Label(set); local 142 Transition e = new Transition(label,right); 156 Label label = s0.transition(0).target.transition(0).label 166 Label label = new Label(IntervalSet.of(a, b)); local 317 int label = Label.EOF; local 676 Label label = new Label(nfa.grammar.getTokenTypes()); \/\/ char or tokens local 719 Label label = s1.transition(0).label; local [all...] |
Interpreter.java | 300 Label label = trans.label; local 301 if ( label.isSemanticPredicate() ) { 312 if ( label.isEpsilon() ) { 332 // CASE 4: match label on transition 333 else if ( label.matches(t) ) { 346 // CASE 5: error condition; label is inconsistent with input 348 if ( label.isAtom() ) { 350 new MismatchedTokenException(label.getAtom(), input) [all...] |
RandomPhrase.java | 31 import org.antlr.analysis.Label; 103 else if ( t0.label.isSet() || t0.label.isAtom() ) { 104 tokenTypes.add( getTokenType(t0.label) ); 126 protected static Integer getTokenType(Label label) { 127 if ( label.isSet() ) { 129 IntervalSet typeSet = (IntervalSet)label.getSet(); 134 return Utils.integer(label.getAtom()); 136 //System.out.println(t0.label.toString(g)) [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
DFA.java | 501 int smin = Label.MAX_CHAR_VALUE + 1; 502 int smax = Label.MIN_ATOM_VALUE - 1; 505 Label label = edge.label; 506 if ( label.isAtom() ) { 507 if ( label.getAtom()>=Label.MIN_CHAR_VALUE ) { 508 if ( label.getAtom()<smin ) { 509 smin = label.getAtom() [all...] |
/external/openfst/src/include/fst/ |
matcher.h | 45 // typedef typename Arc::Label Label; 69 // // This finds matches to a label at the current state. 73 // bool Find(Label label); 108 typedef typename A::Label Label; 116 bool Find(Label label) { return Find_(label); } 269 Label label = match_type_ == MATCH_INPUT ? local 337 Label label = match_type_ == MATCH_INPUT ? local 362 Label label = match_type_ == MATCH_INPUT ? local [all...] |
project.h | 41 typename A::Label label = project_type_ == PROJECT_INPUT local 43 return A(label, label, arc.weight, arc.nextstate); 69 // input label to the output label or vice versa. This version modifies 87 // input label to the output label or vice versa. This version is a delayed
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
ScreenViewer.java | 375 JLabel label; local 377 add(label = new JLabel("#ffffff"), new GridBagConstraints(0, 2, 1, 1, 0.0f, 0.0f, 380 label.setForeground(Color.WHITE); 381 hLabel = label; 383 add(label = new JLabel("R:"), new GridBagConstraints(1, 0, 1, 1, 0.0f, 0.0f, 386 label.setForeground(Color.WHITE); 387 add(label = new JLabel("255"), new GridBagConstraints(2, 0, 1, 1, 0.0f, 0.0f, 390 label.setForeground(Color.WHITE); 391 rLabel = label; 393 add(label = new JLabel("G:"), new GridBagConstraints(1, 1, 1, 1, 0.0f, 0.0f [all...] |
/external/chromium/chrome/browser/chromeos/login/ |
update_view.cc | 19 #include "views/controls/label.h" 26 using views::Label; 34 // Y offset for the 'installing updates' label. 38 // Y offset for the 'computer will restart' label. 40 // Y offset for the 'ESCAPE to skip' label. 46 // Horizontal spacing (ex. min left and right margins for label on the screen). 48 // Horizontal spacing between spinner and label on the curtain screen. 51 // Label color. 213 void UpdateView::InitLabel(views::Label** label) { [all...] |
/external/chromium/net/base/ |
net_log.cc | 32 #define EVENT_TYPE(label) case TYPE_ ## label: return #label; 42 #define EVENT_TYPE(label) types.push_back(TYPE_ ## label); 51 #define SOURCE_TYPE(label, id) case id: return #label;
|
/external/chromium_org/third_party/WebKit/Source/core/platform/ |
DragImage.cpp | 132 String label = inLabel; local 133 if (label.isEmpty()) { 135 label = urlString; 139 TextRun labelRun(label.impl()); 187 label = StringTruncator::rightTruncate(label, imageSize.width() - (kDragLabelBorderX * 2.0f), labelFont, StringTruncator::EnableRoundingHacks); 190 TextRun textRun(label);
|
/external/chromium_org/ui/views/controls/menu/ |
menu_item_view.h | 42 // MenuItemView represents a single menu item with a label and optional icon. 142 // X-coordinate of where the label starts. 160 const string16& label, 177 // label The text label shown. 180 const string16& label, 186 const string16& label); 191 const string16& label, 194 // This is a convenience for standard text label menu items where the label [all...] |
/system/core/libpixelflinger/codeflinger/ |
ARMAssembler.h | 109 virtual void label(const char* theLabel); 110 virtual void B(int cc, const char* label); 111 virtual void BL(int cc, const char* label); 113 virtual uint32_t* pcForLabel(const char* label); 175 inline branch_target_t() : label(0), pc(0) { } 177 : label(l), pc(p) { } 178 const char* label; member in struct:android::ARMAssembler::branch_target_t
|
/external/chromium_org/ash/system/date/ |
date_view.cc | 21 #include "ui/views/controls/label.h" 75 views::Label* CreateLabel() { 76 views::Label* label = new views::Label; local 77 label->SetHorizontalAlignment(gfx::ALIGN_LEFT); 78 label->SetBackgroundColor(SkColorSetARGB(0, 255, 255, 255)); 79 return label; 300 void TimeView::SetupLabel(views::Label* label) { [all...] |
/cts/tests/tests/view/src/android/view/inputmethod/cts/ |
EditorInfoTest.java | 43 info.label = "label"; 71 assertEquals(info.label.toString(), targetInfo.label.toString());
|
/development/samples/ApiDemos/src/com/example/android/apis/accessibility/ |
TaskListView.java | 96 TextView label = (TextView)(convertView.findViewById(R.id.tasklist_label)); local 97 label.setText(mLabels[position]); 103 label.setContentDescription(contentDescription);
|
/external/chromium/chrome/browser/ui/gtk/bookmarks/ |
bookmark_utils_gtk.cc | 60 // we can have finer control over its label. 68 GtkWidget* label = gtk_label_new(label_string.c_str()); local 70 gtk_util::ForceFontSizePixels(label, 13.4); // 13.4px == 10pt @ 96dpi 74 gtk_label_set_max_width_chars(GTK_LABEL(label), kMaxCharsOnAButton); 75 gtk_label_set_ellipsize(GTK_LABEL(label), PANGO_ELLIPSIZE_END); 78 gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 0); local 79 bookmark_utils::SetButtonTextColors(label, provider); 83 // If we are not showing the label, don't set any padding, so that the icon 281 void SetButtonTextColors(GtkWidget* label, GtkThemeService* provider) { 283 gtk_util::SetLabelColor(label, NULL) [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
external_protocol_dialog_gtk.cc | 87 GtkWidget* label = gtk_label_new(message_text.c_str()); local 88 gtk_util::SetLabelWidth(label, kMessageWidth); 89 gtk_box_pack_start(GTK_BOX(vbox), label, TRUE, TRUE, 0); local
|
/external/chromium_org/base/android/java/src/org/chromium/base/ |
BuildInfo.java | 98 CharSequence label = packageManager.getApplicationLabel(appInfo); local 99 return label != null ? label.toString() : "";
|
/external/chromium_org/chrome/browser/ui/gtk/ |
manage_passwords_bubble_gtk.cc | 69 GtkWidget* label = theme_service->BuildLabel( local 71 gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5); 72 gtk_box_pack_start(GTK_BOX(bubble_contents_), label, FALSE, FALSE, 0); local
|
/external/chromium_org/content/browser/android/ |
date_time_chooser_android.cc | 97 ScopedJavaLocalRef<jstring> label = ConvertUTF16ToJavaString( local 98 env, SanitizeSuggestionString(suggestion.label)); 101 suggestion.value, localized_value.obj(), label.obj());
|
/external/chromium_org/content/shell/browser/ |
shell_login_dialog_gtk.cc | 49 GtkWidget* label = gtk_label_new(UTF16ToUTF8(message).c_str()); local 50 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); 51 gtk_box_pack_start(GTK_BOX(content_area), label, FALSE, FALSE, 0); local
|
/external/chromium_org/third_party/openssl/openssl/crypto/modes/asm/ |
ghash-x86.pl | 152 &jmp (&label("x86_loop")); 177 &js (&label("x86_break")); 179 &jmp (&label("x86_loop")); 322 &jb (&label("x86_outer_loop")); 417 &call (&label("pic_point")); 420 &lea ("eax",&DWP(&label("rem_4bit")."-".&label("pic_point"),"eax")); 443 &call (&label("pic_point")); 446 &lea ("eax",&DWP(&label("rem_4bit")."-".&label("pic_point"),"eax")) [all...] |
/external/chromium_org/tools/telemetry/telemetry/page/ |
page_filter.py | 8 for label in labels: 9 if hasattr(obj, label) and getattr(obj, label): 66 group.add_option('--page-label-filter', dest='page_label_filter', 68 group.add_option('--page-label-filter-exclude',
|
/external/chromium_org/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); 52 virtual void CheckGreedyLoop(Label* on_tos_equals_current_position); 53 virtual void CheckNotAtStart(Label* on_not_at_start); 54 virtual void CheckNotBackReference(int start_reg, Label* on_no_match) [all...] |
/external/openssh/contrib/ |
gnome-ssh-askpass1.c | 73 GtkWidget *dialog, *entry, *label; local 84 label = gtk_label_new(messages[i]); 86 label, FALSE, FALSE, 0);
|