Searched refs:hint (Results 1 – 3 of 3) sorted by relevance
/system/update_engine/ |
D | pylintrc | 275 # Include a hint for the correct naming format with invalid-name 276 include-naming-hint=no 283 # Naming hint for function names 284 function-name-hint=[a-z_][a-z0-9_]{2,30}$ 289 # Naming hint for variable names 290 variable-name-hint=[a-z_][a-z0-9_]{2,30}$ 295 # Naming hint for constant names 296 const-name-hint=(([A-Z_][A-Z0-9_]*)|(__.*__))$ 301 # Naming hint for attribute names 302 attr-name-hint=[a-z_][a-z0-9_]{2,30}$ [all …]
|
/system/extras/mmap-perf/ |
D | mmapPerf.cpp | 57 …FileMap(const string &name, size_t size, Hint hint = FILE_MAP_HINT_NONE) : m_name{name}, m_size{si… in FileMap() argument 71 switch (hint) {
|
/system/core/adb/ |
D | commandline.cpp | 1287 static std::string find_product_out_path(const std::string& hint) { in find_product_out_path() argument 1288 if (hint.empty()) { in find_product_out_path() 1293 if (adb_is_absolute_host_path(hint.c_str())) { in find_product_out_path() 1294 return hint; in find_product_out_path() 1300 if (hint.find_first_of(OS_PATH_SEPARATORS) != std::string::npos) { // NOLINT in find_product_out_path() 1306 return android::base::StringPrintf("%s%c%s", cwd.c_str(), OS_PATH_SEPARATOR, hint.c_str()); in find_product_out_path() 1327 path += hint; in find_product_out_path() 1330 "\"%s\" doesn't exist\n", hint.c_str(), path.c_str()); in find_product_out_path()
|