HomeSort by relevance Sort by last modified time
    Searched refs:string (Results 2126 - 2150 of 46739) sorted by null

<<81828384858687888990>>

  /bionic/tools/versioner/src/
versioner.h 21 #include <string>
36 static const std::unordered_map<std::string, std::set<Arch>> header_blacklist = {
44 static const std::unordered_set<std::string> missing_symbol_whitelist = {
  /bootable/recovery/otautil/include/otautil/
SysUtil.h 22 #include <string>
33 bool MapFile(const std::string& filename);
47 bool MapBlockFile(const std::string& filename);
  /developers/samples/android/ui/text/TextStyling-Kotlin/app/src/main/java/com/android/example/text/styling/parser/
Parser.kt 39 * @param string string to be parsed into markdown elements
42 fun parse(string: String): TextMarkdown {
48 val matcher = patternQuote.matcher(string)
57 val text = string.subSequence(lastStartIndex, startIndex)
61 val endOfQuote = getEndOfParagraph(string, endIndex)
63 val quotedText = string.subSequence(endIndex, endOfQuote)
68 if (lastStartIndex < string.length) {
69 val text = string.subSequence(lastStartIndex, string.length
    [all...]
  /device/google/cuttlefish_common/host/libs/ivserver/
options.cc 20 IVServerOptions::IVServerOptions(const std::string &shm_file_path,
21 const std::string &qemu_socket_path,
22 const std::string &client_socket_path)
  /device/google/cuttlefish_common/host/libs/usbip/
server.h 19 #include <string>
30 Server(const std::string& name, const DevicePool& device_pool);
54 std::string name_;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/
scanner.py 28 def _scan_once(string, idx):
30 nextchar = string[idx]
35 return parse_string(string, idx + 1, encoding, strict)
37 return parse_object((string, idx + 1), encoding, strict,
40 return parse_array((string, idx + 1), _scan_once)
41 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
43 elif nextchar == 't' and string[idx:idx + 4] == 'true':
45 elif nextchar == 'f' and string[idx:idx + 5] == 'false':
48 m = match_number(string, idx)
56 elif nextchar == 'N' and string[idx:idx + 3] == 'NaN':
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/
scanner.py 28 def _scan_once(string, idx):
30 nextchar = string[idx]
35 return parse_string(string, idx + 1, encoding, strict)
37 return parse_object((string, idx + 1), encoding, strict,
40 return parse_array((string, idx + 1), _scan_once)
41 elif nextchar == 'n' and string[idx:idx + 4] == 'null':
43 elif nextchar == 't' and string[idx:idx + 4] == 'true':
45 elif nextchar == 'f' and string[idx:idx + 5] == 'false':
48 m = match_number(string, idx)
56 elif nextchar == 'N' and string[idx:idx + 3] == 'NaN':
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
GrammarRuleAttribute.cs 40 private readonly string _name;
42 public GrammarRuleAttribute(string name) {
46 public string Name {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
GrammarRuleAttribute.cs 42 private readonly string _name;
44 public GrammarRuleAttribute(string name)
49 public string Name
  /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 &mdash; 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...]
  /external/clang/include/clang/Index/
CodegenNameGenerator.h 19 #include <string>
37 /// Version of \c writeName function that returns a string.
38 std::string getName(const Decl *D);
42 std::vector<std::string> getAllManglings(const Decl *D);
  /external/compiler-rt/test/tsan/
ignore_lib1.cc 20 #include <string>
23 std::string lib = std::string(dirname(argv[0])) + "/libignore_lib1.so";
ignore_lib3.cc 18 #include <string>
21 std::string lib = std::string(dirname(argv[0])) + "/libignore_lib3.so";
  /external/deqp/external/vulkancts/modules/vulkan/
vktTestGroupUtil.hpp 38 const std::string& name,
39 const std::string& description,
56 const std::string& name,
57 const std::string& description,
73 const std::string& name,
74 const std::string& description,
82 const std::string& name,
83 const std::string& description,
91 const std::string& name,
92 const std::string& description
    [all...]
  /external/google-breakpad/src/testing/gtest/samples/
sample2.h 37 #include <string.h>
40 // A simple string class.
47 // Clones a 0-terminated C string, allocating memory using new.
54 // The default c'tor constructs a NULL string.
57 // Constructs a MyString by cloning a 0-terminated C string.
63 MyString(const MyString& string) : c_string_(NULL) {
64 Set(string.c_string_);
73 // Gets the 0-terminated C string this MyString object represents.
80 // Sets the 0-terminated C string this MyString object represents.
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/message/
pairingrequestackmessage.cc 29 const std::string& server_name)
34 std::string PairingRequestAckMessage::server_name() const {
42 std::string PairingRequestAckMessage::ToString() const {
  /external/google-tv-pairing-protocol/cpp/src/polo/util/
poloutil.h 20 #include <string>
29 // Converts an array of big-endian bytes to a hex string.
32 // @return a hex string representing the given byte array
33 static const std::string BytesToHexString(const uint8_t* bytes,
36 // Converts a hex string to an array of big-endian bytes. A new byte array
39 // @param hex_string the hex string to convert
43 static const size_t HexStringToBytes(const std::string hex_string,
  /external/googletest/googletest/samples/
sample2.h 37 #include <string.h>
40 // A simple string class.
47 // Clones a 0-terminated C string, allocating memory using new.
54 // The default c'tor constructs a NULL string.
57 // Constructs a MyString by cloning a 0-terminated C string.
63 MyString(const MyString& string) : c_string_(NULL) {
64 Set(string.c_string_);
73 // Gets the 0-terminated C string this MyString object represents.
80 // Sets the 0-terminated C string this MyString object represents.
  /external/icu/icu4c/source/samples/case/
case.cpp 49 UnicodeString string("This is a test");
59 printUnicodeString(out, string);
60 string.toUpper(); /* string = "THIS IS A TEST" */
62 printUnicodeString(out, string);
63 string.toLower(); /* string = "this is a test" */
65 printUnicodeString(out, string);
70 string = upper;
71 string.toLower(Locale("tr", "TR")); /* Turkish lower case map string
    [all...]
  /external/libbrillo/brillo/
osrelease_reader.h 12 #include <string>
37 bool GetString(const std::string& key, std::string* value) const;
process_information.cc 14 std::string ProcessInformation::GetCommandLine() {
15 std::string result;
16 for (std::vector<std::string>::iterator cmd_itr = cmd_line_.begin();
syslog_logging.h 8 #include <string>
33 // Start accumulating the logs to a string. This is inefficient, so
38 // Get the accumulated logs as a string.
39 BRILLO_EXPORT std::string GetLog();
42 // Returns true if the accumulated log contains the given string. Useful
44 BRILLO_EXPORT bool FindLog(const char* string);
userdb_utils.h 10 #include <string>
22 const std::string& user, uid_t* uid, gid_t* gid) WARN_UNUSED_RESULT;
27 const std::string& group, gid_t* gid) WARN_UNUSED_RESULT;
variant_dictionary.h 9 #include <string>
16 using VariantDictionary = std::map<std::string, brillo::Any>;
23 const std::string& key) {
  /external/libchrome/base/metrics/
field_trial.h 63 #include <string>
116 virtual double GetEntropyForTrial(const std::string& trial_name,
122 std::string trial_name;
123 std::string group_name;
127 // active. String members are pointers to the underlying strings owned by the
129 // std::string.
131 const std::string* trial_name = nullptr;
132 const std::string* group_name = nullptr;
169 bool GetParams(std::map<std::string, std::string>* params) const
    [all...]

Completed in 1434 milliseconds

<<81828384858687888990>>