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

<<61626364656667686970>>

  /system/tools/hidl/
ArrayType.h 41 std::string typeName() const override;
52 std::string getCppType(StorageMode mode,
55 std::string getInternalDataCppType() const;
57 std::string getJavaType(bool forInitializer) const override;
59 std::string getJavaWrapperType() const override;
61 std::string getVtsType() const override;
65 const std::string &name,
66 const std::string &parcelObj,
74 const std::string &name,
75 const std::string &sanitizedName
    [all...]
  /art/runtime/dex/
art_dex_file_loader.h 22 #include <string>
52 std::string* error_msg,
59 const std::string& location,
64 std::string* error_msg) const OVERRIDE;
67 std::unique_ptr<const DexFile> Open(const std::string& location,
72 std::string* error_msg) const;
76 const std::string& location,
79 std::string* error_msg,
84 const std::string& location,
88 std::string* error_msg) const
    [all...]
  /bootable/recovery/bootloader_message/include/bootloader_message/
bootloader_message.h 71 // stage string (for multistage packages) and possible future
184 #include <string>
189 // string.
190 std::string get_bootloader_message_blk_device(std::string* err);
193 bool read_bootloader_message(bootloader_message* boot, std::string* err);
196 bool read_bootloader_message_from(bootloader_message* boot, const std::string& misc_blk_device,
197 std::string* err);
200 bool write_bootloader_message(const bootloader_message& boot, std::string* err);
204 const std::string& misc_blk_device, std::string* err)
    [all...]
  /device/google/cuttlefish_common/host/libs/monitor/
kernel_log_server.h 18 #include <string>
29 KernelLogServer(const std::string& socket_name,
30 const std::string& log_name,
59 std::string name_;
63 std::string line_;
  /device/google/cuttlefish_common/host/libs/vadb/
virtual_adb_server.h 19 #include <string>
29 VirtualADBServer(const std::string& usb_socket_name, int vhci_port,
30 const std::string& usbip_socket_name)
56 std::string name_;
58 std::string usbip_name_;
  /device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/
PwdCredentialProviderStrings.uni 2 String definitions for the Password Credential Provider.
18 #string STR_CREDENTIAL_TITLE #language en-US "Password Credential Provider"
20 #string STR_FORM_TITLE #language en-US "Get Password"
22 #string STR_NULL_STRING #language en-US ""
24 #string STR_INPUT_PASSWORD #language en-US "Please Input Password"
26 #string STR_PROVIDER_NAME #language en-US "INTEL Password Credential Provider"
28 #string STR_PROVIDER_TYPE_NAME #language en-US "Password Credential Provider"
30 #string STR_INPUT_PASSWORD_AGAIN #language en-US "Input Password Again"
32 #string STR_DRAW_A_LINE #language en-US "-----------------------------"
34 #string STR_PASSWORD_INCORRECT #language en-US " Incorrect Password! "
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MismatchedTokenException.cs 47 private readonly ReadOnlyCollection<string> _tokenNames;
53 public MismatchedTokenException(string message)
58 public MismatchedTokenException(string message, Exception innerException)
68 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
74 this._tokenNames = new List<string>(tokenNames).AsReadOnly();
77 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
83 this._tokenNames = new List<string>(tokenNames).AsReadOnly();
86 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DEROctetString.java 6 * Carrier class for a DER encoding OCTET STRING
14 * @param string the octets making up the octet string.
17 byte[] string)
19 super(string);
41 return 1 + StreamUtil.calculateBodyLength(string.length) + string.length;
48 out.writeEncoded(BERTags.OCTET_STRING, string);
  /external/google-breakpad/src/common/linux/
dump_symbols.h 39 #include <string>
65 bool WriteSymbolFile(const string &obj_file,
66 const std::vector<string>& debug_dirs,
73 bool ReadSymbolData(const string& obj_file,
74 const std::vector<string>& debug_dirs,
  /external/google-breakpad/src/google_breakpad/processor/
symbol_supplier.h 36 #include <string>
65 // must be a pointer to a valid string
68 string *symbol_file) = 0;
76 string *symbol_file,
77 string *symbol_data) = 0;
80 // symbol data into the buffer as C-string.
89 string *symbol_file,
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/
clientpairingsession.h 18 #include <string>
39 const std::string& service_name,
40 const std::string& client_name);
71 std::string service_name_;
72 std::string client_name_;
  /external/gptfdisk/
