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

<<11121314151617181920>>

  /bionic/libc/kernel/uapi/linux/
virtio_input.h 57 char string[128]; member in union:virtio_input_config::__anon1042
  /cts/tests/tests/util/src/android/util/cts/
StateSetTest.java 52 String string = StateSet.dump(stateSet); local
53 assertEquals("W P S F E ", string);
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 44 public FindUsages(final Dex dex, String declaredBy, String memberName, final PrintWriter out) {
52 List<String> strings = dex.strings();
54 String string = strings.get(i); local
55 if (declaredByPattern.matcher(string).matches()) {
58 if (memberNamePattern.matcher(string).matches()) {
100 private String location() {
101 String className = dex.typeNames().get(currentClass.getTypeIndex());
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/ui/
AttractionListActivity.java 95 showDebugDialog(R.string.action_test_notification,
96 R.string.action_test_notification_dialog);
100 showDebugDialog(R.string.action_test_microapp,
101 R.string.action_test_microapp_dialog);
119 int requestCode, String[] permissions, int[] grantResults) {
133 new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, PERMISSION_REQ);
149 findViewById(R.id.container), R.string.permission_explanation, Snackbar.LENGTH_LONG)
150 .setAction(R.string.permission_explanation_action, new View.OnClickListener() {
167 .setPositiveButton(android.R.string.ok, null);
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/ui/
AttractionListActivity.java 95 showDebugDialog(R.string.action_test_notification,
96 R.string.action_test_notification_dialog);
100 showDebugDialog(R.string.action_test_microapp,
101 R.string.action_test_microapp_dialog);
119 int requestCode, String[] permissions, int[] grantResults) {
133 new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, PERMISSION_REQ);
149 findViewById(R.id.container), R.string.permission_explanation, Snackbar.LENGTH_LONG)
150 .setAction(R.string.permission_explanation_action, new View.OnClickListener() {
167 .setPositiveButton(android.R.string.ok, null);
  /development/ndk/platforms/android-3/include/linux/
moduleparam.h 50 char *string; member in struct:kparam_string
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name, param_set_copystring, param_get_string, &__param_string_##name, perm); __MODULE_PARM_TYPE(name, "string")
  /development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/ui/
AttractionListActivity.java 95 showDebugDialog(R.string.action_test_notification,
96 R.string.action_test_notification_dialog);
100 showDebugDialog(R.string.action_test_microapp,
101 R.string.action_test_microapp_dialog);
119 int requestCode, String[] permissions, int[] grantResults) {
133 new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, PERMISSION_REQ);
149 findViewById(R.id.container), R.string.permission_explanation, Snackbar.LENGTH_LONG)
150 .setAction(R.string.permission_explanation_action, new View.OnClickListener() {
167 .setPositiveButton(android.R.string.ok, null);
  /development/testrunner/
adb_interface.py 24 import string namespace
64 string output of command
85 string output of command
203 instrumentation_path: string. It should be the fully classified package
278 """Returns a string of adb command that will be executed."""
321 if ls_response.strip("#").strip(string.whitespace) != "":
396 expected: the string that should appear to consider the
  /device/google/dragon/audio/hal/
cras_expr.h 34 const char *string; member in union:cras_expr_value::__anon3147
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3basetree.c 290 pANTLR3_STRING string; local
300 /* Need a new string with nothing at all in it.
302 string = tree->strFactory->newRaw(tree->strFactory);
306 string->append8 (string, "(");
307 string->appendS (string, tree->toString(tree));
308 string->append8 (string, " ");
320 string->append8(string, " ")
    [all...]
  /external/autotest/contrib/virt/
site_job.py 2 import inspect, new, logging, string, tempfile namespace
148 # ... and return as string that will be eval'd as a Python list
159 template = string.Template(open(input_file).read())
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
browser_test_runner_unittest.py 6 import string namespace
88 for c in string.uppercase[:26]:
90 for c in string.lowercase[:26]:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/
uploads_test.py 10 import string namespace
44 random.choice(string.ascii_letters) for _ in range(size))
122 ''.join(random.sample(string.ascii_letters, 5)))
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/
constants.py 3 import string namespace
108 "No space after literal string 'DOCTYPE'.",
468 asciiLowercase = frozenset(string.ascii_lowercase)
469 asciiUppercase = frozenset(string.ascii_uppercase)
470 asciiLetters = frozenset(string.ascii_letters)
471 digits = frozenset(string.digits)
472 hexDigits = frozenset(string.hexdigits)
475 for c in string.ascii_uppercase])
    [all...]
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
namespace_range.py 33 import string namespace
39 NAMESPACE_CHARACTERS = ''.join(sorted(string.digits +
40 string.lowercase +
41 string.uppercase +
67 # to calculate the ordinal for each string. Example:
95 """Convert a namespace ordinal to a namespace string.
98 lexographically, into a namespace string.
113 A string representing the nth namespace in lexographical order.
127 """Converts a namespace string into an int representing its lexographic order.
137 namespace: A namespace string
    [all...]
  /external/clang/test/SemaCXX/
invalid-member-expr.cpp 41 struct string { struct in namespace:test3
46 string s;
47 string::iterator i = s.foo(); // expected-error {{no member named 'foo'}}
  /external/curl/CMake/
CurlTests.c 211 #include <string.h>
508 #include <string.h>
513 char *string = local
515 /* this should've returned a string */
516 if(!string || !string[0])
522 #include <string.h>
529 /* This should've returned zero, and written an error string in the
  /external/e2fsprogs/lib/e2p/
feature.c 14 #include <string.h>
25 const char *string; member in struct:feature
122 for (f = feature_list; f->string; f++) {
125 return f->string;
146 int e2p_string2feature(char *string, int *compat_type, unsigned int *mask)
152 for (f = feature_list; f->string; f++) {
153 if (!strcasecmp(string, f->string)) {
159 if (strncasecmp(string, "FEATURE_", 8))
162 switch (string[8])
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/
StringPropertyDialog.java 11 package org.eclipse.wb.internal.core.model.property.editor.string;
40 // so this was all stripped down to a plain String editor.
93 if (value instanceof String) {
94 m_valueText.setText((String) value);
131 final String value = m_valueText.getText();
  /external/elfutils/libebl/
eblwstrtab.c 1 /* ELF string table handling.
39 #include <string.h>
54 const wchar_t *string; member in struct:Ebl_WStrent
107 ret->null.string = L"";
173 /* Create the reserved string. */
175 newstr->string = str;
210 /* We found a matching string. */
219 /* Add new string. The actual string is assumed to be permanent. */
226 /* Compute the string length if the caller doesn't know it. *
    [all...]
  /external/emma/core/java12/com/vladium/util/
WCMatcher.java 21 public static WCMatcher compile (final String pattern)
71 public abstract boolean matches (String s);
75 // private boolean matches (int pi, int si, final char [] string)
80 // return si == string.length;
87 // return (si < string.length) && matches (pi + 1, si + 1, string);
92 // return matches (pi + 1, si, string) || ((si < string.length) && matches (pi, si + 1, string));
97 // return (si < string.length) && (m_pattern [pi] == string [si]) && matches (pi + 1, si + 1, string)
237 final char [] string = s.toCharArray (); \/\/ implies an array copy; is this faster than using charAt()? local
    [all...]
  /external/fio/
json.h 19 char *string; member in union:json_value::__anon11154
  /external/fonttools/Lib/fontTools/misc/
xmlWriter.py 6 import string namespace
35 def write(self, string, indent=True):
37 self._writeraw(escape(string), indent=indent)
39 def writecdata(self, string):
41 self._writeraw("<![CDATA[" + string + "]]>")
53 def write_noindent(self, string):
55 self._writeraw(escape(string), indent=False)
152 """Input is Unicode string."""
180 h = string.hexdigits
  /external/guava/guava-tests/benchmark/com/google/common/base/
AsciiBenchmark.java 37 private static String ALPHA =
39 private static String NONALPHA =
47 String testString;
64 this.testString = new String(array);
76 String string = noWorkToDo local
82 dummy += Ascii.toUpperCase(string).length();
88 String string = noWorkToDo local
94 dummy += charSequenceToUpperCase(string).length()
100 String string = noWorkToDo local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
ResourceBasedPeriodFormatterDataService.java 36 private Collection<String> availableLocales; // of String
39 private String lastLocale = null;
40 private Map<String, PeriodFormatterData> cache = new HashMap<String, PeriodFormatterData>(); // String -> PeriodFormatterData
43 private static final String PATH = "data/";
58 List<String> localeNames = new ArrayList<String>(); // of String
64 String string = null; local
    [all...]

Completed in 2233 milliseconds

<<11121314151617181920>>