HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 51 - 75 of 856) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stringfwd.h 0 // String support -*- C++ -*-
29 * Do not attempt to use it directly. @headername{string}
65 typedef basic_string<char> string; /// A string of @c char typedef
70 typedef basic_string<wchar_t> wstring; /// A string of @c wchar_t
79 typedef basic_string<char16_t> u16string; /// A string of @c char16_t
80 typedef basic_string<char32_t> u32string; /// A string of @c char32_t
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stringfwd.h 0 // String support -*- C++ -*-
29 * Do not attempt to use it directly. @headername{string}
65 typedef basic_string<char> string; /// A string of @c char typedef
70 typedef basic_string<wchar_t> wstring; /// A string of @c wchar_t
79 typedef basic_string<char16_t> u16string; /// A string of @c char16_t
80 typedef basic_string<char32_t> u32string; /// A string of @c char32_t
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
CrcFunction.java 17 package com.google.clearsilver.jsilver.functions.string;
28 * Returns the CRC-32 of a string.
33 * @param args 1 string expression
34 * @return CRC-32 of string as number value
37 String string = args[0].asString(); local
43 b = string.getBytes("UTF-8");
SliceFunction.java 17 package com.google.clearsilver.jsilver.functions.string;
28 * Returns the string slice starting at start and ending at end, similar to the Python slice
34 * @param args 1 string values then 2 numeric values (start and end).
35 * @return Sliced string
41 String string = stringValue.asString(); local
44 int length = string.length();
63 return literalValue(string.substring(start, end), stringValue.getEscapeMode(), stringValue
FindFunction.java 17 package com.google.clearsilver.jsilver.functions.string;
24 * Returns the numeric position of the substring in the string (if found), otherwise returns -1
25 * similar to the Python string.find method.
30 * @param args 2 string expressions (full string and substring)
LengthFunction.java 17 package com.google.clearsilver.jsilver.functions.string;
24 * Returns the length of the string expression.
29 * @param args A single string value
  /bionic/libc/tools/
check-symbols.py 6 import string namespace
  /cts/suite/audio_quality/lib/src/audio/
AudioProtocol.cpp 192 android::String8* string = reinterpret_cast<android::String8*>(param->mExtra); local
193 string->setTo(infoString.get(), len);
  /development/testrunner/
am_instrument_parser.py 22 import string namespace
30 result (string): Raw output of "am instrument"
73 result (string): Raw output of "am instrument"
91 line = line.strip(string.whitespace)
94 key = re_result.search(line).group(1).strip(string.whitespace)
97 val = re_result.search(line).group(2).strip(string.whitespace)
107 val = re_code.search(line).group(1).strip(string.whitespace)
130 result_block_string (string): Is a single "block" of output. A single
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
DirectoryString.java 19 private ASN1String string; field in class:DirectoryString
67 DERT61String string)
69 this.string = string;
73 DERPrintableString string)
75 this.string = string;
79 DERUniversalString string)
81 this.string = string;
    [all...]
  /external/chromium/webkit/glue/
npruntime_util.cc 15 const NPUTF8* string; local
18 WebBindings::extractIdentifierData(identifier, string, number, is_string);
24 return pickle->WriteData(string, strlen(string) + 1);
  /external/clang/test/Index/
