HomeSort by relevance Sort by last modified time
    Searched refs:label (Results 301 - 325 of 622) sorted by null

<<11121314151617181920>>

  /packages/apps/VoiceDialer/src/com/android/voicedialer/
CommandRecognizerEngine.java 253 // fetch a scrubbed window label
254 String label = scrubName(ri.loadLabel(pm).toString()); local
255 if (label.length() == 0) continue;
258 addClassName(mOpenEntries, label,
262 String[] words = label.split(" ");
321 for (String label : mOpenEntries.keySet()) {
323 String entry = mOpenEntries.get(label);
336 mSrecGrammar.addWordToSlot("@Opens", label, null, 1, "V='" + label + "'");
343 * @param label a label or word corresponding to the list of classes
1165 String label = ri.loadLabel(pm).toString(); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinKeyboard.java 154 m123Label = key.label;
170 mEnterKey.label = res.getText(R.string.label_go_key);
175 mEnterKey.label = res.getText(R.string.label_next_key);
180 mEnterKey.label = res.getText(R.string.label_done_key);
187 mEnterKey.label = null;
192 mEnterKey.label = res.getText(R.string.label_send_key);
198 mEnterKey.label = ":-)";
206 mEnterKey.label = null;
304 m123Key.label = null;
308 m123Key.label = m123Label
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiListAttributeNode.java 40 import org.eclipse.swt.widgets.Label;
61 * Creates a label widget and an associated text field.
71 Label label = toolkit.createLabel(parent, desc.getUiName()); local
72 label.setLayoutData(new TableWrapData(TableWrapData.LEFT, TableWrapData.MIDDLE));
73 SectionHelper.addControlTooltip(label, DescriptorsUtils.formatTooltip(desc.getTooltip()));
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 562 private CharSequence adjustCase(CharSequence label) {
563 if (mKeyboard.isShifted() && label != null && label.length() < 3
564 && Character.isLowerCase(label.charAt(0))) {
565 label = label.toString().toUpperCase();
567 return label;
670 String label = key.label == null? null : adjustCase(key.label).toString() local
    [all...]
  /development/apps/Development/src/com/android/development/
PackageSummary.java 74 mLabel = (TextView)findViewById(R.id.label);
101 CharSequence label = null; local
106 label = info.applicationInfo.nonLocalizedLabel;
146 if (label != null) {
147 mLabel.setText("\"" + label + "\"");
149 mLabel.setText("(No Label)");
  /development/apps/GestureBuilder/src/com/android/gesture/builder/
GestureBuilderActivity.java 243 ((TextView) layout.findViewById(R.id.label)).setText(R.string.gestures_rename_label);
428 final TextView label = (TextView) convertView; local
430 label.setTag(gesture);
431 label.setText(gesture.name);
432 label.setCompoundDrawablesWithIntrinsicBounds(mThumbnails.get(gesture.gesture.getID()),
  /external/srec/srec/include/
simapi.h 218 char *label; member in struct:__anon5902
640 const char *label);
644 * label textual trasncription of requested word
655 const char *label,
662 * label textual trasncription of requested word
    [all...]
  /external/srec/tools/grxmlcompile/
netw_dump.cpp 50 std::string label; local
108 std::string label; local
155 // Input label
161 // Output label
193 std::string label; local
273 std::string label; local
343 std::string label; local
  /packages/apps/AlarmClock/src/com/android/alarmclock/
AlarmClock.java 145 // Display the label
147 (TextView) digitalClock.findViewById(R.id.label);
148 if (alarm.label != null && alarm.label.length() != 0) {
149 labelView.setText(alarm.label);
318 textView.setText(alarm.label);
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmClock.java 140 // Display the label
142 (TextView) view.findViewById(R.id.label);
143 if (alarm.label != null && alarm.label.length() != 0) {
144 labelView.setText(alarm.label);
273 textView.setText(alarm.label);
  /external/wpa_supplicant/
sha1.c 114 * @label: A unique label for each purpose of the PRF
123 void sha1_prf(const u8 *key, size_t key_len, const char *label,
129 size_t label_len = os_strlen(label);
133 addr[0] = (u8 *) label;
164 * @label: A unique label for each purpose of the PRF
174 void sha1_t_prf(const u8 *key, size_t key_len, const char *label,
180 size_t label_len = os_strlen(label);
187 addr[1] = (unsigned char *) label;
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
sha1.c 114 * @label: A unique label for each purpose of the PRF
123 void sha1_prf(const u8 *key, size_t key_len, const char *label,
129 size_t label_len = os_strlen(label) + 1;
133 addr[0] = (u8 *) label;
163 * @label: A unique label for each purpose of the PRF
172 void sha1_t_prf(const u8 *key, size_t key_len, const char *label,
178 size_t label_len = os_strlen(label);
185 addr[1] = (unsigned char *) label;
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/sql/
ResultSetMetaDataTest.java 162 @KnownFailure("Column label has format TABLE.COLUMN expected: COLUMN")
167 String label = rsmd.getColumnLabel(i + 1); local
168 assertTrue("expected "+labels[i] + "got "+label,labels[i].contains(label));
175 String label = rsmd.getColumnLabel(0); local
182 String label = rsmd.getColumnLabel(5); local
198 @KnownFailure("Column label has format TABLE.COLUMN expected: COLUMN")
211 String label = rsmd.getColumnName(0); local
218 String label = rsmd.getColumnName(5); local
  /external/webkit/WebKitTools/QtLauncher/
main.cpp 382 QLabel* label = new QLabel; local
383 label->setAttribute(Qt::WA_DeleteOnClose);
384 label->setWindowTitle("Screenshot - Preview");
385 label->setPixmap(pixmap);
386 label->show();
388 QString fileName = QFileDialog::getSaveFileName(label, "Screenshot");
391 label->setWindowTitle(QString("Screenshot - Saved at %1").arg(fileName));
  /packages/apps/Contacts/src/com/android/contacts/
ContactsUtils.java 61 // Try finding the type and label for this mimetype
67 // Reset to phone mimetype so we generate a label for SMS case
70 colLabel = cursor.getColumnIndex(Phone.LABEL);
73 colLabel = cursor.getColumnIndex(Email.LABEL);
76 colLabel = cursor.getColumnIndex(StructuredPostal.LABEL);
79 colLabel = cursor.getColumnIndex(Organization.LABEL);
85 final CharSequence label = cursor.getString(colLabel); local
87 return getDisplayLabel(context, mimeType, type, label);
91 CharSequence label) {
114 // Can't return display label for given mimetype
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
PowerUsageDetail.java 274 final String label = getString(mTypes[i]); local
293 TextView labelView = (TextView) item.findViewById(R.id.label);
295 labelView.setText(label);
460 CharSequence label = ai.loadLabel(pm); local
462 if (label != null) {
463 mPackages[i] = label.toString();
471 TextView labelView = (TextView) item.findViewById(R.id.label);
PowerUsageSummary.java 303 String label = getString(mStats.isOnBattery() local
306 setTitle(label);
548 private BatterySipper addEntry(String label, DrainType drainType, long time, int iconId,
552 BatterySipper bs = new BatterySipper(label, drainType, iconId, null, new double[] {power});
588 BatterySipper(String label, DrainType drainType, int iconId, Uid uid, double[] values) {
590 name = label;
596 if ((label == null || iconId == 0) && uid != null) {
675 CharSequence label = ai.loadLabel(pm); local
676 if (label != null) {
677 packageLabels[i] = label.toString()
    [all...]
  /external/blktrace/btreplay/doc/
btreplay.tex 242 \newpage\section{\label{sec:command-line}Command Line Options}
259 \caption{\label{fig:btrecord--help}\texttt{btrecord --help} Output}
263 \subsubsection{\label{sec:c-o-d}\texttt{-d} or
270 \subsubsection{\label{sec:c-o-D}\texttt{-D} or
301 \subsubsection{\label{sec:c-o-m}\texttt{-m} or
313 \subsubsection{\label{sec:c-o-M}\texttt{-M} or
323 \subsubsection{\label{sec:c-o-o}\texttt{-o} or
341 \subsubsection{\label{sec:c-o-v}\texttt{-v} or
356 \caption{\label{fig:verb-out}Verbose Output Example}
377 \caption{\label{fig:verb-defs}Verbose Field Definitions
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ContactHeaderWidget.java 576 String label = null; local
597 label = resources.getString(labelResource);
606 if (timestamp != null && label != null) {
609 timestamp, label);
610 } else if (timestamp == null && label != null) {
613 label);
  /build/tools/droiddoc/templates/assets/
android-developer-reference.js 15 $("#api-level-toggle label").removeClass("disabled");
19 $("#api-level-toggle label").addClass("disabled");
35 $("#api-level-toggle label").removeClass("disabled");
107 node.label_div.className = "label";
144 node.label = document.createTextNode(text);
145 a.appendChild(node.label);
  /cts/tools/dasm/src/java_cup/
production.java 255 /** Determine if a given character can be a label id starter.
267 /** Determine if a character can be in a label id.
279 /** Determine the translation for one label id found within a code_string.
316 /* its a RHS label */
318 /* if the label appears after the action, we have an error */
322 System.err.println("*** Label \"" + id_str +
333 label to action minus one */
344 /** Translate all the label names within an action string to appropriate code.
431 /** Translate label names to appropriate code within all action strings.
456 /* if it has a label enter it in the tables *
    [all...]
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 308 int label = bb.getLabel(); local
310 sb.append(Hex.u2(label));
313 IntList preds = rmeth.labelToPredecessors(label);
  /dalvik/vm/compiler/codegen/arm/FP/
Thumb2VFP.c 203 ArmLIR *label = newLIR0(cUnit, kArmPseudoTargetLabel); local
204 label->defMask = ENCODE_ALL;
205 branch->generic.target = (LIR *)label;
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ExternalStorage.java 358 Item createStorageControls(CharSequence label, File path,
364 TextView tv = (TextView)item.mRoot.findViewById(R.id.label);
365 tv.setText(label);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
DensityActivity.java 123 TextView label = new TextView(this); local
124 label.setText(text);
125 root.addView(label, new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT,

Completed in 963 milliseconds

<<11121314151617181920>>