Home
last modified time | relevance | path

Searched refs:underscore (Results 1 – 6 of 6) sorted by relevance

/system/tools/hidl/lint/lints/
DmethodVersions.cpp36 size_t underscore = method.name().find('_'); in getSanitizedMethodName() local
37 return (underscore == std::string::npos) ? method.name() : method.name().substr(0, underscore); in getSanitizedMethodName()
41 size_t underscore = method.name().find('_'); in checkMethodVersion() local
42 CHECK(underscore != std::string::npos); // only called on versionedMethods in checkMethodVersion()
44 std::string version = method.name().substr(underscore + 1); // don't include _ in checkMethodVersion()
45 std::string nameWithoutVersion = method.name().substr(0, underscore); in checkMethodVersion()
46 underscore = version.find('_'); in checkMethodVersion()
60 if (underscore == std::string::npos) { in checkMethodVersion()
66 if (!base::ParseUint(version.substr(0, underscore), &major)) { in checkMethodVersion()
73 if (!base::ParseUint(version.substr(underscore + 1), &minor)) { in checkMethodVersion()
/system/tools/hidl/hidl2aidl/
DAidlInterface.cpp86 size_t underscore = name.find('_'); in pushVersionedMethodOntoMap() local
87 if (underscore != std::string::npos) { in pushVersionedMethodOntoMap()
88 std::string version = name.substr(underscore + 1); // don't include _ in pushVersionedMethodOntoMap()
89 std::string nameWithoutVersion = name.substr(0, underscore); in pushVersionedMethodOntoMap()
90 underscore = version.find('_'); in pushVersionedMethodOntoMap()
93 if (underscore != std::string::npos && in pushVersionedMethodOntoMap()
94 base::ParseUint(version.substr(0, underscore), &major) && in pushVersionedMethodOntoMap()
95 base::ParseUint(version.substr(underscore + 1), &minor)) { in pushVersionedMethodOntoMap()
/system/chre/host/msm/daemon/idl/
Dchre_slpi.idl22 * generated sources, with an underscore separating them.
/system/update_engine/
Dpylintrc330 # leading underscore is sanctioned for private modules by Google's style
370 # with leading underscore
/system/chre/doc/
Dframework_build.md69 should be separated by a hyphen and not an underscore.
/system/tools/mkbootimg/
Dpylintrc309 # with leading underscore