/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
StopWatch.java | 35 private StopWatch(String label) { 36 mLabel = label; 43 public static StopWatch start(String label) { 44 return new StopWatch(label);
|
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
ContactInfo.java | 32 public String label; field in class:ContactInfo 68 if (!TextUtils.equals(label, other.label)) return false; 80 "type", type).add("label", label).add("number", number).add("formattedNumber",
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
MoreKeySpec.java | 76 final String label = (mIconId == KeyboardIconsSet.ICON_UNDEFINED ? mLabel local 80 if (StringUtils.codePointCount(label) == 1 && label.codePointAt(0) == mCode) { 83 return label + "|" + output;
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
Fat16BootSector.java | 40 * The default volume label. 70 * The offset to the first byte of the volume label. 82 * The maximum length of the volume label. 98 * Returns the volume label that is stored in this boot sector. 100 * @return the volume label 119 * Sets the volume label that is stored in this boot sector. 121 * @param label the new volume label 122 * @throws IllegalArgumentException if the specified label is longer 125 public void setVolumeLabel(String label) throws IllegalArgumentException [all...] |
Fat32BootSector.java | 43 * Offset to the file system type label. 114 * Sets the 11-byte volume label stored at offset 0x47. 116 * @param label the new volume label, may be {@code null} 118 public void setVolumeLabel(String label) { 121 (label == null) ? 0 : 122 (label.length() > i) ? (byte) label.charAt(i) : 0x20;
|
/external/chromium_org/ui/views/controls/menu/ |
menu_win.cc | 24 // the item label. 26 // Margins between the top of the item and the label. 28 // Margins between the bottom of the item and the label. 32 // Margins between the right of the item and the label. 42 string16 label; member in struct:views::MenuWin::ItemData 107 lpmis->itemWidth = font.GetStringWidth(data->label) + kIconWidth + 112 // If the label contains an accelerator, make room for tab. 113 if (data->label.find(L'\t') != string16::npos) 148 // Draw the label. 165 // label from the accelerator), we have to justify the fist part on th 169 string16 label = data->label; local 500 string16 label; local [all...] |
/dalvik/dx/src/com/android/dx/cf/code/ |
Ropper.java | 53 /** label offset for the parameter assignment block */ 56 /** label offset for the return block */ 59 /** label offset for the synchronized method final return block */ 62 /** label offset for the first synchronized method setup block */ 65 /** label offset for the second synchronized method setup block */ 69 * label offset for the first synchronized method exception 75 * label offset for the second synchronized method exception 80 /** number of special label offsets */ 92 /** max label (exclusive) of any original bytecode block */ 118 * {@code non-null;} for each block (by label) that is used as an exceptio 393 int label = bb.getLabel(); local 596 int label = successors.get(i); local 920 int label = getAvailableLabel(); local 1049 int label = synch ? getSpecialLabel(SYNCH_SETUP_1) : 0; local 1115 int label = getSpecialLabel(RETURN); local 1299 int label = reachableSubroutineCallerLabels.get(i); local [all...] |
/external/e2fsprogs/lib/blkid/ |
probe.c | 39 static int figure_label_len(const unsigned char *label, int len) 41 const unsigned char *end = label + len - 1; 43 while ((*end == ' ' || *end == 0) && end >= label) 45 if (end >= label) { 46 label = label; 47 return end - label + 1; 142 const char *label = 0; local 150 label = es->s_volume_name; 151 blkid_set_tag(dev, "LABEL", label, sizeof(es->s_volume_name)) 522 const unsigned char *label = 0, *vol_label = 0, *tmp; local 795 const char *label = 0; local 811 const char *label = 0; local 839 const unsigned char *label = 0; local 855 const char *label = 0; local 908 const char *label = 0; local 923 const char *label = 0; local 980 const unsigned char *label; local 1091 const char *label = 0; local 1113 const char *label = 0; local 1209 char uuid_str[17], label[512]; local 1329 struct lvm2_pv_label_header *label= (struct lvm2_pv_label_header *)buf; local 1376 const char *label = 0; local [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
List3.java | 60 String label = null; 61 //Custom type? Then get the custom label 63 label = cursor.getString(COLUMN_LABEL); 66 String text = (String) Phone.getTypeLabel(getResources(), type, label); 78 Phone.LABEL,
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
LL1Analyzer.java | 177 if ( grammar.type!=Grammar.LEXER && look.member(Label.EOR_TOKEN_TYPE) ) { 181 f.remove(Label.EOR_TOKEN_TYPE); 185 else if ( grammar.type==Grammar.LEXER && look.member(Label.EOT) ) { 187 //look = new LookaheadSet(Label.EOT); 209 return new LookaheadSet(Label.EOR_TOKEN_TYPE); 223 if ( transition0.label.isAtom() ) { 224 int atom = transition0.label.getAtom(); 227 if ( transition0.label.isSet() ) { 228 IntSet sl = transition0.label.getSet(); 251 if ( grammar.type!=Grammar.LEXER && tset.member(Label.EOR_TOKEN_TYPE) ) [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
instant_confirm_dialog_gtk.cc | 42 GtkWidget* label = gtk_label_new( local 44 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); 45 gtk_box_pack_start(vbox, label, FALSE, FALSE, 0);
|
update_recommended_dialog.cc | 42 GtkWidget* label = gtk_label_new(text.c_str()); local 43 gtk_util::SetLabelWidth(label, kMessageWidth); 44 gtk_box_pack_start(GTK_BOX(GTK_DIALOG(dialog_)->vbox), label,
|
/external/chromium_org/chrome/browser/extensions/api/dial/ |
dial_device_data.h | 43 const std::string& label() const { return label_; } function in class:extensions::DialDeviceData 44 void set_label(const std::string& label) { 45 label_ = label;
|
/external/chromium_org/chrome/browser/ui/gtk/importer/ |
import_lock_dialog_gtk.cc | 56 GtkWidget* label = gtk_label_new( local 58 gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); 59 gtk_box_pack_start(GTK_BOX(content_area), label, FALSE, FALSE, 0); local
|
/external/chromium_org/chrome/browser/ui/gtk/ |
update_recommended_dialog.cc | 40 GtkWidget* label = gtk_label_new(text.c_str()); local 41 gtk_util::SetLabelWidth(label, kMessageWidth); 44 gtk_box_pack_start(GTK_BOX(content_area), label, FALSE, FALSE, 0); local
|
/external/chromium_org/chrome/browser/ui/views/bookmarks/ |
bookmark_prompt_view.cc | 11 #include "ui/views/controls/label.h" 53 views::Label* label = new views::Label(l10n_util::GetStringUTF16( local 56 label->SetFont(rb.GetFont(ui::ResourceBundle::MediumFont) 58 AddChildView(label);
|
/external/chromium_org/chromeos/dbus/ibus/ |
ibus_property.h | 50 // variant struct { // Label 105 std::string label() const { return label_; } function in class:chromeos::IBusProperty 106 void set_label(const std::string& label) { label_ = label; }
|
/external/chromium_org/components/autofill/core/common/ |
form_field_data.h | 26 // Comparison operator exposed for STL map. Uses label, then name to sort. 29 base::string16 label; member in struct:autofill::FormFieldData 55 EXPECT_EQ(expected.label, actual.label); \
|
/external/chromium_org/gpu/command_buffer/service/ |
error_state.h | 29 error_state, function_name, value, label) \ 31 __FILE__, __LINE__, function_name, value, label) 71 const char* label) = 0;
|
/external/chromium_org/native_client_sdk/src/libraries/xray/ |
report.c | 31 char* label, 47 if (NULL != label) 48 fprintf(f, "label %s\n", label); 107 "Frame# Total Ticks Capture size Annotations Label\n"); 115 char label[XRAY_MAX_LABEL]; local 116 XRayFrameMakeLabel(capture, counter, label); 123 label); 142 "Frame# Total Ticks Capture size Annotations Label\n"); 151 char label[XRAY_MAX_LABEL] local 175 char label[XRAY_MAX_LABEL]; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/track/ |
LoadableTextTrack.h | 48 static PassRefPtr<LoadableTextTrack> create(HTMLTrackElement* track, const String& kind, const String& label, const String& language) 50 return adoptRef(new LoadableTextTrack(track, kind, label, language)); 74 LoadableTextTrack(HTMLTrackElement*, const String& kind, const String& label, const String& language);
|
/external/chromium_org/third_party/WebKit/Source/modules/encoding/ |
TextDecoder.cpp | 41 PassRefPtr<TextDecoder> TextDecoder::create(const String& label, const Dictionary& options, ExceptionState& es) 43 const String& encodingLabel = label.isNull() ? String("utf-8") : label;
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/ |
PeerConnectionFactory.java | 72 public MediaStream createLocalMediaStream(String label) { 74 nativeCreateLocalMediaStream(nativeFactory, label)); 106 long nativeFactory, String label);
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
mediastream.h | 43 static talk_base::scoped_refptr<MediaStream> Create(const std::string& label); 45 virtual std::string label() const OVERRIDE { return label_; } 60 explicit MediaStream(const std::string& label);
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objctests/ |
RTCPeerConnectionSyncObserver.m | 100 - (void)expectAddStream:(NSString *)label { 101 [_expectedAddStreamLabels addObject:label]; 104 - (void)expectRemoveStream:(NSString *)label { 105 [_expectedRemoveStreamLabels addObject:label]; 149 NSAssert([expectedLabel isEqual:stream.label], @"Stream not expected"); 156 NSAssert([expectedLabel isEqual:stream.label], @"Stream not expected");
|