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

1 23 4 5 6 7

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 34 * An OpenGL text label maker.
46 * texture, and you have to recreate the whole texture if any label text
52 * Create a label maker
135 * Call to add a label
138 * @param text the text of the label
139 * @param textPaint the paint of the label
140 * @return the id of the label, used to measure and draw the label
147 * Call to add a label
150 * @param text the text of the label
341 Label label = mLabels.get(labelID); local
    [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 589 // Switch cases are a special case: report the label to the caller
591 // situations where no label matched: we can't be sure that's
594 const Stmt *Label = Succ->getLabel();
595 if (!Label || !isa<SwitchCase>(Label))
599 Branch.Terminator = Label;
  /external/llvm/include/llvm/Support/
GenericDomTree.h 206 NodeT *Label;
208 InfoRec() : DFSNum(0), Parent(0), Semi(0), Label(nullptr) {}
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
determinize.h 53 // The label common divisor for a (left) string semiring selects a
83 // The gallic common divisor uses the label common divisor on the
128 typedef typename A::Label Label;
207 typedef typename A::Label Label;
220 typedef map<Label, Subset*> LabelMap;
299 // Constructs destination subsets per label. At return, subset
300 // element weights include the input automaton label weights and the
325 void AddArc(StateId s, Label label, Subset *dest_subset)
    [all...]
map.h 686 typedef StringWeight<typename A::Label, S> SW;
697 // Epsilon label.
701 // Regular label.
721 typedef typename A::Label Label;
722 typedef StringWeight<Label, S> SW;
733 StringWeightIterator<Label, S> iter1(w1);
735 Label l = w1.Size() == 1 ? iter1.Value() : 0;
761 typedef typename A::Label Label;
    [all...]
replace.h 31 // By default ReplaceFst will copy the input label of the 'replace arc'.
72 typedef typename A::Label Label;
77 typedef std::unordered_map<Label, Label> NonTerminalHash;
96 // \param fst_tuples array of label/fst tuples, one for each non-terminal
97 ReplaceFstImpl(const vector< pair<Label, const Fst<A>* > >& fst_tuples,
142 void AddFst(Label label, const Fst<A>* fst) {
143 nonterminal_hash_[label] = fst_array_.size()
    [all...]
compose.h 99 typedef typename A::Label Label;
328 typedef typename A::Label Label;
333 enum FindType { FIND_INPUT = 1, // find input label on fst2
334 FIND_OUTPUT = 2, // find output label on fst1
356 LOG(FATAL) << "ComposeFst: 1st argument not output label "
365 LOG(FATAL) << "ComposeFst: 2nd argument not input label "
403 LOG(FATAL) << "ComposeFst: 1st argument not output label sorted "
404 << "and 2nd argument is not input label sorted"
597 Label label = find_input ? local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintListDialog.java 41 import org.eclipse.swt.widgets.Label;
149 new Label(container, SWT.NONE);
160 new Label(container, SWT.NONE);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
MarginChooser.java 30 import org.eclipse.swt.widgets.Label;
52 private Label mErrorLabel;
83 @SuppressWarnings("unused") // SWT constructors have side effects, "new Label" is not unused.
91 Label allLabel = new Label(container, SWT.NONE);
103 Label label = new Label(container, SWT.SEPARATOR | SWT.HORIZONTAL); local
104 label.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, false, false, 3, 1));
106 Label leftLabel = new Label(container, SWT.NONE)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/
WelcomeWizardPage.java 33 import org.eclipse.swt.widgets.Label;
64 @SuppressWarnings("unused") // SWT constructors have side effects so "new Label" is not unused
71 Label overviewLabel = new Label(container, SWT.WRAP | SWT.SHADOW_NONE);
77 Label spacing = new Label(container, SWT.NONE);
86 Label indentLabel = new Label(container, SWT.NONE);
98 new Label(container, SWT.NONE);
105 new Label(container, SWT.NONE)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
ActivityPage.java 43 import org.eclipse.swt.widgets.Label;
62 private Label mHeading;
63 private Label mDescription;
163 new Label(container, SWT.NONE);
165 mHeading = new Label(container, SWT.NONE);
167 new Label(container, SWT.NONE);
169 mDescription = new Label(container, SWT.WRAP);
  /external/chromium_org/v8/src/
assembler.h 206 // After declaration, a label can be freely used to denote known or (yet)
207 // unknown pc location. Assembler::bind() is used to bind a label to the
208 // current pc. A label can be bound only once.
210 class Label BASE_EMBEDDED {
216 INLINE(Label()) {
221 INLINE(~Label()) {
241 // and the binding position (via its value) of a label.
243 // pos_ < 0 bound label, pos() returns the jump target position
244 // pos_ == 0 unused label
245 // pos_ > 0 linked label, pos() returns the last reference positio
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.h 377 enum Label {
383 // indexed by Label.
425 Label label() const; // optional/required/repeated
427 bool is_required() const; // shorthand for label() == LABEL_REQUIRED
428 bool is_optional() const; // shorthand for label() == LABEL_OPTIONAL
429 bool is_repeated() const; // shorthand for label() == LABEL_REPEATED
545 Label label_;
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp     [all...]
  /external/llvm/include/llvm/MC/
MCDwarf.h 131 /// instruction is assembled and uses an address from a temporary label
135 MCSymbol *Label;
143 MCLineEntry(MCSymbol *label, const MCDwarfLoc loc)
144 : MCDwarfLoc(loc), Label(label) {}
146 MCSymbol *getLabel() const { return Label; }
182 MCSymbol *Label;
188 MCDwarfLineTableHeader() : Label(nullptr) {}
223 return Header.Label;
226 void setLabel(MCSymbol *Label) {
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 57 MCSymbol *Label; // Label in code ID number.
59 SrcLineInfo(unsigned L, unsigned C, unsigned S, MCSymbol *label)
60 : Line(L), Column(C), SourceID(S), Label(label) {}
66 MCSymbol *getLabel() const { return Label; }
221 // Maps instruction with label emitted before instruction.
224 // Maps instruction with label emitted after instruction.
232 // label location to indicate scope boundries in dwarf debug info.
393 /// \brief Emit initial Dwarf sections with a label at the start of each one
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 168 MCSymbol *Label = it->getLabel();
171 // line numbers and the increment of the address from the previous Label
172 // and the current Label.
174 MCOS->EmitDwarfAdvanceLineAddr(LineDelta, LastLabel, Label,
178 LastLabel = Label;
182 // Using the pointer Section create a temporary label at the end of the
257 MCSymbol *LineStartSym = Label;
633 // DIE and a list of label DIEs.
757 // Third part: the list of label DIEs.
766 // AT_name, of the label without any leading underbar
    [all...]
MCStreamer.cpp 96 const MCSymbol *Label, int PointerSize) {
101 EmitSymbolValue(Label, PointerSize);
281 MCSymbol *Label = getContext().CreateTempSymbol();
282 EmitLabel(Label);
283 return Label;
287 MCSymbol *Label = EmitCFICommon();
289 MCCFIInstruction::createDefCfa(Label, Register, Offset);
295 MCSymbol *Label = EmitCFICommon();
297 MCCFIInstruction::createDefCfaOffset(Label, Offset);
303 MCSymbol *Label = EmitCFICommon()
    [all...]
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp 778 MCSymbol *Label = Ctx.GetOrCreateSymbol(Twine(Prefix)
780 return Label;
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.h 347 enum Label {
353 // indexed by Label.
393 Label label() const; // optional/required/repeated
395 bool is_required() const; // shorthand for label() == LABEL_REQUIRED
396 bool is_optional() const; // shorthand for label() == LABEL_OPTIONAL
397 bool is_repeated() const; // shorthand for label() == LABEL_REPEATED
500 Label label_;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
164 [("Menubutton.label", {"side": "left", "expand": 1})]
177 Menubutton.label -side left -expand 1
542 LABEL WIDGET OPTIONS
594 """Ttk Button widget, displays a textual label and/or image, and
738 class Label(Widget):
739 """Ttk Label widget displays a textual label and/or image."""
742 """Construct a Ttk Label with parent master.
754 Widget.__init__(self, master, "ttk::label", kw
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
164 [("Menubutton.label", {"side": "left", "expand": 1})]
177 Menubutton.label -side left -expand 1
542 LABEL WIDGET OPTIONS
594 """Ttk Button widget, displays a textual label and/or image, and
738 class Label(Widget):
739 """Ttk Label widget displays a textual label and/or image."""
742 """Construct a Ttk Label with parent master.
754 Widget.__init__(self, master, "ttk::label", kw
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleWizard.java 44 import org.eclipse.swt.widgets.Label;
109 Label nameLabel = new Label(composite, SWT.NONE);
145 new Label(composite, SWT.NONE);
146 new Label(composite, SWT.NONE);
148 Label tableLabel = new Label(composite, SWT.NONE);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ApplicationInfoPage.java 47 import org.eclipse.swt.widgets.Label;
76 private Label mTestProjectNameLabel;
77 private Label mTestApplicationLabel;
78 private Label mTestPackageLabel;
101 Label applicationLabel = new Label(container, SWT.NONE);
108 Label packageLabel = new Label(container, SWT.NONE);
125 Label minSdkLabel = new Label(container, SWT.NONE)
    [all...]
ImportPage.java 59 import org.eclipse.swt.widgets.Label;
115 Label directoryLabel = new Label(container, SWT.NONE);
129 Label projectsLabel = new Label(container, SWT.NONE);
171 new Label(container, SWT.NONE);

Completed in 1597 milliseconds

1 23 4 5 6 7