HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 526 - 550 of 2901) sorted by null

<<21222324252627282930>>

  /packages/apps/Settings/src/com/android/settings/dashboard/conditional/
HotspotCondition.java 61 private String getSsid() {
65 com.android.internal.R.string.wifi_tether_configure_ssid_default);
73 return mManager.getContext().getString(R.string.condition_hotspot_title);
78 return mManager.getContext().getString(R.string.condition_hotspot_summary, getSsid());
88 return new CharSequence[] { context.getString(R.string.condition_turn_off) };
94 0, R.string.tether_settings_title_all, null);
NightDisplayCondition.java 50 return mManager.getContext().getString(R.string.condition_night_display_title);
55 return mManager.getContext().getString(R.string.condition_night_display_summary);
60 return new CharSequence[] { mManager.getContext().getString(R.string.condition_turn_off) };
66 null, 0, R.string.night_display_title, null);
  /packages/apps/Settings/src/com/android/settings/nfc/
AndroidBeam.java 62 HelpUtils.prepareHelpMenuItem(getActivity(), menu, R.string.help_uri_beam,
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
SettingsFragment.java 39 private static final String TRACKER_LABEL = "settings";
51 public final static String DIALOG_TAG = LicenseActionItem.class.getSimpleName();
52 public static final String TRACKER_LABEL = "Open Source Licenses";
56 super(mainActivity.getString(R.string.settings_menu_licenses));
63 mMainActivity.getString(R.string.dialog_title_licenses), TRACKER_LABEL);
69 protected String getTitle() {
70 return getResources().getString(R.string.side_panel_title_settings);
74 public String getTrackerLabel() {
82 getString(R.string.settings_channel_source_item_customize_channels),
83 getString(R.string.settings_channel_source_item_customize_channels_description)
    [all...]
  /packages/services/Telephony/src/com/android/phone/settings/fdn/
FdnList.java 42 private static final String INTENT_EXTRA_NAME = "name";
43 private static final String INTENT_EXTRA_NUMBER = "number";
46 private static final String FDN_CONTENT_PATH_WITH_SUB_ID = "content://icc/fdn/subId/";
62 getActionBar(), getResources(), R.string.fdn_list_with_label);
79 menu.add(0, MENU_ADD, 0, r.getString(R.string.menu_add))
81 menu.add(0, MENU_EDIT, 0, r.getString(R.string.menu_edit))
83 menu.add(0, MENU_DELETE, 0, r.getString(R.string.menu_delete))
154 String name = mCursor.getString(NAME_COLUMN);
155 String number = mCursor.getString(NUMBER_COLUMN);
166 String name = mCursor.getString(NAME_COLUMN)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
parser.h 71 CHAR *string; member in struct:fifo
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cmd.py 20 arguments text, line, begidx, endidx. text is string we are matching
48 import string namespace
53 IDENTCHARS = string.ascii_letters + string.digits + '_'
177 """Parse the line into a command name and a string containing
362 raise TypeError, ("list[i] not a string for i in %s" %
ntpath.py 323 import string namespace
324 varchars = string.ascii_letters + string.digits + '_-'
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
cygwinccompiler.py 395 'details' is a human-readable string explaining the situation.
398 the string "GCC" (implying that this Python was built with GCC), or the
399 installed "pyconfig.h" contains the string "__GNUC__".
406 import string namespace
409 if string.find(sys.version,"GCC") >= 0:
430 if string.find(s,"__GNUC__") >= 0:
emxccompiler.py 253 'details' is a human-readable string explaining the situation.
256 the string "GCC" (implying that this Python was built with GCC), or the
257 installed "pyconfig.h" contains the string "__GNUC__".
264 import string namespace
267 if string.find(sys.version,"GCC") >= 0:
288 if string.find(s,"__GNUC__") >= 0:
fancy_getopt.py 14 import string namespace
31 longopt_xlate = string.maketrans('-', '_')
117 return string.translate(long_option, longopt_xlate)
171 "must be a string of length >= 2") % long
255 short_opts = string.join(self.short_opts)
408 WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace))
411 """wrap_text(text : string, width : int) -> [string]
    [all...]
sysconfig.py 16 import string namespace
59 """Return a string containing the major and minor Python version,
376 'string' according to 'vars' (a dictionary mapping variable names to
378 empty string. The variable values in 'vars' should not contain further
util.py 9 import sys, os, string, re namespace
17 """Return a string that identifies the current platform. This is used
43 i = string.find(sys.version, prefix)
46 j = string.find(sys.version, ")", i)
69 osname = string.lower(osname)
70 osname = string.replace(osname, '/', '')
71 machine = string.replace(machine, ' ', '_')
72 machine = string.replace(machine, '/', '-')
128 paths = string.split(pathname, '/')
198 """Perform shell/Perl-style variable substitution on 'string'. Ever
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
MultiCall.py 33 import string namespace
255 """Get a string which should describe an event sequence. If it is
258 string if there is one. If the parsing is unsuccessful, return None.
262 words = string.split(sequence[1:-1], '-')
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
buildtools.py 9 import string namespace
100 if string.lower(filename[-3:]) == ".py":
365 lcname = string.lower(name)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_string.py 1 import unittest, string namespace
13 realresult = getattr(string, methodname)(object, *args)
22 getattr(string, methodname),
28 getattr(string, methodname)(object, *args)
70 string.whitespace
71 string.lowercase
72 string.uppercase
73 string.letters
74 string.digits
75 string.hexdigit
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
cmd.py 20 arguments text, line, begidx, endidx. text is string we are matching
48 import string namespace
53 IDENTCHARS = string.ascii_letters + string.digits + '_'
177 """Parse the line into a command name and a string containing
362 raise TypeError, ("list[i] not a string for i in %s" %
ntpath.py 323 import string namespace
324 varchars = string.ascii_letters + string.digits + '_-'
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
cygwinccompiler.py 395 'details' is a human-readable string explaining the situation.
398 the string "GCC" (implying that this Python was built with GCC), or the
399 installed "pyconfig.h" contains the string "__GNUC__".
406 import string namespace
409 if string.find(sys.version,"GCC") >= 0:
430 if string.find(s,"__GNUC__") >= 0:
emxccompiler.py 253 'details' is a human-readable string explaining the situation.
256 the string "GCC" (implying that this Python was built with GCC), or the
257 installed "pyconfig.h" contains the string "__GNUC__".
264 import string namespace
267 if string.find(sys.version,"GCC") >= 0:
288 if string.find(s,"__GNUC__") >= 0:
fancy_getopt.py 14 import string namespace
31 longopt_xlate = string.maketrans('-', '_')
117 return string.translate(long_option, longopt_xlate)
171 "must be a string of length >= 2") % long
255 short_opts = string.join(self.short_opts)
408 WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace))
411 """wrap_text(text : string, width : int) -> [string]
    [all...]
sysconfig.py 16 import string namespace
59 """Return a string containing the major and minor Python version,
376 'string' according to 'vars' (a dictionary mapping variable names to
378 empty string. The variable values in 'vars' should not contain further
util.py 9 import sys, os, string, re namespace
17 """Return a string that identifies the current platform. This is used
43 i = string.find(sys.version, prefix)
46 j = string.find(sys.version, ")", i)
69 osname = string.lower(osname)
70 osname = string.replace(osname, '/', '')
71 machine = string.replace(machine, ' ', '_')
72 machine = string.replace(machine, '/', '-')
128 paths = string.split(pathname, '/')
198 """Perform shell/Perl-style variable substitution on 'string'. Ever
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
MultiCall.py 33 import string namespace
255 """Get a string which should describe an event sequence. If it is
258 string if there is one. If the parsing is unsuccessful, return None.
262 words = string.split(sequence[1:-1], '-')
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_string.py 1 import unittest, string namespace
13 realresult = getattr(string, methodname)(object, *args)
22 getattr(string, methodname),
28 getattr(string, methodname)(object, *args)
70 string.whitespace
71 string.lowercase
72 string.uppercase
73 string.letters
74 string.digits
75 string.hexdigit
    [all...]

Completed in 1614 milliseconds

<<21222324252627282930>>