Home
last modified time | relevance | path

Searched refs:String8 (Results 1 – 25 of 394) sorted by relevance

12345678910>>...16

/dports/devel/android-tools-fastboot/platform_system_core-platform-tools-29.0.5/libutils/include/utils/
H A DString8.h39 class String8
52 String8(const String8& o);
183 String8 walkPath(String8* outRemains = nullptr) const;
257 inline const String8 String8::empty() { in empty()
270 inline std::string String8::std_string(const String8& str) in std_string()
295 inline String8& String8::operator=(const String8& other)
301 inline String8& String8::operator=(const char* other)
307 inline String8& String8::operator+=(const String8& other)
313 inline String8 String8::operator+(const String8& other) const
320 inline String8& String8::operator+=(const char* other)
[all …]
H A DPropertyMap.h60 void addProperty(const String8& key, const String8& value);
63 bool hasProperty(const String8& key) const;
69 bool tryGetProperty(const String8& key, String8& outValue) const;
70 bool tryGetProperty(const String8& key, bool& outValue) const;
71 bool tryGetProperty(const String8& key, int32_t& outValue) const;
72 bool tryGetProperty(const String8& key, float& outValue) const;
78 inline const KeyedVector<String8, String8>& getProperties() const { return mProperties; } in getProperties()
81 static status_t load(const String8& filename, PropertyMap** outMap);
97 status_t parseModifier(const String8& token, int32_t* outMetaState);
101 KeyedVector<String8, String8> mProperties;
H A DTokenizer.h31 Tokenizer(const String8& filename, FileMap* fileMap, char* buffer,
43 static status_t open(const String8& filename, Tokenizer** outTokenizer);
51 static status_t fromContents(const String8& filename,
67 inline String8 getFilename() const { return mFilename; } in getFilename()
78 String8 getLocation() const;
89 String8 peekRemainderOfLine() const;
104 String8 nextToken(const char* delimiters);
121 String8 mFilename;
/dports/devel/android-tools-adb/platform_system_core-android-9.0.0_r3/libutils/include/utils/
H A DString8.h39 class String8
52 String8(const String8& o);
190 String8 walkPath(String8* outRemains = NULL) const;
264 inline const String8 String8::empty() { in empty()
277 inline std::string String8::std_string(const String8& str) in std_string()
302 inline String8& String8::operator=(const String8& other)
308 inline String8& String8::operator=(const char* other)
314 inline String8& String8::operator+=(const String8& other)
320 inline String8 String8::operator+(const String8& other) const
327 inline String8& String8::operator+=(const char* other)
[all …]
H A DPropertyMap.h60 void addProperty(const String8& key, const String8& value);
63 bool hasProperty(const String8& key) const;
69 bool tryGetProperty(const String8& key, String8& outValue) const;
70 bool tryGetProperty(const String8& key, bool& outValue) const;
71 bool tryGetProperty(const String8& key, int32_t& outValue) const;
72 bool tryGetProperty(const String8& key, float& outValue) const;
78 inline const KeyedVector<String8, String8>& getProperties() const { return mProperties; } in getProperties()
81 static status_t load(const String8& filename, PropertyMap** outMap);
97 status_t parseModifier(const String8& token, int32_t* outMetaState);
101 KeyedVector<String8, String8> mProperties;
H A DTokenizer.h31 Tokenizer(const String8& filename, FileMap* fileMap, char* buffer,
43 static status_t open(const String8& filename, Tokenizer** outTokenizer);
51 static status_t fromContents(const String8& filename,
67 inline String8 getFilename() const { return mFilename; } in getFilename()
78 String8 getLocation() const;
89 String8 peekRemainderOfLine() const;
104 String8 nextToken(const char* delimiters);
121 String8 mFilename;
/dports/www/firefox-legacy/firefox-52.8.0esr/media/omx-plugin/include/ics/utils/
H A DString8.h36 class String8
40 String8(const String8& o);
165 String8 walkPath(String8* outRemains = NULL) const;
237 inline const String8 String8::empty() { in empty()
271 inline String8& String8::operator=(const String8& other)
277 inline String8& String8::operator=(const char* other)
283 inline String8& String8::operator+=(const String8& other)
289 inline String8 String8::operator+(const String8& other) const
296 inline String8& String8::operator+=(const char* other)
302 inline String8 String8::operator+(const char* other) const
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/media/libstagefright/system/core/include/utils/
H A DString8.h41 class String8
54 String8(const String8& o);
179 String8 walkPath(String8* outRemains = NULL) const;
253 inline const String8 String8::empty() { in empty()
287 inline String8& String8::operator=(const String8& other)
293 inline String8& String8::operator=(const char* other)
299 inline String8& String8::operator+=(const String8& other)
305 inline String8 String8::operator+(const String8& other) const
312 inline String8& String8::operator+=(const char* other)
318 inline String8 String8::operator+(const char* other) const
[all …]
/dports/devel/android-tools-fastboot/platform_system_core-platform-tools-29.0.5/libutils/
H A DString8.cpp123 String8::String8() in String8() function in android::String8
128 String8::String8(StaticLinkage) in String8() function in android::String8
141 String8::String8(const String8& o) in String8() function in android::String8
147 String8::String8(const char* o) in String8() function in android::String8
163 String8::String8(const String16& o) in String8() function in android::String8
168 String8::String8(const char16_t* o) in String8() function in android::String8
178 String8::String8(const char32_t* o) in String8() function in android::String8
188 String8::~String8() in ~String8()
221 void String8::setTo(const String8& other) in setTo()
518 String8 String8::walkPath(String8* outRemains) const in walkPath()
[all …]
H A DString8_test.cpp36 String8 tmp("Hello, world!"); in TEST_F()
42 String8 src1("Hello, "); in TEST_F()
46 String8 dst1 = src1 + ccsrc2; in TEST_F()
52 String8 ssrc2("world!"); in TEST_F()
53 String8 dst2 = src1 + ssrc2; in TEST_F()
60 String8 src1("My voice"); in TEST_F()
63 String8 src2(" is my passport."); in TEST_F()
78 EXPECT_EQ(NO_MEMORY, String8("").setTo(in, SIZE_MAX)); in TEST_F()
86 String8 string8(string16); in TEST_F()
95 String8 string8(string32); in TEST_F()
/dports/www/firefox-legacy/firefox-52.8.0esr/media/libstagefright/system/core/libutils/
H A DString8.cpp140 String8::String8() in String8() function in stagefright::String8
149 String8::String8(const String8& o) in String8() function in stagefright::String8
155 String8::String8(const char* o) in String8() function in stagefright::String8
171 String8::String8(const String16& o) in String8() function in stagefright::String8
176 String8::String8(const char16_t* o) in String8() function in stagefright::String8
186 String8::String8(const char32_t* o) in String8() function in stagefright::String8
196 String8::~String8() in ~String8()
224 void String8::setTo(const String8& other) in setTo()
504 String8 String8::getPathDir(void) const
516 String8 String8::walkPath(String8* outRemains) const
[all …]
/dports/devel/android-tools-adb/platform_system_core-android-9.0.0_r3/libutils/
H A DString8.cpp147 String8::String8() in String8() function in android::String8
152 String8::String8(StaticLinkage) in String8() function in android::String8
165 String8::String8(const String8& o) in String8() function in android::String8
171 String8::String8(const char* o) in String8() function in android::String8
187 String8::String8(const String16& o) in String8() function in android::String8
192 String8::String8(const char16_t* o) in String8() function in android::String8
202 String8::String8(const char32_t* o) in String8() function in android::String8
212 String8::~String8() in ~String8()
245 void String8::setTo(const String8& other) in setTo()
557 String8 String8::walkPath(String8* outRemains) const in walkPath()
[all …]
H A DPropertyMap.cpp46 void PropertyMap::addProperty(const String8& key, const String8& value) { in addProperty()
50 bool PropertyMap::hasProperty(const String8& key) const { in hasProperty()
54 bool PropertyMap::tryGetProperty(const String8& key, String8& outValue) const { in tryGetProperty()
64 bool PropertyMap::tryGetProperty(const String8& key, bool& outValue) const { in tryGetProperty()
74 bool PropertyMap::tryGetProperty(const String8& key, int32_t& outValue) const { in tryGetProperty()
75 String8 stringValue; in tryGetProperty()
91 bool PropertyMap::tryGetProperty(const String8& key, float& outValue) const { in tryGetProperty()
92 String8 stringValue; in tryGetProperty()
114 status_t PropertyMap::load(const String8& filename, PropertyMap** outMap) { in load()
169 String8 keyToken = mTokenizer->nextToken(WHITESPACE_OR_PROPERTY_DELIMITER); in parse()
[all …]
/dports/graphics/libfpx/libfpx-1.3.1-10/ole/
H A Dstr8_16.h80 class String8 {
83 String8(const char *p8);
84 String8(const wchar_t *p16);
87 ~String8(void);
99 String8(const String8&);
100 String8& operator=(const String8&);
104 inline String8::String8(const char *p8) in String8() function
111 inline String8::operator const char * (void) const
118 inline String8::String8(const wchar_t *p16) in String8() function
134 inline String8::~String8(void) { in ~String8()
[all …]
/dports/devel/android-tools-fastboot/platform_system_core-platform-tools-29.0.5/healthd/include/healthd/
H A Dhealthd.h60 android::String8 batteryStatusPath;
61 android::String8 batteryHealthPath;
62 android::String8 batteryPresentPath;
63 android::String8 batteryCapacityPath;
64 android::String8 batteryVoltagePath;
65 android::String8 batteryTemperaturePath;
66 android::String8 batteryTechnologyPath;
67 android::String8 batteryCurrentNowPath;
68 android::String8 batteryCurrentAvgPath;
70 android::String8 batteryFullChargePath;
[all …]
/dports/devel/android-tools-adb/platform_system_core-android-9.0.0_r3/healthd/include/healthd/
H A Dhealthd.h58 android::String8 batteryStatusPath;
59 android::String8 batteryHealthPath;
60 android::String8 batteryPresentPath;
61 android::String8 batteryCapacityPath;
62 android::String8 batteryVoltagePath;
63 android::String8 batteryTemperaturePath;
64 android::String8 batteryTechnologyPath;
65 android::String8 batteryCurrentNowPath;
66 android::String8 batteryCurrentAvgPath;
68 android::String8 batteryFullChargePath;
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/media/omx-plugin/include/ics/drm/
H A DDrmManagerClient.h183 bool validateAction(const String8& path, int action, const ActionDescription& description);
211 DrmConstraints* getConstraints(const String8* path, const int action);
222 DrmMetadata* getMetadata(const String8* path);
232 bool canHandle(const String8& path, const String8& mimeType);
264 const DrmRights& drmRights, const String8& rightsPath, const String8& contentPath);
273 String8 getOriginalMimeType(const String8& path);
285 int getDrmObjectType(const String8& path, const String8& mimeType);
295 int checkRightsStatus(const String8& path, int action);
304 status_t removeRights(const String8& path);
325 int openConvertSession(const String8& mimeType);
/dports/devel/android-tools-adb/platform_system_core-android-9.0.0_r3/libutils/tests/
H A DString8_test.cpp36 String8 tmp("Hello, world!"); in TEST_F()
42 String8 src1("Hello, "); in TEST_F()
46 String8 dst1 = src1 + ccsrc2; in TEST_F()
52 String8 ssrc2("world!"); in TEST_F()
53 String8 dst2 = src1 + ssrc2; in TEST_F()
60 String8 src1("My voice"); in TEST_F()
63 String8 src2(" is my passport."); in TEST_F()
78 EXPECT_EQ(NO_MEMORY, String8("").setTo(in, SIZE_MAX)); in TEST_F()
86 String8 string8(string16); in TEST_F()
95 String8 string8(string32); in TEST_F()
/dports/www/firefox-legacy/firefox-52.8.0esr/widget/gonk/libui/
H A DInputDevice.h34 String8 name;
35 String8 location;
36 String8 uniqueId;
48 String8 descriptor;
71 const String8& alias, bool isExternal);
76 inline const String8& getAlias() const { return mAlias; } in getAlias()
77 inline const String8& getDisplayName() const { in getDisplayName()
112 String8 mAlias;
138 extern String8 getInputDeviceConfigurationFilePathByDeviceIdentifier(
151 extern String8 getInputDeviceConfigurationFilePathByName(
[all …]
H A DInputDevice.cpp43 static void appendInputDeviceConfigurationFileRelativePath(String8& path,
44 const String8& name, InputDeviceConfigurationFileType type) {
56 String8 getInputDeviceConfigurationFilePathByDeviceIdentifier(
62 String8 versionPath(getInputDeviceConfigurationFilePathByName(
73 String8 productPath(getInputDeviceConfigurationFilePathByName(
74 String8::format("Vendor_%04x_Product_%04x",
86 String8 getInputDeviceConfigurationFilePathByName(
87 const String8& name, InputDeviceConfigurationFileType type) {
89 String8 path;
123 return String8();
[all …]
H A DTokenizer.h31 Tokenizer(const String8& filename, FileMap* fileMap, char* buffer,
43 static status_t open(const String8& filename, Tokenizer** outTokenizer);
51 static status_t fromContents(const String8& filename,
67 inline String8 getFilename() const { return mFilename; } in getFilename()
78 String8 getLocation() const;
89 String8 peekRemainderOfLine() const;
104 String8 nextToken(const char* delimiters);
121 String8 mFilename;
/dports/net/hostapd-devel/hostap-14ab4a816/wpa_supplicant/binder/
H A Dsupplicant.cpp27 android::String8("Ifname missing in params.")); in CreateInterface()
38 wpa_global_, android::String8(ifname).string()) != NULL) in CreateInterface()
41 android::String8("wpa_supplicant already controls this " in CreateInterface()
49 iface.driver = os_strdup(android::String8(driver).string()); in CreateInterface()
50 iface.ifname = os_strdup(android::String8(ifname).string()); in CreateInterface()
53 os_strdup(android::String8(bridge_ifname).string()); in CreateInterface()
61 android::String8( in CreateInterface()
72 android::String8("wpa_supplicant encountered a " in CreateInterface()
97 android::String8( in RemoveInterface()
112 android::String8( in GetInterface()
[all …]
/dports/security/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/binder/
H A Dsupplicant.cpp27 android::String8("Ifname missing in params.")); in CreateInterface()
38 wpa_global_, android::String8(ifname).string()) != NULL) in CreateInterface()
41 android::String8("wpa_supplicant already controls this " in CreateInterface()
49 iface.driver = os_strdup(android::String8(driver).string()); in CreateInterface()
50 iface.ifname = os_strdup(android::String8(ifname).string()); in CreateInterface()
53 os_strdup(android::String8(bridge_ifname).string()); in CreateInterface()
61 android::String8( in CreateInterface()
72 android::String8("wpa_supplicant encountered a " in CreateInterface()
97 android::String8( in RemoveInterface()
112 android::String8( in GetInterface()
[all …]
/dports/security/wpa_supplicant-devel/hostap-14ab4a816/wpa_supplicant/binder/
H A Dsupplicant.cpp27 android::String8("Ifname missing in params.")); in CreateInterface()
38 wpa_global_, android::String8(ifname).string()) != NULL) in CreateInterface()
41 android::String8("wpa_supplicant already controls this " in CreateInterface()
49 iface.driver = os_strdup(android::String8(driver).string()); in CreateInterface()
50 iface.ifname = os_strdup(android::String8(ifname).string()); in CreateInterface()
53 os_strdup(android::String8(bridge_ifname).string()); in CreateInterface()
61 android::String8( in CreateInterface()
72 android::String8("wpa_supplicant encountered a " in CreateInterface()
97 android::String8( in RemoveInterface()
112 android::String8( in GetInterface()
[all …]
/dports/net/wpa_supplicant_gui/wpa_supplicant-2.9/wpa_supplicant/binder/
H A Dsupplicant.cpp27 android::String8("Ifname missing in params.")); in CreateInterface()
38 wpa_global_, android::String8(ifname).string()) != NULL) in CreateInterface()
41 android::String8("wpa_supplicant already controls this " in CreateInterface()
49 iface.driver = os_strdup(android::String8(driver).string()); in CreateInterface()
50 iface.ifname = os_strdup(android::String8(ifname).string()); in CreateInterface()
53 os_strdup(android::String8(bridge_ifname).string()); in CreateInterface()
61 android::String8( in CreateInterface()
72 android::String8("wpa_supplicant encountered a " in CreateInterface()
97 android::String8( in RemoveInterface()
112 android::String8( in GetInterface()
[all …]

12345678910>>...16