Searched defs:sub (Results 1 - 6 of 6) sorted by relevance

/system/libvintf/test/
H A DAssembleVintfTest.cpp27 static bool In(const std::string& sub, const std::string& str) { argument
28 return str.find(sub) != std::string::npos;
30 #define EXPECT_IN(sub, str) EXPECT_TRUE(In((sub), (str))) << (str);
H A Dvintf_object_tests.cpp37 static AssertionResult In(const std::string& sub, const std::string& str) { argument
38 return (str.find(sub) != std::string::npos ? AssertionSuccess() : AssertionFailure())
41 #define EXPECT_IN(sub, str) EXPECT_TRUE(In((sub), (str)))
42 #define EXPECT_NOT_IN(sub, str) EXPECT_FALSE(In((sub), (str)))
H A DLibVintfTest.cpp43 static bool In(const std::string& sub, const std::string& str) { argument
44 return str.find(sub) != std::string::npos;
46 #define EXPECT_IN(sub, str) EXPECT_TRUE(In((sub), (str))) << (str);
49 #define EXPECT_CONTAINS(str, sub) EXPECT_IN(sub, str);
/system/media/audio_utils/
H A Dtinysndfile.c299 int sub = info->format & SF_FORMAT_SUBMASK; local
304 (sub == SF_FORMAT_PCM_16 || sub == SF_FORMAT_PCM_U8 || sub == SF_FORMAT_FLOAT ||
305 sub == SF_FORMAT_PCM_24 || sub == SF_FORMAT_PCM_32)
320 if (sub == SF_FORMAT_FLOAT) {
332 switch (sub) {
358 if (sub == SF_FORMAT_FLOAT) {
/system/libvintf/
H A DAssembleVintf.cpp180 std::string sub = fname.substr(gConfigPrefix.size(), local
182 if (sub.empty()) {
185 for (size_t i = 0; i < sub.size(); ++i) {
186 if (sub[i] == '-') {
187 sub[i] = '_';
190 if (isalnum(sub[i])) {
191 sub[i] = toupper(sub[i]);
199 sub.insert(0, "CONFIG_");
200 return std::make_unique<KernelConfig>(std::move(sub), Tristat
[all...]
/system/bt/stack/include/
H A Davrc_defs.h451 /* player sub type */
944 tAVRC_MSG_SUB sub; /* SUBUNIT INFO message. */ member in union:__anon1048

Completed in 392 milliseconds