Searched defs:home (Results 1 - 7 of 7) sorted by relevance
/openjdk7/jdk/src/windows/classes/com/sun/tools/jdi/ |
H A D | SunSDK.java | 36 * Returns the home directory of a Java 2 SDK if the current 39 static String home() { method in class:SunSDK 40 File jreHome = new File(System.getProperty("java.home"));
|
/openjdk7/jdk/src/solaris/bin/ |
H A D | java_md_common.c | 272 char *home; local 285 if ((home = getenv("HOME")) != NULL) { 286 path = (char *)JLI_MemAlloc(JLI_StrLen(home) + \ 288 sprintf(path, "%s%s:%s", home, user_dir, system_dir);
|
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/ |
H A D | ListHelper.java | 362 public void home() {} method in class:ListHelper
|
/openjdk7/hotspot/src/os/posix/launcher/ |
H A D | java_md.c | 1646 char *home; local 1659 if ((home = getenv("HOME")) != NULL) { 1660 path = (char *)JLI_MemAlloc(strlen(home) + strlen(system_dir) + 1662 path = strcat(strcat(strcat(strcpy(path, home),
|
/openjdk7/hotspot/src/share/tools/launcher/ |
H A D | java.c | 1538 * -Dapplication.home=<apphome> 1553 char home[MAXPATHLEN]; /* application home */ local 1569 if (!GetApplicationHome(home, sizeof(home))) { 1570 ReportErrorMessage("Can't determine application home", JNI_TRUE); 1574 /* 40 for '-Dapplication.home=' */ 1575 apphome = (char *)JLI_MemAlloc(strlen(home) + 40); 1576 sprintf(apphome, "-Dapplication.home=%s", home); [all...] |
/openjdk7/jdk/src/share/bin/ |
H A D | java.c | 1286 * -Dapplication.home=<apphome> 1300 char home[MAXPATHLEN]; /* application home */ local 1315 if (!GetApplicationHome(home, sizeof(home))) { 1320 /* 40 for '-Dapplication.home=' */ 1321 apphome = (char *)JLI_MemAlloc(JLI_StrLen(home) + 40); 1322 sprintf(apphome, "-Dapplication.home=%s", home); 1328 size += (int)JLI_StrLen(home) [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/ |
H A D | BasicTreeUI.java | 3022 * TreeHomeAction is used to handle end/home actions. 3046 SHARED_ACTION.home(tree, BasicTreeUI.this, direction, 4082 home(tree, ui, -1, false, true); 4085 home(tree, ui, -1, false, false); 4088 home(tree, ui, -1, true, true); 4091 home(tree, ui, 1, false, true); 4094 home(tree, ui, 1, false, false); 4097 home(tree, ui, 1, true, true); 4521 private void home(JTree tree, final BasicTreeUI ui, int direction, method in class:BasicTreeUI.Actions
|
Completed in 128 milliseconds