complete-exprs.cpp 3 class string { class
5 string();
6 string(const char *);
7 string(const char *, int n);
55 // CHECK-CC1: ClassDecl:{TypedText string} (50)
56 // CHECK-CC1: CXXConstructor:{TypedText string}{LeftParen (}{RightParen )} (50)
57 // CHECK-CC1: CXXConstructor:{TypedText string}{LeftParen (}{Placeholder const char *}{RightParen )} (50)
58 // CHECK-CC1: CXXConstructor:{TypedText string}{LeftParen (}{Placeholder const char *}{Comma , }{Placeholder int n}{RightParen )} (50)
65 // CHECK-CC2: ClassDecl:{TypedText string} (50)
  /external/e2fsprogs/lib/e2p/
hashstr.c 14 #include <string.h>
22 const char *string; member in struct:hash
37 for (p = hash_list; p->string; p++) {
39 return p->string;
48 int e2p_string2hash(char *string)
54 for (p = hash_list; p->string; p++) {
55 if (!strcasecmp(string, p->string)) {
59 if (strncasecmp(string, "HASHALG_", 8))
62 if (string[8] == 0
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/app/
R.java 16 public static final class string { class in class:R
  /external/mdnsresponder/mDNSPosix/
parselog.py 60 import string namespace
147 ipList[ip][2] = string.join(qaList[6:])
235 # Should measure string width, but don't know how to do that
  /external/open-vcdiff/src/
jsonwriter.h 22 #include <string>
34 // * Each ADD is represented by a single JSON string containing
38 // * Each RUN is represented by a JSON string containing the data to add,
58 // Writes the header to the output string.
65 // string. The output string is not null-terminated.
76 typedef std::string string; typedef in class:open_vcdiff::JSONCodeTableWriter
78 // Escape the input data to conform with the JSON string spec
79 // and add it to the 'out' string
    [all...]
jsonwriter_test.cc 29 typedef std::string string; typedef in class:open_vcdiff::__anon12342::JSONWriterTest
39 string out_;
40 OutputString<string> output_string_;
127 string out2;
128 OutputString<string> output_string2(&out2);
  /external/openssh/openbsd-compat/
bsd-asprintf.c 47 char *string, *newstr; local
51 if ((string = malloc(INIT_SZ)) == NULL)
54 ret = vsnprintf(string, INIT_SZ, fmt, ap2);
56 *str = string;
58 free(string);
62 if ((newstr = realloc(string, len)) == NULL) {
63 free(string);
71 } else { /* failed with realloc'ed string, give up */
  /external/srtp/test/
getopt_s.c 56 getopt_check_character(char c, const char *string) {
59 while (*string != 0) {
63 if (*string++ == c) {
64 if (*string == ':') {
81 char *string; local
83 /* move 'string' on to next argument */
85 string = argv[optind_s];
87 if (string == NULL)
88 return '?'; /* NULL argument string */
90 if (string[0] != '-'
    [all...]
  /external/stlport/stlport/stl/
msl_string.h 22 # define string __msl_string macro
33 # include_next <string>
35 # include _STLP_NATIVE_HEADER(string)
43 # undef string macro
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
15.10.2-1.js 52 var string = ''; variable
62 string = 'abc';
63 actualmatch = string.match(pattern);
69 string = 'abc';
70 actualmatch = string.match(pattern);
76 string = 'abcdefghi';
77 actualmatch = string.match(pattern);
83 string = 'abcdefghi';
84 actualmatch = string.match(pattern);
90 string = 'aabaac'
    [all...]
15.10.6.2-1.js 24 * The parent string is CONSUMED as successive matches are found.
28 * 15.10.6.2 RegExp.prototype.exec(string)
29 * Performs a regular expression match of string against the regular
31 * the match, or null if the string did not match.
33 * The string ToString(string) is searched for an occurrence of the
36 * 1. Let S be the value of ToString(string).
70 var string = ''; variable
79 string = 'a b c d e';
81 actualmatch = string.match(pattern)
    [all...]
15.10.6.2-2.js 48 * 15.10.6.2 RegExp.prototype.exec(string)
49 * Performs a regular expression match of string against the regular
51 * the match, or null if the string did not match.
53 * The string ToString(string) is searched for an occurrence of the
56 * 1. Let S be the value of ToString(string).
84 * The match is then attempted from this position in the string (Step 7).
102 var string = ''; variable
116 string = 'AbcaBcabC';
119 actualmatch = pattern.exec(string);
    [all...]
octal-001.js 50 var string = ''; variable
60 string = 'abc';
61 actualmatch = string.match(pattern);
72 string = 'ab*c';
73 actualmatch = string.match(pattern);
79 string = 'abc';
80 actualmatch = string.match(pattern);
86 string = 'ab****c';
87 actualmatch = string.match(pattern);
93 string = 'ab****c'
    [all...]
octal-002.js 48 * See ECMA-262 Edition 2, Section 7.7.4 "String Literals". These were
68 var string = ''; variable
77 * Test a string containing the null character '\0' followed by the string '11'
79 * 'a' + String.fromCharCode(0) + '11';
90 string = 'a' + String.fromCharCode(0) + '11';
91 actualmatch = string.match(pattern);
100 * has been reduced from \011 to \0, and '\0' is present in the string -
104 string = 'a' + String.fromCharCode(0) + 'xx'
    [all...]

Completed in 1899 milliseconds

1 23 4 5 6 7 8 91011>>