| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
| DERGraphicString.java | 12 private final byte[] string; field in class:DERGraphicString 15 * return a Graphic String from the passed in object 45 * return a Graphic String from a tagged object. 72 * @param string the byte encoding of the characters making up the string. 75 byte[] string) 77 this.string = Arrays.clone(string); 82 return Arrays.clone(string); 92 return 1 + StreamUtil.calculateBodyLength(string.length) + string.length [all...] |
| DERT61String.java | 9 * DER T61String (also the teletex string), try not to use this if you don't need to. The standard support the encoding for 16 private final byte[] string; field in class:DERT61String 19 * return a T61 string from the passed in object. 49 * return an T61 String from a tagged object. 75 * basic constructor - string encoded as a sequence of bytes. 77 * @param string the byte encoding of the string to be wrapped. 80 byte[] string) 82 this.string = string; [all...] |
| DERUTF8String.java | 15 private final byte[] string; field in class:DERUTF8String 18 * Return an UTF8 string from the passed in object. 49 * Return an UTF8 String from a tagged object. 77 * Basic constructor - byte encoded string. 79 DERUTF8String(byte[] string) 81 this.string = string; 87 * @param string the string to be carried in the UTF8String object, 89 public DERUTF8String(String string [all...] |
| DERVideotexString.java | 12 private final byte[] string; field in class:DERVideotexString 15 * return a Videotex String from the passed in object 45 * return a Videotex String from a tagged object. 72 * @param string the byte encoding of the characters making up the string. 75 byte[] string) 77 this.string = Arrays.clone(string); 82 return Arrays.clone(string); 92 return 1 + StreamUtil.calculateBodyLength(string.length) + string.length [all...] |
| DERVisibleString.java | 18 private final byte[] string; field in class:DERVisibleString 21 * Return a Visible String from the passed in object. 51 * Return a Visible String from a tagged object. 77 * Basic constructor - byte encoded string. 80 byte[] string) 82 this.string = string; 88 * @param string the string to be carried in the VisibleString object, 91 String string [all...] |
| /external/caliper/examples/src/main/java/examples/ |
| DemoBenchmark.java | 31 @Param({"abc", "def", "xyz"}) String string; field in class:DemoBenchmark 47 if (string.equals("abc") && number == 1) {
|
| /external/chromium-trace/catapult/systrace/systrace/ |
| util.py | 8 import string namespace 111 parser.add_option('-e', '--serial', dest='device_serial', type='string') 149 name = ''.join(random.choice(string.ascii_uppercase + 150 string.digits) for _ in range(10))
|
| /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/ |
| NSEC3.py | 18 import string namespace 25 b32_hex_to_normal = string.maketrans('0123456789ABCDEFGHIJKLMNOPQRSTUV', 27 b32_normal_to_hex = string.maketrans('ABCDEFGHIJKLMNOPQRSTUVWXYZ234567', 46 @type salt: string 48 @type next: string 50 @type windows: list of (window number, string) tuples"""
|
| /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/ |
| transfer_test.py | 2 import string namespace 97 content=string.ascii_lowercase[start_byte:end_byte+1], 124 content=string.ascii_lowercase * 2, 135 self.assertEqual(string.ascii_lowercase * 2, 159 content=string.ascii_lowercase, 168 content=string.ascii_uppercase, 184 self.assertEqual(string.ascii_lowercase + string.ascii_uppercase,
|
| /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/api/map_job/ |
| sample_input_reader.py | 4 import string namespace 32 # The default string length if one is not specified. 51 content = "".join(random.choice(string.ascii_lowercase) 101 # Validate string length.
|
| /external/clang/test/CodeGen/ |
| globalinit.c | 19 char string[8] = "string"; // extend init variable 20 char string2[4] = "string"; // truncate init
|
| /external/clang/test/CodeGenCXX/ |
| mangle-subst-std.cpp | 41 typedef std::basic_string<char, std::char_traits<char>, std::allocator<char> > string; typedef in namespace:std 45 void f(std::string) { } 93 // Make sure we don't treat the following like std::string
|
| /external/clang/utils/analyzer/ |
| SumTimerInfo.py | 11 import string namespace
|
| /external/e2fsprogs/lib/e2p/ |
| mntopts.c | 14 #include <string.h> 22 const char *string; member in struct:mntopt 47 for (f = mntopt_list; f->string; f++) { 49 return f->string; 56 int e2p_string2mntopt(char *string, unsigned int *mask) 62 for (f = mntopt_list; f->string; f++) { 63 if (!strcasecmp(string, f->string)) { 68 if (strncasecmp(string, "MNTOPT_", 7)) 71 if (string[8] == 0 [all...] |
| /external/e2fsprogs/lib/ss/ |
| execute_cmd.c | 66 * If the command string in argv[0] is in the request table, execute 75 * argument string array 94 char *string = argv[0]; local 102 if (!strcmp(*name, string)) {
|
| /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
| StringListPropertyEditor.java | 17 * The {@link PropertyEditor} for selecting single string from given set. 24 private String[] m_strings; 49 if (value instanceof String) { 50 String string = (String) value; local 53 if (string.equalsIgnoreCase(m_strings[i])) { 57 if (string.equals(m_strings[i])) { 67 protected String getTitle(int index) { 72 protected String getExpression(int index) throws Exception [all...] |
| /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/ |
| StringPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor.string; 23 * The {@link PropertyEditor} for {@link String}. 62 public String getText(Property property) throws Exception { 64 if (value instanceof String) { 65 return (String) value; 76 protected String getEditorText(Property property) throws Exception { 81 protected boolean setEditorText(Property property, String text) throws Exception {
|
| /external/eigen/bench/ |
| check_cache_queries.cpp | 29 int string[8]; local 30 char* string_char = (char*)(string); 34 string[0] = abcd[1]; 35 string[1] = abcd[3]; 36 string[2] = abcd[2]; 37 string[3] = 0;
|
| /external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
| gtest-string.h | 34 // This header file declares the String class and functions used internally by 45 // string.h is not guaranteed to provide strcpy on C++ Builder. 49 #include <string.h> 50 #include <string> 57 // String - a UTF-8 string class. 59 // For historic reasons, we don't use std::string. 61 // TODO(wan@google.com): replace this class with std::string or 64 // Note that String can represent both NULL and the empty string, 230 operator ::std::string() const { return ::std::string(c_str(), length()); } function in class:testing::internal::String::operator::std 237 operator ::string() const { return ::string(c_str(), length()); } function in class:testing::internal::String::operator [all...] |
| /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/ |
| RecordReader.java | 12 boolean open(String title); 15 boolean bool(String name); 16 boolean[] boolArray(String name); 17 char character(String name); 18 char[] characterArray(String name); 19 byte namedIndex(String name, String[] names); 20 byte[] namedIndexArray(String name, String[] names); 21 String string(String name) method in interface:RecordReader [all...] |
| RecordWriter.java | 12 boolean open(String title); 15 void bool(String name, boolean value); 16 void boolArray(String name, boolean[] values); 17 void character(String name, char value); 18 void characterArray(String name, char[] values); 19 void namedIndex(String name, String[] names, int value); 20 void namedIndexArray(String name, String[] names, byte[] values); 21 void string(String name, String value) method in interface:RecordWriter [all...] |
| /external/icu/android_icu4j/src/main/java/android/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. 51 * the iterator points to a string. 66 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points 67 * to the current string. If <tt>codepoint != IS_STRING</tt>, the 68 * value of <tt>string</tt> is undefined. 70 public String string; field in class:UnicodeSetIterator 91 * or a string. If there are no more elements in the set, return 93 * string in the <tt>string</tt> field. Otherwise the value is [all...] |
| /external/icu/icu4c/source/common/unicode/ |
| usetiter.h | 42 * <p>Each item in the set is accessed as a string. Set elements 66 * Value of <tt>codepoint</tt> if the iterator points to a string. 68 * <tt>string</tt> for the current iteration result. 75 * the iterator points to a string. 92 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points 93 * to the current string. If <tt>codepoint != IS_STRING</tt>, the 94 * value of <tt>string</tt> is undefined. 97 const UnicodeString* string; member in class:UnicodeSetIterator 124 * Returns true if the current element is a string. If so, the 129 * Elements of types string and codepoint can both be retrieve [all...] |
| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
| RecordReader.java | 11 boolean open(String title); 14 boolean bool(String name); 15 boolean[] boolArray(String name); 16 char character(String name); 17 char[] characterArray(String name); 18 byte namedIndex(String name, String[] names); 19 byte[] namedIndexArray(String name, String[] names); 20 String string(String name) method in interface:RecordReader [all...] |
| RecordWriter.java | 11 boolean open(String title); 14 void bool(String name, boolean value); 15 void boolArray(String name, boolean[] values); 16 void character(String name, char value); 17 void characterArray(String name, char[] values); 18 void namedIndex(String name, String[] names, int value); 19 void namedIndexArray(String name, String[] names, byte[] values); 20 void string(String name, String value) method in interface:RecordWriter [all...] |