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

1 23 4 5 6 7 8 91011>>

  /libcore/luni/src/main/native/
IcuUtilities.cpp 42 const icu::UnicodeString* string = se->snext(status); local
46 ScopedLocalRef<jstring> javaString(env, env->NewString(string->getBuffer(), string->length()));
  /libcore/support/src/test/java/tests/support/
Support_Proxy_I1.java 27 String string(String s) throws Support_Proxy_ParentException, LinkageError; method in interface:Support_Proxy_I1
Support_Proxy_I2.java 26 String string(String s) throws Support_Proxy_SubException, Error; method in interface:Support_Proxy_I2
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.members/
compare_string_type.pass.cpp 24 typedef SM::string_type string; typedef
27 assert(sm.compare(string()) == 0);
32 assert(sm.compare(string()) > 0);
33 assert(sm.compare(string("123")) == 0);
38 typedef SM::string_type string; typedef
41 assert(sm.compare(string()) == 0);
46 assert(sm.compare(string()) > 0);
47 assert(sm.compare(string(L"123")) == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.submatch/re.submatch.op/
compare.pass.cpp 223 typedef std::basic_string<CharT> string; typedef
224 typedef std::sub_match<typename string::const_iterator> sub_match;
263 assert((x[0] == sm2) == (string(1, x[0]) == y));
264 assert((x[0] != sm2) == (string(1, x[0]) != y));
265 assert((x[0] < sm2) == (string(1, x[0]) < y));
266 assert((x[0] > sm2) == (string(1, x[0]) > y));
267 assert((x[0] <= sm2) == (string(1, x[0]) <= y));
268 assert((x[0] >= sm2) == (string(1, x[0]) >= y));
269 assert((sm1 == y[0]) == (x == string(1, y[0])));
270 assert((sm1 != y[0]) == (x != string(1, y[0])))
    [all...]
stream.pass.cpp 26 typedef std::basic_string<CharT> string; typedef
27 typedef std::sub_match<typename string::const_iterator> SM;
40 test(std::string("123"));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
stringfwd.h 0 // <string> Forward declarations -*- C++ -*-
27 * Do not attempt to use it directly. @headername{string}
61 /// A string of @c char
62 typedef basic_string<char> string; typedef
67 /// A string of @c wchar_t
77 /// A string of @c char16_t
80 /// A string of @c char32_t
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stringfwd.h 0 // <string> Forward declarations -*- C++ -*-
27 * Do not attempt to use it directly. @headername{string}
61 /// A string of @c char
62 typedef basic_string<char> string; typedef
67 /// A string of @c wchar_t
77 /// A string of @c char16_t
80 /// A string of @c char32_t
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stringfwd.h 0 // <string> Forward declarations -*- C++ -*-
27 * Do not attempt to use it directly. @headername{string}
61 /// A string of @c char
62 typedef basic_string<char> string; typedef
67 /// A string of @c wchar_t
77 /// A string of @c char16_t
80 /// A string of @c char32_t
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_future2.py 3 from __future__ import nested_scopes; import string namespace
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_future2.py 3 from __future__ import nested_scopes; import string namespace
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stringfwd.h 0 // <string> Forward declarations -*- C++ -*-
27 * Do not attempt to use it directly. @headername{string}
61 /// A string of @c char
62 typedef basic_string<char> string; typedef
67 /// A string of @c wchar_t
77 /// A string of @c char16_t
80 /// A string of @c char32_t
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_future2.py 3 from __future__ import nested_scopes; import string namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_future2.py 3 from __future__ import nested_scopes; import string namespace
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
testprog.c 9 static char string[] = "string"; variable
23 || strcmp (string, "string") != 0)
  /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
  /art/test/utils/python/testgen/
utils.py 23 import string namespace
34 map(lambda n: itertools.product(string.ascii_lowercase, repeat=n),
46 Takes a string returns the same string sans empty lines
  /bionic/libc/tools/
check-symbols.py 6 import string namespace
60 symbol = string.split(m.group(2), '@')[0]
  /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/autotest/client/site_tests/platform_CryptohomeSyncStress/
platform_CryptohomeSyncStress.py 5 import dbus, string namespace
  /external/autotest/client/tests/kvm/tests/
physical_resources_check.py 1 import re, string, logging namespace
33 actual_num = string.count(o, check_str)
79 if not string.upper(expect) in actual:
81 fail_log += " Assigned to VM: %s\n" % string.upper(expect)
158 if not string.lower(mac) in found_mac_addresses:
  /external/autotest/client/tests/ltp/
ltp-diff.py 17 import sys, string, re namespace
  /external/autotest/tko/
reason_qualifier.py 1 import re,string namespace

Completed in 1956 milliseconds

1 23 4 5 6 7 8 91011>>