HomeSort by relevance Sort by last modified time
    Searched full:currpath (Results 1 - 2 of 2) sorted by null

  /system/core/toolbox/
mkdir.c 37 char currpath[PATH_MAX], *pathpiece; local
45 strcpy(currpath, "");
50 strcat(currpath, "/");
53 if(strlen(currpath) + strlen(pathpiece) + 2/*NUL and slash*/ > PATH_MAX) {
57 strcat(currpath, pathpiece);
58 strcat(currpath, "/");
59 if(stat(currpath, &st) != 0) {
60 ret = mkdir(currpath, 0777);
62 fprintf(stderr, "mkdir failed for %s, %s\n", currpath, strerror(errno));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringInputPage.java 458 String currPath = mResFileCombo.getText();
459 Matcher m = mPathRegex.matcher(currPath);
463 currPath = m.group(1);
466 currPath = ""; //$NON-NLS-1$
477 if (newPath.equals(currPath) && newPath.equals(mLastFolderUsedInCombo)) {
506 currPath = newPath + leafName;
507 if (leafName.length() > 0 && !filePaths.contains(currPath)) {
508 filePaths.add(currPath);
523 index = mResFileCombo.indexOf(currPath);
530 mResFileCombo.setText(currPath);
    [all...]

Completed in 129 milliseconds