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

1 2 3 4 56 7 8 91011>>

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
badsyntax_future7.py 3 from __future__ import nested_scopes; import string; from __future__ import \
4 nested_scopes namespace
  /packages/apps/Messaging/src/com/android/messaging/util/
BugleSubscriptionPrefs.java 38 public String getSharedPreferencesName() {
39 return SHARED_PREFERENCES_PER_SUBSCRIPTION_PREFIX + String.valueOf(mSubId);
43 protected void validateKey(String key) {
56 R.string.delivery_reports_pref_key, R.bool.delivery_reports_pref_default);
58 R.string.auto_retrieve_mms_pref_key, R.bool.auto_retrieve_mms_pref_default);
61 R.string.auto_retrieve_mms_when_roaming_pref_key,
64 R.string.group_mms_pref_key, R.bool.group_mms_pref_default);
68 R.string.mms_phone_number_pref_key, null);
73 private void migratePrefBooleanInternal(final BuglePrefs oldPrefs, final String oldKey,
85 private void migratePrefStringInternal(final BuglePrefs oldPrefs, final String oldKey
    [all...]
  /external/guice/core/test/com/google/inject/
TypeLiteralInjectionTest.java 39 bind(TypeLiteral.class).toInstance(TypeLiteral.get(String.class));
53 bind(new TypeLiteral<TypeLiteral<String>>() {})
54 .toInstance(TypeLiteral.get(String.class));
66 assertEquals(TypeLiteral.get(String.class), c.string);
80 assertEquals(TypeLiteral.get(String.class), b.string);
97 @Inject TypeLiteral<String> string; field in class:TypeLiteralInjectionTest.A
107 @Inject TypeLiteral<String> string field in class:TypeLiteralInjectionTest.C
    [all...]
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/dialog/
DialogExampleFragment.java 38 Guidance guidance = new Guidance(getString(R.string.dialog_example_title),
39 getString(R.string.dialog_example_description),
48 .title(getString(R.string.dialog_example_button_positive)).build();
52 .title(getString(R.string.dialog_example_button_negative)).build();
59 Toast.makeText(getActivity(), R.string.dialog_example_button_toast_positive_clicked,
62 Toast.makeText(getActivity(), R.string.dialog_example_button_toast_negative_clicked,
  /libcore/ojluni/src/main/java/java/text/
CharacterIteratorFieldDelegate.java 83 // Add new string
85 AttributedString string = new AttributedString( local
88 string.addAttribute(attr, value);
89 attributedStrings.add(string);
102 * to iterate over the resulting formatted String.
104 * @pararm string Result of formatting.
106 public AttributedCharacterIterator getIterator(String string) {
108 // assert(size <= string.length());
109 if (string.length() > size)
    [all...]
  /art/runtime/gc/
heap_test.cc 56 mirror::String* string = mirror::String::AllocFromModifiedUtf8(soa.Self(), "hello, world!"); local
58 array->Set<false>(j, string);
  /art/tools/
analyze-init-failures.py 23 import string namespace
generate-operator-out.py 22 import string namespace
  /bionic/libc/tools/
genserv.py 4 import sys, os, string, re namespace
49 line = string.strip(line)
56 rest = string.strip(m.group(4))
63 rest = string.strip(m.group(2))
  /bootable/recovery/tests/unit/
asn1_decoder_test.cpp 212 uint8_t* string; local
214 ASSERT_FALSE(asn1_octet_string_get(ctx, &string, &length));
221 uint8_t* string; local
223 ASSERT_FALSE(asn1_octet_string_get(ctx, &string, &length));
230 uint8_t* string; local
232 ASSERT_TRUE(asn1_octet_string_get(ctx, &string, &length));
234 EXPECT_EQ(0xAAU, *string);
  /build/tools/
adbs 20 import string namespace
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstString.java 26 /** {@code non-null;} the string value */
27 private final CstUtf8 string; field in class:CstString
32 * @param string {@code non-null;} the string value
34 public CstString(CstUtf8 string) {
35 if (string == null) {
36 throw new NullPointerException("string == null");
39 this.string = string;
45 * @param string {@code non-null;} the string valu
    [all...]
  /external/autotest/client/common_lib/
base_check_version.py 2 import sys, string, os, glob, re namespace
  /external/autotest/client/profilers/powertop/src/
powertop.h 32 char *string; member in struct:line
47 void suggest_kernel_config(char *string, int onoff, char *comment, int weight);
89 #define _(STRING) gettext(STRING)
118 void push_line(char *string, int count);
  /external/autotest/client/site_tests/kernel_Bootcache/
kernel_Bootcache.py 7 import logging, optparse, os, shutil, re, string namespace
  /external/autotest/client/site_tests/network_WiFiCaps/
network_WiFiCaps.py 5 import logging, os, re, string namespace
37 iwcap = utils.run(dir + ' ' + phy + ' ' + string.join(caps))
  /external/autotest/client/tests/kvm/tests/
trans_hugepage.py 1 import logging, time, commands, os, string, re namespace
trans_hugepage_defrag.py 1 import logging, time, commands, os, string, re namespace
trans_hugepage_swapping.py 1 import logging, time, commands, os, string, re namespace
  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
LogMessageParser.java 44 // TODO(gak): do this stuff in terms of CharSequence instead of String
45 String string = text.toString(); local
46 Matcher gcMatcher = GC_PATTERN.matcher(string);
54 Matcher jitMatcher = JIT_PATTERN.matcher(string);
58 Matcher vmOptionMatcher = VM_OPTION_PATTERN.matcher(string);
  /external/chromium-trace/catapult/common/py_utils/py_utils/refactor/
offset_token.py 21 A token is represented by a type defined in Python's token module, a string
26 def __init__(self, token_type, string, offset):
28 self._string = string
40 def string(self): member in class:OffsetToken
43 @string.setter
44 def string(self, value): member in class:OffsetToken
52 return str((self.type_name, self.string, self.offset))
70 token_type, string, (srow, scol), _, _ = next_token
72 offset_tokens.append(OffsetToken(token_type, string, (0, 0)))
76 offset_tokens.append(OffsetToken(token_type, string, (0, scol - ecol))
    [all...]
  /external/chromium-trace/catapult/telemetry/examples/browser_tests/
simple_numeric_test.py 5 import string namespace
36 for character in string.lowercase[:26]:
38 for character in string.uppercase[:26]:
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/
HIP.py 17 import string namespace
28 @type hit: string
32 @type key: string
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
buffered_stream_test.py 3 import string namespace
15 self.stream = six.StringIO(string.ascii_letters)
stream_slice_test.py 3 import string namespace
15 self.stream = six.StringIO(string.ascii_letters)

Completed in 1790 milliseconds

1 2 3 4 56 7 8 91011>>