HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 176 - 200 of 3176) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1OctetString.java 12 * Abstract base for the ASN.1 OCTET STRING data type
16 * DER form is always primitive single OCTET STRING, while
27 * NOTE — Where it is necessary to transfer part of an octet string
28 * before the entire OCTET STRING is available, the constructed encoding
78 * <p><b>9.2 String encoding forms</b></p>
80 * BIT STRING, OCTET STRING,and restricted character string
83 * encoding otherwise. The string fragments contained in
95 * <b>10.2 String encoding forms</b
105 byte[] string; field in class:ASN1OctetString
    [all...]
DERBMPString.java 14 private final char[] string; field in class:DERBMPString
17 * return a BMP String from the given object.
47 * return a BMP String from a tagged object.
73 * basic constructor - byte encoded string.
74 * @param string the encoded BMP STRING to wrap.
77 byte[] string)
79 char[] cs = new char[string.length / 2];
83 cs[i] = (char)((string[2 * i] << 8) | (string[2 * i + 1] & 0xff))
    [all...]
DERGeneralString.java 15 private final byte[] string; field in class:DERGeneralString
74 DERGeneralString(byte[] string)
76 this.string = string;
80 * Construct a GeneralString from the passed in String.
82 * @param string the string to be contained in this object.
84 public DERGeneralString(String string)
86 this.string = Strings.toByteArray(string)
    [all...]
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 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 = Arrays.clone(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/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/e2fsprogs/lib/e2p/
mntopts.c 15 #include <string.h>
24 const char *string; member in struct:mntopt
49 for (f = mntopt_list; f->string; f++) {
51 return f->string;
58 int e2p_string2mntopt(char *string, unsigned int *mask)
64 for (f = mntopt_list; f->string; f++) {
65 if (!strcasecmp(string, f->string)) {
70 if (strncasecmp(string, "MNTOPT_", 7))
73 if (string[8] == 0
    [all...]
  /external/e2fsprogs/lib/ss/
execute_cmd.c 67 * If the command string in argv[0] is in the request table, execute
76 * argument string array
95 char *string = argv[0]; local
103 if (!strcmp(*name, string)) {
  /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/flatbuffers/grpc/src/compiler/
schema_interface.h 43 #include <string>
44 #define GRPC_CUSTOM_STRING std::string
49 typedef GRPC_CUSTOM_STRING string; typedef in namespace:grpc
59 virtual grpc::string GetLeadingComments(const grpc::string prefix) const = 0;
60 virtual grpc::string GetTrailingComments(const grpc::string prefix) const = 0;
61 virtual std::vector<grpc::string> GetAllComments() const = 0;
68 virtual grpc::string name() const = 0;
70 virtual grpc::string input_type_name() const = 0
    [all...]
  /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 14 boolean open(String title);
17 boolean bool(String name);
18 boolean[] boolArray(String name);
19 char character(String name);
20 char[] characterArray(String name);
21 byte namedIndex(String name, String[] names);
22 byte[] namedIndexArray(String name, String[] names);
23 String string(String name) method in interface:RecordReader
    [all...]
RecordWriter.java 14 boolean open(String title);
17 void bool(String name, boolean value);
18 void boolArray(String name, boolean[] values);
19 void character(String name, char value);
20 void characterArray(String name, char[] values);
21 void namedIndex(String name, String[] names, int value);
22 void namedIndexArray(String name, String[] names, byte[] values);
23 void string(String name, String value) method in interface:RecordWriter
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/number/
LocalizedNumberFormatter.java 42 * Format the given byte, short, int, or long to a string using the settings specified in the NumberFormatter fluent
47 * @return A FormattedNumber object; call .toString() to get the string.
56 * Format the given float or double to a string using the settings specified in the NumberFormatter fluent setting
61 * @return A FormattedNumber object; call .toString() to get the string.
70 * Format the given {@link BigInteger}, {@link BigDecimal}, or other {@link Number} to a string using the settings
75 * @return A FormattedNumber object; call .toString() to get the string.
84 * Format the given {@link Measure} or {@link CurrencyAmount} to a string using the settings specified in the
93 * @return A FormattedNumber object; call .toString() to get the string.
135 NumberStringBuilder string = new NumberStringBuilder(); local
139 micros = compiled.apply(fq, string);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeSetIterator.java 45 * Value of <tt>codepoint</tt> if the iterator points to a string.
47 * <tt>string</tt> for the current iteration result.
53 * the iterator points to a string.
68 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points
69 * to the current string. If <tt>codepoint != IS_STRING</tt>, the
70 * value of <tt>string</tt> is undefined.
72 public String string; field in class:UnicodeSetIterator
93 * or a string. If there are no more elements in the set, return
95 * string in the <tt>string</tt> field. Otherwise the value is
    [all...]
  /external/icu/icu4c/source/common/unicode/
usetiter.h 44 * <p>Each item in the set is accessed as a string. Set elements
68 * Value of <tt>codepoint</tt> if the iterator points to a string.
70 * <tt>string</tt> for the current iteration result.
77 * the iterator points to a string.
94 * If <tt>codepoint == IS_STRING</tt>, then <tt>string</tt> points
95 * to the current string. If <tt>codepoint != IS_STRING</tt>, the
96 * value of <tt>string</tt> is undefined.
99 const UnicodeString* string; member in class:UnicodeSetIterator
126 * Returns true if the current element is a string. If so, the
131 * 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 13 boolean open(String title);
16 boolean bool(String name);
17 boolean[] boolArray(String name);
18 char character(String name);
19 char[] characterArray(String name);
20 byte namedIndex(String name, String[] names);
21 byte[] namedIndexArray(String name, String[] names);
22 String string(String name) method in interface:RecordReader
    [all...]
RecordWriter.java 13 boolean open(String title);
16 void bool(String name, boolean value);
17 void boolArray(String name, boolean[] values);
18 void character(String name, char value);
19 void characterArray(String name, char[] values);
20 void namedIndex(String name, String[] names, int value);
21 void namedIndexArray(String name, String[] names, byte[] values);
22 void string(String name, String value) method in interface:RecordWriter
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
LocalizedNumberFormatter.java 41 * Format the given byte, short, int, or long to a string using the settings specified in the NumberFormatter fluent
46 * @return A FormattedNumber object; call .toString() to get the string.
56 * Format the given float or double to a string using the settings specified in the NumberFormatter fluent setting
61 * @return A FormattedNumber object; call .toString() to get the string.
71 * Format the given {@link BigInteger}, {@link BigDecimal}, or other {@link Number} to a string using the settings
76 * @return A FormattedNumber object; call .toString() to get the string.
86 * Format the given {@link Measure} or {@link CurrencyAmount} to a string using the settings specified in the
95 * @return A FormattedNumber object; call .toString() to get the string.
138 NumberStringBuilder string = new NumberStringBuilder(); local
142 micros = compiled.apply(fq, string);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CaseInsensitiveString.java 14 * A string used as a key in java.util.Hashtable and other
21 private String string; field in class:CaseInsensitiveString
25 private String folded = null;
27 private static String foldCase(String foldee)
35 folded = foldCase(string);
40 * Constructs an CaseInsentiveString object from the given string
41 * @param s The string to construct this object from
44 public CaseInsensitiveString(String s)
    [all...]

Completed in 412 milliseconds

1 2 3 4 5 6 78 91011>>