attributes.h 5 #include <string>
17 static string atNames[NUM_ATR];
33 bool OperateOnAttributes(const uint32_t partNum, const string& attributeOperator, const string& attributeBits);
35 static const string& GetAttributeName(const uint32_t bitNum) {return atNames [bitNum];}
  /external/libbrillo/brillo/http/
mock_transport.h 9 #include <string>
23 std::shared_ptr<Connection>(const std::string&,
24 const std::string&,
26 const std::string&,
27 const std::string&,
  /external/libchrome/base/json/
json_writer.h 10 #include <string>
34 // Return a slightly nicer formatted json string (pads with whitespace to
39 // Given a root node, generates a JSON string and puts it into |json|.
40 // The output string is overwritten and not appended.
45 static bool Write(const Value& node, std::string* json);
51 std::string* json);
54 JSONWriter(int options, std::string* json);
56 // Called recursively to build the JSON string. When completed,
68 std::string* json_string_;
  /external/libchrome/base/strings/
nullable_string16.h 21 NullableString16(const string16& string, bool is_null)
22 : string_(string), is_null_(is_null) {
25 const string16& string() const { return string_; } function in class:base::NullableString16
34 return a.is_null() == b.is_null() && a.string() == b.string();
  /external/libcxx/test/std/diagnostics/syserr/syserr.syserr/syserr.syserr.members/
ctor_error_code_const_char_pointer.pass.cpp 19 #include <string>
24 std::string what_arg("test message");
27 std::string what_message(se.what());
28 assert(what_message.find(what_arg) != std::string::npos);
29 assert(what_message.find("Not a directory") != std::string::npos);
ctor_int_error_category_const_char_pointer.pass.cpp 19 #include <string>
24 std::string what_arg("test message");
28 std::string what_message(se.what());
29 assert(what_message.find(what_arg) != std::string::npos);
30 assert(what_message.find("Not a directory") != std::string::npos);
ctor_int_error_category_string.pass.cpp 14 // system_error(int ev, const error_category& ecat, const string& what_arg);
19 #include <string>
24 std::string what_arg("test message");
28 std::string what_message(se.what());
29 assert(what_message.find(what_arg) != std::string::npos);
30 assert(what_message.find("Not a directory") != std::string::npos);
  /external/llvm/include/llvm/DebugInfo/CodeView/
CodeViewError.h 15 #include <string>
31 CodeViewError(const std::string &Context);
32 CodeViewError(cv_error_code C, const std::string &Context);
35 const std::string &getErrorMessage() const;
39 std::string ErrMsg;
  /external/llvm/include/llvm/DebugInfo/PDB/DIA/
DIAError.h 15 #include <string>
33 DIAError(const std::string &Context);
34 DIAError(dia_error_code C, const std::string &Context);
37 const std::string &getErrorMessage() const;
41 std::string ErrMsg;
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
RawError.h 15 #include <string>
36 RawError(const std::string &Context);
37 RawError(raw_error_code C, const std::string &Context);
40 const std::string &getErrorMessage() const;
44 std::string ErrMsg;
  /external/mesa3d/src/gallium/state_trackers/clover/llvm/
util.hpp 38 fail(std::string &r_log, E &&e, const std::string &s) {
43 inline std::vector<std::string>
44 tokenize(const std::string &s) {
45 std::vector<std::string> ss;
52 // passed to the compiler. We avoid using std::string::replace here to
86 inline std::string
92 target(const std::string &s) :
96 std::string cpu;
97 std::string triple
    [all...]
  /external/parameter-framework/upstream/parameter/
BooleanParameterType.h 34 #include <string>
39 CBooleanParameterType(const std::string &strName);
43 virtual std::string getKind() const;
46 // String
47 virtual bool toBlackboard(const std::string &strValue, uint32_t &uiValue,
49 virtual bool fromBlackboard(std::string &strValue, const uint32_t &uiValue,
SelectionCriteria.h 38 #include <string>
57 CSelectionCriterion *createSelectionCriterion(const std::string &strName,
61 CSelectionCriterion *getSelectionCriterion(const std::string &strName);
67 void listSelectionCriteria(std::list<std::string> &strResult, bool bWithTypeInfo,
71 virtual std::string getKind() const;
Subsystem.h 41 #include <string>
63 CSubsystem(const std::string &strName, core::log::Logger &logger);
76 virtual std::string getKind() const;
78 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
79 std::string getFormattedMapping() const override;
84 * The mapping is represented as a std::string of all the mapping data (key:value) defined in
88 * list to format the resulting std::string.
94 * @return Formatted std::string of the mapping data
96 virtual std::string getMapping
    [all...]

Completed in 1702 milliseconds

<<61626364656667686970>>