| /external/vulkan-validation-layers/libs/vkjson/ |
| vkjson.h | 25 #include <string.h> 28 #include <string> 126 std::string VkJsonInstanceToJson(const VkJsonInstance& instance); 127 bool VkJsonInstanceFromJson(const std::string& json, 129 std::string* errors); 135 std::string VkJsonDeviceToJson(const VkJsonDevice& device); 136 bool VkJsonDeviceFromJson(const std::string& json, 138 std::string* errors); 140 std::string VkJsonImageFormatPropertiesToJson( 142 bool VkJsonImageFormatPropertiesFromJson(const std::string& json [all...] |
| /external/webrtc/webrtc/api/objc/ |
| RTCSessionDescription.mm | 61 std::string sdp; 69 + (std::string)stringForType:(RTCSdpType)type { 80 + (RTCSdpType)typeForString:(const std::string &)string { 81 if (string == webrtc::SessionDescriptionInterface::kOffer) { 83 } else if (string == webrtc::SessionDescriptionInterface::kPrAnswer) { 85 } else if (string == webrtc::SessionDescriptionInterface::kAnswer) {
|
| /external/webrtc/webrtc/base/ |
| optionsfile.cc | 21 OptionsFile::OptionsFile(const std::string &path) : path_(path) { 38 std::string line; 46 if (equals_pos == std::string::npos) { 52 std::string key(line, 0, equals_pos); 53 std::string value(line, equals_pos + 1, line.length() - (equals_pos + 1)); 105 bool OptionsFile::IsLegalName(const std::string &name) { 116 bool OptionsFile::IsLegalValue(const std::string &value) { 127 bool OptionsFile::GetStringValue(const std::string& option, 128 std::string *out_val) const { 142 bool OptionsFile::GetIntValue(const std::string& option [all...] |
| urlencode.cc | 136 std::string 137 InternalUrlDecodeString(const std::string & encoded, 145 std::string 146 UrlDecodeString(const std::string & encoded) { 150 std::string 151 UrlDecodeStringWithoutEncodingSpaceAsPlus(const std::string & encoded) { 155 std::string 156 InternalUrlEncodeString(const std::string & decoded, 166 std::string 167 UrlEncodeString(const std::string & decoded) [all...] |
| /external/webrtc/webrtc/p2p/client/ |
| fakeportallocator.h | 14 #include <string> 35 const std::string& username, 36 const std::string& password, 37 const std::string& origin, 65 const std::string& username, 66 const std::string& password, 67 const std::string& origin, 87 const std::string& content_name, 89 const std::string& ice_ufrag, 90 const std::string& ice_pwd [all...] |
| /frameworks/native/cmds/lshal/ |
| TableEntry.cpp | 29 static const std::string &getArchString(Architecture arch) { 30 static const std::string sStr64 = "64"; 31 static const std::string sStr32 = "32"; 32 static const std::string sStrBoth = "32+64"; 33 static const std::string sStrUnknown = ""; 47 static std::string getTitle(TableColumnType type) { 66 std::string TableEntry::getField(TableColumnType type) const { 96 std::string TableEntry::isReleased() const { 97 static const std::string unreleased = Hash::hexString(Hash::kEmptyHash); 106 const std::function<std::string(const std::string&)>& emitDebugInfo) const [all...] |
| /frameworks/native/services/surfaceflinger/layerproto/include/layerproto/ |
| LayerProtoParser.h | 38 std::string to_string() const; 48 std::string to_string() const; 58 std::string to_string() const; 68 std::string to_string() const; 76 std::string to_string(const char* what) const; 82 std::string name; 85 std::string type; 98 std::string dataspace; 99 std::string pixelFormat; 118 std::string to_string() const [all...] |
| /frameworks/native/vulkan/vkjson/ |
| vkjson.h | 25 #include <string.h> 28 #include <string> 126 std::string VkJsonInstanceToJson(const VkJsonInstance& instance); 127 bool VkJsonInstanceFromJson(const std::string& json, 129 std::string* errors); 135 std::string VkJsonDeviceToJson(const VkJsonDevice& device); 136 bool VkJsonDeviceFromJson(const std::string& json, 138 std::string* errors); 140 std::string VkJsonImageFormatPropertiesToJson( 142 bool VkJsonImageFormatPropertiesFromJson(const std::string& json [all...] |
| /frameworks/support/emoji/core/src/androidTest/java/androidx/emoji/text/ |
| AllEmojisTest.java | 56 * String representation for a single emoji 58 private String mString; 63 private String mCodepoints; 85 String s; 95 final String[] split = s.split(" "); 98 final String part = split[index].trim(); 113 public AllEmojisTest(String string, String codepoints) { 114 mString = string; 139 TestString string = new TestString(str); local [all...] |
| /packages/apps/Settings/tests/robotests/src/com/android/settings/suggestions/ |
| SettingsSuggestionsTest.java | 51 R.string.wallpaper_suggestion_title, 52 R.string.wallpaper_suggestion_summary); 59 R.string.suggestion_additional_fingerprints, 60 R.string.suggestion_additional_fingerprints_summary); 67 R.string.suggested_fingerprint_lock_settings_title, 68 R.string.suggested_fingerprint_lock_settings_summary); 75 R.string.wifi_calling_suggestion_title, 76 R.string.wifi_calling_suggestion_summary); 83 R.string.night_display_suggestion_title, 84 R.string.night_display_suggestion_summary) [all...] |
| /packages/apps/TV/tests/common/src/com/android/tv/testing/uihelper/ |
| MenuHelper.java | 40 ByResource.text(mTargetResources, R.string.menu_title_channels)); 53 * @param rowTitleResId the resource id of the string in the desired row title. 54 * @param itemTextResId the resource id of the string in the desired item. 77 * @param rowTitleResId the resource id of the string in the desired row title. 103 assertNavigateToRow(R.string.menu_title_channels); 113 * @param itemTextResId the resource id of the string in the desired item. 125 return assertPressMenuItem(R.string.menu_title_options, R.string.options_item_settings); 130 R.string.menu_title_options, R.string.options_item_closed_caption) [all...] |
| /prebuilts/go/darwin-x86/src/cmd/go/internal/base/ |
| env.go | 14 func EnvForDir(dir string, base []string) []string { 17 return MergeEnvLists([]string{"PWD=" + dir}, base) 23 func MergeEnvLists(in, out []string) []string { 24 out = append([]string(nil), out...)
|
| /prebuilts/go/darwin-x86/src/cmd/go/internal/web/ |
| bootstrap.go | 24 func (e *HTTPError) Error() string { 28 func Get(url string) ([]byte, error) { 32 func GetMaybeInsecure(importPath string, security SecurityMode) (string, io.ReadCloser, error) { 36 func QueryEscape(s string) string { panic("unreachable") } 37 func OpenBrowser(url string) bool { panic("unreachable") }
|
| /prebuilts/go/darwin-x86/src/internal/poll/ |
| strconv.go | 11 // Convert integer to decimal string 12 func itoa(val int) string { 19 // Convert unsigned integer to decimal string 20 func uitoa(val uint) string { 21 if val == 0 { // avoid string allocation 34 return string(buf[i:]) 39 func stringsHasSuffix(s, suffix string) bool {
|
| /prebuilts/go/darwin-x86/src/mime/ |
| type_plan9.go | 23 var typeFiles = []string{ 27 func initMimeForTests() map[string]string { 28 typeFiles = []string{"testdata/test.types.plan9"} 29 return map[string]string{ 36 func loadMimeFile(filename string) {
|
| type_unix.go | 19 var typeFiles = []string{ 25 func loadMimeFile(filename string) { 57 func initMimeForTests() map[string]string { 58 typeFiles = []string{"testdata/test.types"} 59 return map[string]string{
|
| /prebuilts/go/linux-x86/src/cmd/go/internal/base/ |
| env.go | 14 func EnvForDir(dir string, base []string) []string { 17 return MergeEnvLists([]string{"PWD=" + dir}, base) 23 func MergeEnvLists(in, out []string) []string { 24 out = append([]string(nil), out...)
|
| /prebuilts/go/linux-x86/src/cmd/go/internal/web/ |
| bootstrap.go | 24 func (e *HTTPError) Error() string { 28 func Get(url string) ([]byte, error) { 32 func GetMaybeInsecure(importPath string, security SecurityMode) (string, io.ReadCloser, error) { 36 func QueryEscape(s string) string { panic("unreachable") } 37 func OpenBrowser(url string) bool { panic("unreachable") }
|
| /prebuilts/go/linux-x86/src/internal/poll/ |
| strconv.go | 11 // Convert integer to decimal string 12 func itoa(val int) string { 19 // Convert unsigned integer to decimal string 20 func uitoa(val uint) string { 21 if val == 0 { // avoid string allocation 34 return string(buf[i:]) 39 func stringsHasSuffix(s, suffix string) bool {
|
| /prebuilts/go/linux-x86/src/mime/ |
| type_plan9.go | 23 var typeFiles = []string{ 27 func initMimeForTests() map[string]string { 28 typeFiles = []string{"testdata/test.types.plan9"} 29 return map[string]string{ 36 func loadMimeFile(filename string) {
|
| type_unix.go | 19 var typeFiles = []string{ 25 func loadMimeFile(filename string) { 57 func initMimeForTests() map[string]string { 58 typeFiles = []string{"testdata/test.types"} 59 return map[string]string{
|
| /system/core/adb/ |
| transport.h | 28 #include <string> 36 typedef std::unordered_set<std::string> FeatureSet; 41 std::string FeatureSetToString(const FeatureSet& features); 42 FeatureSet StringToFeatureSet(const std::string& features_string); 45 bool CanUseFeature(const FeatureSet& feature_set, const std::string& feature); 155 const std::string serial_name() const { return serial ? serial : "<unknown>"; } 156 const std::string connection_state_name() const; 166 bool has_feature(const std::string& feature) const; 168 // Loads the transport's feature set from the given string. 169 void SetFeatures(const std::string& features_string) [all...] |
| /system/libvintf/include/vintf/ |
| HalGroup.h | 30 // Hal.getName() must return a string indicating the name. 38 bool addAllHals(HalGroup* other, std::string* error = nullptr) { 56 std::vector<const Hal*> getHals(const std::string& name) const { 69 std::vector<Hal*> getHals(const std::string& name) { 87 bool forEachInstanceOfPackage(const std::string& package, 101 const std::string& package, const Version& expectVersion, 107 bool forEachInstanceOfInterface(const std::string& package, const Version& expectVersion, 108 const std::string& interface, 122 std::vector<InstanceType> getFqInstances(const std::string& package, 124 const std::string& interface = "") const [all...] |
| /system/update_engine/ |
| omaha_request_action.h | 26 #include <string> 44 // Encodes XML entities in a given string. Input must be ASCII-7 valid. If 46 std::string XmlEncodeWithDefault(const std::string& input, 47 const std::string& default_value); 50 // values. The |input| string must be valid ASCII-7, no UTF-8 supported. 52 bool XmlEncode(const std::string& input, std::string* output); 162 static std::string StaticType() { return "OmahaRequestAction"; } 163 std::string Type() const override { return StaticType(); [all...] |
| /frameworks/av/services/camera/libcameraservice/api2/ |
| CameraDeviceClient.cpp | 88 ALOGI("CameraDeviceClient %s: Opened", cameraId.string()); 108 threadName = String8::format("CDU-%s-FrameProc", mCameraIdStr.string()); 109 mFrameProcessor->run(threadName.string()); 148 __FUNCTION__, mCameraIdStr.string()); 161 __FUNCTION__, mCameraIdStr.string(), streamSurfaceId.streamId(), 193 __FUNCTION__, mCameraIdStr.string()); 206 mCameraIdStr.string()); 209 mCameraIdStr.string()); 212 mCameraIdStr.string()); 218 mCameraIdStr.string()); [all...] |