HomeSort by relevance Sort by last modified time
    Searched refs:label (Results 476 - 500 of 2711) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/gesture/
Learner.java 74 // the label can be null, as specified in Instance
75 if ((instance.label == null && name == null)
76 || (instance.label != null && instance.label.equals(name))) {
  /frameworks/native/include/input/
Keyboard.h 85 * Gets a key code by its short form label, eg. "HOME".
88 extern int32_t getKeyCodeByLabel(const char* label);
91 * Gets a key flag by its short form label, eg. "WAKE".
94 extern uint32_t getKeyFlagByLabel(const char* label);
97 * Gets a axis by its short form label, eg. "X".
100 extern int32_t getAxisByLabel(const char* label);
103 * Gets a axis label by its id.
  /packages/apps/Contacts/src/com/android/contacts/detail/
CarouselTab.java 41 * This view adds an alpha layer over the entire tab (except for the label).
53 mLabelView = (TextView) findViewById(R.id.label);
59 public void setLabel(String label) {
60 mLabelView.setText(label);
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupDetailDisplayUtils.java 46 TextView label = (TextView) view.findViewById(android.R.id.title); local
47 if (label == null) {
49 + "android.R.id.label");
51 label.setText(accountType.getViewGroupLabel(context));
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageUtil.java 84 public static View initSnippet(View snippetView, CharSequence label, Drawable icon) {
86 ((TextView)snippetView.findViewById(R.id.app_name)).setText(label);
123 ((TextView)appSnippet.findViewById(R.id.app_name)).setText(as.label);
141 CharSequence label; field in class:PackageUtil.AppSnippet
143 public AppSnippet(CharSequence label, Drawable icon) {
144 this.label = label;
150 * Utility method to load application label
163 CharSequence label = null; local
164 // Try to load the label from the package's resources. If an app has not explicitl
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
grammar.h 12 /* A label of an arc */
17 } label; typedef in typeref:struct:__anon60455
19 #define EMPTY 0 /* Label number 0 is by definition the empty label */
25 label *ll_label;
31 short a_lbl; /* Label of this arc */
42 int s_lower; /* Lowest label index */
43 int s_upper; /* Highest label index */
79 char *PyGrammar_LabelRepr(label *lb);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
grammar.h 12 /* A label of an arc */
17 } label; typedef in typeref:struct:__anon60578
19 #define EMPTY 0 /* Label number 0 is by definition the empty label */
25 label *ll_label;
31 short a_lbl; /* Label of this arc */
42 int s_lower; /* Lowest label index */
43 int s_upper; /* Highest label index */
79 char *PyGrammar_LabelRepr(label *lb);
  /external/doclava/src/com/google/doclava/
LinkReference.java 38 public String label; field in class:LinkReference
79 * and fills in href and label with error text.
137 result.label = text.substring(index);
326 result.label = result.label + "/" + ref + "/" + mem + '/';
329 result.label += params[i] + "|";
336 result.label =
337 result.label + "/package="
351 if (DBG) System.out.println("----- label = " + result.label + ", text = '" + text + "'")
    [all...]
  /external/icu4c/common/
uts46.cpp 35 // where the last ("root") label is the empty label
38 // if there is a trailing dot for the root label.
73 IDNA::labelToASCII_UTF8(const StringPiece &label, ByteSink &dest,
77 labelToASCII(UnicodeString::fromUTF8(label), destString,
83 IDNA::labelToUnicodeUTF8(const StringPiece &label, ByteSink &dest,
87 labelToUnicode(UnicodeString::fromUTF8(label), destString,
120 labelToASCII(const UnicodeString &label, UnicodeString &dest,
124 labelToUnicode(const UnicodeString &label, UnicodeString &dest,
136 labelToASCII_UTF8(const StringPiece &label, ByteSink &dest
692 const UChar *label=dest.getBuffer()+labelStart; local
905 const UChar *label=dest.getBuffer()+labelStart; local
    [all...]
  /external/chromium_org/components/autofill/core/browser/
phone_field_unittest.cc 51 field.label = ASCIIToUTF16("Phone");
68 field.label = ASCIIToUTF16("Area Code");
72 field.label = ASCIIToUTF16("Phone");
97 field.label = ASCIIToUTF16("Phone:");
102 field.label = ASCIIToUTF16("-");
107 field.label = ASCIIToUTF16("-");
112 field.label = ASCIIToUTF16("ext.:");
141 field.label = ASCIIToUTF16("Phone:");
145 field.label = base::string16();
149 field.label = base::string16()
    [all...]
  /external/chromium_org/tools/gn/
command_gyp.cc 32 typedef std::map<Label, TargetGroup> CorrelatedTargetsMap;
51 // Groups targets sharing the same label between debug and release.
53 // We strip the toolchain label because the 64-bit and 32-bit builds, for
71 (*correlated)[record->label().GetWithNoToolchain()].debug = record;
75 (*correlated)[record->label().GetWithNoToolchain()].release = record;
81 (*correlated)[record->label().GetWithNoToolchain()].host_debug = record;
85 (*correlated)[record->label().GetWithNoToolchain()].host_release = record;
91 (*correlated)[record->label().GetWithNoToolchain()].debug64 = record;
95 (*correlated)[record->label().GetWithNoToolchain()].release64 = record;
108 non_null_one->label().GetUserVisibleName(true))
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg 592 :{it|<labelType> <it.label.text> = default(<labelType>);}; separator="\n"
595 :{it|List\<<labelType>\> list_<it.label.text> = null;}; separator="\n"
598 :{it|List\<<ASTLabelType>\> list_<it.label.text> = null;}; separator="\n"
608 :{it|<labelType> <it.label.text> = default(<labelType>);}; separator="\n"
612 :{it|int <it.label.text> = 0;}; separator="\n"
616 :{it|List\<<labelType>\> list_<it.label.text> = null;}; separator="\n"
618 <ruleDescriptor.charListLabels:{it|List\<int\> list_<it.label.text> = null;}; separator="\n"
884 /** match a token optionally with a label in front */
885 tokenRef(token,label,elementIndex,terminalOptions) ::= <<
886 <if(label)><label>=(<labelType>)<endif>Match(input,<token>,Follow._<token>_in_<ruleName><elementIndex>); <ch (…)
    [all...]
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
LatinKeyboard.java 54 * appropriate label on the keyboard's enter key (if it has one).
65 mEnterKey.label = res.getText(R.string.label_go_key);
70 mEnterKey.label = res.getText(R.string.label_next_key);
74 mEnterKey.label = null;
79 mEnterKey.label = res.getText(R.string.label_send_key);
83 mEnterKey.label = null;
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentArgumentsSupport.java 62 static MyFragment newInstance(CharSequence label) {
65 b.putCharSequence("label", label);
93 CharSequence label = args.getCharSequence("label"); local
94 if (label != null) {
95 mLabel = label;
107 ((TextView)tv).setText(mLabel != null ? mLabel : "(no label)");
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAState.java 50 /** For o-A->o type NFA tranitions, record the label that leads to this
54 public Label incidentEdgeLabel;
127 // knows about the label of the incoming edge.
128 Label label = e.label; local
129 if ( label.isAtom() || label.isSet() ) {
133 ((NFAState)e.target).incidentEdgeLabel = e.label;
  /external/chromium_org/chrome/browser/extensions/api/dial/
dial_device_data_unittest.cc 16 EXPECT_EQ(first.label(), second.label());
30 device.set_label("label");
35 EXPECT_EQ(api_device.device_label, device.label());
69 EXPECT_EQ("label_a", original_2.label());
82 EXPECT_EQ("label_a", original_3.label());
  /external/chromium_org/chrome/browser/ui/views/location_bar/
keyword_hint_view.cc 22 #include "ui/views/controls/label.h"
95 views::Label* KeywordHintView::CreateLabel(const gfx::FontList& font_list,
98 views::Label* label = new views::Label(base::string16(), font_list); local
99 label->SetEnabledColor(text_color);
100 label->SetBackgroundColor(background_color);
101 AddChildView(label);
102 return label;
  /external/chromium_org/content/child/
child_process.cc 107 void ChildProcess::WaitForDebugger(const std::string& label) {
115 title += label; // makes attaching to process easier
116 std::string message = label;
123 LOG(ERROR) << label << " waiting for GDB.";
130 LOG(ERROR) << label
  /external/chromium_org/tools/metrics/histograms/
update_extension_functions.py 46 """Returns a list of pairs (label, value) corresponding to HistogramValue.
67 label = ExtractRegexGroup(line.strip(), "^([\w]+)")
68 if label:
69 result.append((label, enum_value))
84 histogram_values: A list of pairs (label, value) defining each extension
109 for (label, value) in histogram_values:
112 node.attributes['label'] = label
  /external/chromium_org/ui/views/examples/
widget_example.cc 10 #include "ui/views/controls/label.h"
34 AddChildView(new Label(ASCIIToUTF16("Dialog contents label!")));
50 Label* label = new Label(ASCIIToUTF16("Extra view!")); local
51 label->SetEnabledColor(SK_ColorBLUE);
52 return label;
56 return new Label(ASCIIToUTF16("Footnote label!"));
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-stepout-scope-part8.js 68 label: {
70 break label;
77 label: {
79 break label;
87 label: {
90 break label;
98 label: {
101 break label;
119 label: for (var i = 0; i < 3; ++i) {
123 continue label;
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatType.java 116 private final String label; field in class:FatType
120 long bitMask, float entrySize, String label) {
127 this.label = label;
149 * @return the boot sector label for this FAT type
152 return this.label;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg 614 :{it|<labelType> <it.label.text> = default(<labelType>);}; separator="\n"
617 :{it|List\<<labelType>\> list_<it.label.text> = null;}; separator="\n"
620 :{it|List\<<ASTLabelType>\> list_<it.label.text> = null;}; separator="\n"
630 :{it|<labelType> <it.label.text> = default(<labelType>);}; separator="\n"
634 :{it|int <it.label.text> = 0;}; separator="\n"
638 :{it|List\<<labelType>\> list_<it.label.text> = null;}; separator="\n"
640 <ruleDescriptor.charListLabels:{it|List\<int\> list_<it.label.text> = null;}; separator="\n"
908 /** match a token optionally with a label in front */
909 tokenRef(token,label,elementIndex,terminalOptions) ::= <<
910 <if(label)><label>=(<labelType>)<endif>Match(input,<token>,Follow._<token>_in_<ruleName><elementIndex>); <ch (…)
    [all...]
  /external/srec/tools/grxmlcompile/
grxmldoc.cpp 1029 std::string label; local
1038 if ( m_LabelList.getFirst( &origIndex, &label ) ) {
1039 if ( IsSlot( label ) ) {
1040 orderedList.insert( orderedIndex++, label );
1042 while (m_LabelList.getNext( &origIndex, &label ) ) {
1043 if ( IsSlot( label ) ) {
1044 orderedList.insert( orderedIndex++, label );
1050 if ( m_LabelList.getFirst( &origIndex, &label ) ) {
1053 std::cout << label << " "<< label.find_first_of ("@") << std::endl
1101 std::string label; local
1168 std::string label; local
1248 const char* label = iter->first.c_str(); local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
popup.js 168 var label = row.childNodes[0] || row.insertCell(-1);
171 label.className = "status-label";
172 var clAnchor = label.childNodes[0] ||
173 label.appendChild(document.createElement("a"));
212 var label = row.insertCell(-1);
213 label.className = "status-label";
218 labelAnchor.textContent = bot.label;
219 label.appendChild(labelAnchor)
    [all...]

Completed in 1846 milliseconds

<<11121314151617181920>>