| /external/autotest/client/site_tests/platform_MemoryMonitor/ |
| platform_MemoryMonitor.py | 13 import string namespace 24 """Extracts a number out of a string such as 467m, 123k, 999g. 26 @param s: a string to parse 43 @param line: string a general memory consumption line from top 56 @param line: string a process line from `top` 287 allowed_chars = string.ascii_letters + string.digits + '.-_'
|
| /external/autotest/client/tests/ffsb/ |
| ffsb.py | 1 import os, string, logging, re, random, shutil namespace 121 dirnm = ''.join(random.choice(string.letters) for i in xrange(9))
|
| /external/autotest/client/tools/ |
| crash_handler.py | 8 import sys, os, commands, glob, shutil, syslog, re, time, random, string namespace 13 Return a random string using alphanumeric characters. 15 @length: length of the string that will be generated. 19 chars = string.letters + string.digits
|
| /external/autotest/server/site_tests/kernel_MemoryRamoop/ |
| kernel_MemoryRamoop.py | 5 import logging, random, re, string, traceback namespace 125 The message format is [magic string]: [3 digit id] [random char/digit] 127 valid_char = string.letters + string.digits
|
| /external/autotest/server/site_tests/network_WiFi_ChannelScanDwellTime/ |
| network_WiFi_ChannelScanDwellTime.py | 7 import string namespace 24 SUFFIX_LETTERS = string.ascii_lowercase + string.digits 43 """Return the SSID index from an SSID string.
|
| /external/autotest/tko/ |
| display.py | 1 import os, re, string, sys namespace
|
| /external/bison/lib/ |
| w32spawn.h | 26 #include <string.h> 153 const char *string = argv[i]; local 155 if (string[0] == '\0') 157 else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) 159 bool quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); 170 for (s = string; *s != '\0'; s++) 190 for (s = string; *s != '\0'; s++) 217 new_argv[i] = (char *) string;
|
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
| DERIA5String.java | 9 * DER IA5String object - this is an ascii string. 15 private final byte[] string; field in class:DERIA5String 18 * return a IA5 string from the passed in object 48 * return an IA5 String from a tagged object. 75 * @param string the byte encoding of the characters making up the string. 78 byte[] string) 80 this.string = string; 85 * @param string the base string to use. [all...] |
| DERNumericString.java | 9 * DER NumericString object - this is an ascii string of characters {0,1,2,3,4,5,6,7,8,9, }. 15 private final byte[] string; field in class:DERNumericString 18 * return a Numeric string from the passed in object 48 * return an Numeric String from a tagged object. 77 byte[] string) 79 this.string = string; 86 String string) 88 this(string, false) [all...] |
| DERPrintableString.java | 15 private final byte[] string; field in class:DERPrintableString 18 * return a printable string from the passed in object. 48 * return a Printable String from a tagged object. 74 * basic constructor - byte encoded string. 77 byte[] string) 79 this.string = string; 83 * basic constructor - this does not validate the string 86 String string) [all...] |
| DERUniversalString.java | 16 private final byte[] string; field in class:DERUniversalString 19 * return a Universal String from the passed in object. 49 * return a Universal String from a tagged object. 75 * basic constructor - byte encoded string. 77 * @param string the byte encoding of the string to be carried in the UniversalString object, 80 byte[] string) 82 this.string = string; 85 public String getString( [all...] |
| /external/caliper/examples/src/main/java/examples/ |
| Utf8Benchmark.java | 41 * Convert the input string to a code point. Accepts regular 45 private static int decode(String userFriendly) { 74 public static MaxCodePoint valueOf(String userFriendly) { 78 private MaxCodePoint(String userFriendly) { 93 private String[] strings; 101 strings = new String[STRING_COUNT]; 119 * Benchmarks {@link String#getBytes} on valid strings containing 125 final String[] strings = this.strings; 128 String string = strings[i & mask] local [all...] |
| /external/chromium-trace/catapult/devil/devil/utils/ |
| cmd_helper.py | 12 import string namespace 23 _SafeShellChars = frozenset(string.ascii_letters + string.digits + '@%_-+=:,./') 27 """Return an shell-escaped version of the string using single quotes. 29 Reliably quote a string which may contain unsafe characters (e.g. space, 36 s: The string to quote. 39 The string quoted using single quotes. 45 """Return an shell-escaped version of the string using double quotes. 47 Reliably quote a string which may contain unsafe characters (e.g. space 59 s: The string to quote [all...] |
| /external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/ |
| sermsdos.py | 40 import string namespace 70 specify a device string, note that this 97 # numbers are transformed to a string 129 comString = string.join(("MODE ", port, ":" 153 """Write string to serial port""" 194 return string.join(( "<Serial>: ", self.portstr
|
| /external/chromium-trace/catapult/third_party/graphy/graphy/backends/google_chart_api/ |
| util_test.py | 19 import string namespace 38 full = string.ascii_uppercase + string.ascii_lowercase + string.digits
|
| /external/chromium-trace/catapult/third_party/webapp2/webapp2_extras/ |
| security.py | 20 import string namespace 26 HEXADECIMAL_DIGITS = string.digits + 'abcdef' 27 DIGITS = string.digits 28 LOWERCASE_ALPHA = string.lowercase 29 UPPERCASE_ALPHA = string.uppercase 30 LOWERCASE_ALPHANUMERIC = string.lowercase + string.digits 31 UPPERCASE_ALPHANUMERIC = string.uppercase + string.digits 32 ALPHA = string.letter [all...] |
| /external/clang/test/SemaCXX/ |
| warn-unused-value.cpp | 44 typedef basic_string<char> string; typedef in namespace:test2::std 45 void func(const std::string& str) {
|
| /external/deqp/android/scripts/ |
| debug.py | 26 import string namespace 47 fields = string.split(line)
|
| /external/deqp/external/vulkancts/ |
| build_spirv_binaries.py | 25 import string namespace
|
| /external/deqp/scripts/ |
| build_caselists.py | 29 import string namespace
|
| testset.py | 25 import string namespace 150 groupName = string.join(parts[:-1], ".")
|
| /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
| ImmutableMultimapTest.java | 40 ImmutableMultimap<String, Integer> multimap = new Builder<String, Integer>() 47 Builder<String, Integer> builder = new Builder<String, Integer>(); 54 builder.put(Maps.immutableEntry((String) null, 1)); 61 String string; field in class:ImmutableMultimapTest.StringHolder 65 ImmutableMultimap.Builder<String, Integer> builder = 66 new Builder<String, Integer>(); 68 holder.string = "one" [all...] |
| /external/guava/guava-tests/test/com/google/common/collect/ |
| ImmutableMultimapTest.java | 40 ImmutableMultimap<String, Integer> multimap = new Builder<String, Integer>() 47 Builder<String, Integer> builder = new Builder<String, Integer>(); 54 builder.put(Maps.immutableEntry((String) null, 1)); 61 String string; field in class:ImmutableMultimapTest.StringHolder 65 ImmutableMultimap.Builder<String, Integer> builder = 66 new Builder<String, Integer>(); 68 holder.string = "one" [all...] |
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/ |
| UnicodeMapIterator.java | 28 * processString(set.string); 40 * processString(set.string); 49 * Value of <tt>codepoint</tt> if the iterator points to a string. 51 * <tt>string</tt> for the current iteration result. 57 * the iterator points to a string. 72 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points 73 * to the current string. If <tt>codepoint != IS_STRING</tt>, the 74 * value of <tt>string</tt> is undefined. 76 public String string; field in class:UnicodeMapIterator [all...] |
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
| UnicodeSetIterator.java | 43 * Value of <tt>codepoint</tt> if the iterator points to a string. 45 * <tt>string</tt> for the current iteration result. 52 * the iterator points to a string. 69 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points 70 * to the current string. If <tt>codepoint != IS_STRING</tt>, the 71 * value of <tt>string</tt> is undefined. 74 public String string; field in class:UnicodeSetIterator 97 * or a string. If there are no more elements in the set, return 99 * string in the <tt>string</tt> field. Otherwise the value is [all...] |