/external/webkit/WebCore/inspector/front-end/ |
audits.css | 238 .audit-launcher-view label { 246 .audit-launcher-view label.disabled {
|
SummaryBar.js | 329 _makeLegendElement: function(label, value, color) 331 var legendElement = document.createElement("label"); 346 labelElement.className = "summary-graph-legend-label"; 351 headerElement.textContent = label;
|
/external/webkit/WebCore/rendering/ |
RenderButton.cpp | 132 String value = doElement->label();
|
/external/wpa_supplicant/ |
tls.h | 254 * @label: Label (e.g., description of the key) for PRF 271 const char *label, int server_random_first,
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
tls.h | 269 * @label: Label (e.g., description of the key) for PRF 287 const char *label,
|
/packages/apps/Email/src/com/android/email/ |
VendorPolicyLoader.java | 202 p.label = null;
|
/packages/apps/Mms/src/com/android/mms/ui/ |
EditSlideDurationActivity.java | 83 // Label. 84 mLabel = (TextView) findViewById(R.id.label);
|
/packages/apps/Phone/src/com/android/phone/ |
NotificationMgr.java | 261 public String label; field in class:NotificationMgr.QueryHandler.NotificationInfo 329 notifyMissedCall(n.name, n.number, n.label, n.date); 347 n.label = cursor.getString(cursor.getColumnIndexOrThrow(Calls.TYPE)); 379 * @param label the label of the number if nameOrNumber is a name, null if it is a number 381 void notifyMissedCall(String name, String number, String label, long date) { 567 // "on hold") and 2 lines of text: (1) the label (either "ongoing [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidEditor.java | 697 * @param label The label for the undo operation. Can be null but we should really try to put 702 private final boolean beginUndoRecording(String label) { 709 model.beginRecording(this, label); 743 * @param label The label for the undo operation. Can be null. Ideally we should really try 746 public void wrapUndoRecording(String label, Runnable undoableAction) { 749 recording = beginUndoRecording(label); [all...] |
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/ |
UpdateChooserDialog.java | 52 import org.eclipse.swt.widgets.Label;
83 private Label mErrorLabel;
211 Label placeholder = new Label(mPackageRootComposite, SWT.NONE);
232 * <li>Inserts a full-width error label.
233 * <li>Inserts a help label on the left of the first button.
254 mErrorLabel = new Label(composite, SWT.NONE);
257 // Label at the left of the install/cancel buttons
258 Label label = new Label(composite, SWT.NONE); local [all...] |
/development/apps/Development/src/com/android/development/ |
PermissionDetails.java | 219 TextView label = (TextView) sharedPanel.findViewById(R.id.shared_pkgs_label); local 221 label.setVisibility(View.VISIBLE);
|
/development/apps/FontLab/src/com/android/fontlab/ |
FontLab.java | 214 void addFlagMenu(Menu menu, int paintFlag, String label, char shortCut) { 215 MenuItem item = menu.add(0, paintFlag, 0, label);
|
/external/skia/src/core/ |
SkUtils.cpp | 458 SkAutoMemoryUsageProbe::SkAutoMemoryUsageProbe(const char label[]) 459 : fLabel(label)
|
/external/v8/test/mjsunit/regress/ |
regress-937896.js | 28 // This used to crash because the label collector in the parser didn't
|
/external/webkit/JavaScriptCore/assembler/ |
MacroAssemblerARMv7.h | 409 DataLabel32 label = moveWithPatch(Imm32(address.offset), dataTempRegister); local 411 return label; 414 Label loadPtrWithPatchToLEA(Address address, RegisterID dest) 416 Label label(this); 419 return label; 429 DataLabel32 label = moveWithPatch(Imm32(address.offset), dataTempRegister); local 431 return label; 1004 DataLabelPtr label = moveWithPatch(initialValue, dataTempRegister); local [all...] |
/frameworks/base/core/java/android/app/admin/ |
DeviceAdminInfo.java | 110 final public int label; field in class:DeviceAdminInfo.PolicyInfo 116 label = labelIn; 279 * Load the user-displayed label for this device admin.
|
/packages/apps/IM/src/com/android/im/app/ |
AddContactActivity.java | 89 TextView label = (TextView) findViewById(R.id.input_contact_label); local 90 label.setText(brandingRes.getString(BrandingResourceIDs.STRING_LABEL_INPUT_CONTACT));
|
/packages/apps/Settings/src/com/android/settings/ |
DeviceAdminAdd.java | 251 this, getText(pi.label), "", true); 269 this, getText(pi.label), getText(pi.description), true);
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
Device.java | 422 void addProperty(String label, String value) { 423 mProperties.put(label, value);
|
/sdk/traceview/src/com/android/traceview/ |
ProfileView.java | 44 import org.eclipse.swt.widgets.Label; 104 // Create another composite to hold the label and text box 109 // Add a label for the search box 110 Label label = new Label(composite, SWT.NONE); local 111 label.setText("Find:");
|
/dalvik/libcore/luni/src/main/java/java/net/ |
URI.java | 622 String label = null; local 625 label = st.nextToken(); 626 if (label.startsWith("-") || label.endsWith("-")) { //$NON-NLS-1$ //$NON-NLS-2$ 631 if (!label.equals(host)) { 632 char ch = label.charAt(0); [all...] |
/external/sonivox/jet_tools/JetCreator/ |
JetCtrls.py | 65 def __init__(self, parent, id=-1,label=wx.EmptyString,pos=wx.DefaultPosition,size=wx.DefaultSize):
66 wx.CheckBox.__init__(self, parent, id=id, label=label, pos=pos, size=size)
83 def __init__(self, parent, id=-1,label=wx.EmptyString,pos=wx.DefaultPosition,size=wx.DefaultSize):
84 wx.RadioButton.__init__(self, parent, id=id, label=label, pos=pos, size=size)
|
/packages/apps/Contacts/src/com/android/contacts/ui/ |
ContactsPreferencesActivity.java | 161 TextView label = (TextView)preferenceLayout.findViewById(R.id.label); local 162 label.setText(getString(R.string.display_options_sort_list_by)); 171 TextView label = (TextView)preferenceLayout.findViewById(R.id.label); local 172 label.setText(getString(R.string.display_options_view_names_as)); [all...] |
/external/srec/srec/Recognizer/src/ |
RecognizerImpl.c | 1954 LCHAR label[MAX_ENTRY_LENGTH * 2]; \/* run out of buffer *\/ local [all...] |
/external/icu4c/test/cintltst/ |
cdtrgtst.c | 533 const char * label; member in struct:__anon2309 565 log_err("FAIL: udat_format with %s: %s\n", patTextPtr->label, myErrorName(status) ); 568 log_err("FAIL: udat_format with %s: wrong UChar[] result\n", patTextPtr->label ); 573 log_err("FAIL: udat_parse with %s: %s\n", patTextPtr->label, myErrorName(status) ); 576 log_err("FAIL: udat_parse with %s: wrong UDate result\n", patTextPtr->label );
|