HomeSort by relevance Sort by last modified time
    Searched refs:OS_PATH_SEPARATOR (Results 1 - 25 of 27) sorted by null

1 2

  /system/tools/aidl/
os.h 21 #define OS_PATH_SEPARATOR '\\'
23 #define OS_PATH_SEPARATOR '/'
import_resolver.cpp 40 if (path[path.size() - 1] != OS_PATH_SEPARATOR) {
41 path += OS_PATH_SEPARATOR;
53 c = OS_PATH_SEPARATOR;
io_delegate.cpp 64 if (path[0] == OS_PATH_SEPARATOR) {
77 *absolute_path += OS_PATH_SEPARATOR;
128 if (base_dir[base_dir.size() - 1] != OS_PATH_SEPARATOR) {
129 base_dir += OS_PATH_SEPARATOR;
159 auto directories = Split(absolute_path, string{1u, OS_PATH_SEPARATOR});
aidl.cpp 94 expected[i] = OS_PATH_SEPARATOR;
109 if (OS_PATH_SEPARATOR != '/') {
114 if (*c == '/') *c = OS_PATH_SEPARATOR;
349 result += OS_PATH_SEPARATOR;
355 packageStr[i] = OS_PATH_SEPARATOR;
362 result += OS_PATH_SEPARATOR;
generate_cpp_unittest.cpp     [all...]
  /frameworks/compile/slang/
os_sep.h 22 #define OS_PATH_SEPARATOR '\\'
28 #define OS_PATH_SEPARATOR '/'
slang_rs_reflect_utils.cpp 39 if (*slash == OS_PATH_SEPARATOR) {
55 (packaged_path[packaged_path.length() - 1] != OS_PATH_SEPARATOR)) {
62 packaged_path[s] = OS_PATH_SEPARATOR;
73 if (*slash == OS_PATH_SEPARATOR) {
298 if (fullPath[fullPath.length() - 1] != OS_PATH_SEPARATOR) {
299 fullPath += OS_PATH_SEPARATOR;
301 if (path2[0] == OS_PATH_SEPARATOR) {
llvm-rs-cc.cpp 80 (OutputFile[OutputFile.size() - 1]) != OS_PATH_SEPARATOR)
81 OutputFile.append(1, OS_PATH_SEPARATOR);
85 OutputFile.append(1, OS_PATH_SEPARATOR);
  /system/core/libutils/include/utils/
Compat.h 82 #define OS_PATH_SEPARATOR '\\'
84 #define OS_PATH_SEPARATOR '/'
  /system/core/base/
test_utils.cpp 29 #define OS_PATH_SEPARATOR '\\'
31 #define OS_PATH_SEPARATOR '/'
106 OS_PATH_SEPARATOR);
120 OS_PATH_SEPARATOR);
  /system/core/libutils/
String8.cpp 40 // to OS_PATH_SEPARATOR.
525 if (len > 0 && buf[len-1] == OS_PATH_SEPARATOR)
538 cp = strrchr(buf, OS_PATH_SEPARATOR);
550 cp = strrchr(str, OS_PATH_SEPARATOR);
563 cp = strchr(buf, OS_PATH_SEPARATOR);
567 cp = strchr(buf, OS_PATH_SEPARATOR);
593 lastSlash = strrchr(str, OS_PATH_SEPARATOR);
634 if (name[0] != OS_PATH_SEPARATOR) {
653 if (buf[len-1] != OS_PATH_SEPARATOR)
654 buf[len++] = OS_PATH_SEPARATOR;
    [all...]
  /frameworks/base/tools/aapt/
CrunchCache.cpp 50 if (rPathPtr[0] == OS_PATH_SEPARATOR)
Main.cpp 48 if (path != NULL && OS_PATH_SEPARATOR != '/') {
51 *path = OS_PATH_SEPARATOR;
    [all...]
  /system/core/adb/
adb_utils_test.cpp 39 str += OS_PATH_SEPARATOR;
console.cpp 36 auth_token_path += OS_PATH_SEPARATOR;
bugreport_test.cpp 183 android::base::StringPrintf("%s%cda_bugreport.zip", cwd_.c_str(), OS_PATH_SEPARATOR);
200 android::base::StringPrintf("%s%cda_bugreport.zip", cwd_.c_str(), OS_PATH_SEPARATOR);
340 android::base::StringPrintf("%s%cda_bugreport.zip", td.path, OS_PATH_SEPARATOR);
373 android::base::StringPrintf("%s%cda_bugreport.zip", td.path, OS_PATH_SEPARATOR);
adb_auth_host.cpp 240 result |= read_key_file((path + OS_PATH_SEPARATOR + name));
250 return adb_get_android_dir_path() + OS_PATH_SEPARATOR + "adbkey";
sysdeps.h 80 #define OS_PATH_SEPARATOR '\\'
357 #define OS_PATH_SEPARATOR '/'
adb_utils.cpp 111 // - Uses dirname, so does not need to deal with OS_PATH_SEPARATOR.
265 std::string android_dir = user_dir + OS_PATH_SEPARATOR + ".android";
bugreport.cpp 100 OS_PATH_SEPARATOR, dest_file_.c_str());
file_sync_service.cpp 82 if (partial_path.back() != OS_PATH_SEPARATOR) partial_path += OS_PATH_SEPARATOR;
  /frameworks/rs/
rsCppUtils.h 51 #define OS_PATH_SEPARATOR '\\'
53 #define OS_PATH_SEPARATOR '/'
rsScriptC.cpp 32 #define OS_PATH_SEPARATOR '\\'
38 #define OS_PATH_SEPARATOR '/'
  /system/tools/aidl/tests/
fake_io_delegate.cpp 160 clean_path[1] == OS_PATH_SEPARATOR) {
test_util.cpp 42 c = OS_PATH_SEPARATOR;

Completed in 159 milliseconds

1 2