/toolchain/binutils/binutils-2.25/gold/testsuite/ |
binary_unittest.cc | 78 struct stat st; local 79 CHECK(::stat(gold::program_name, &st) == 0); 82 unsigned char* filedata = new unsigned char[st.st_size]; 83 CHECK(read_all(o, filedata, st.st_size) == static_cast<ssize_t>(st.st_size)); 106 CHECK(len == convert_to_section_size_type(st.st_size)); 134 CHECK(static_cast<off_t>(value) == st.st_size); 138 CHECK(static_cast<off_t>(value) == st.st_size);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
SimpleTimeZoneTest.java | 38 SimpleTimeZone st = new SimpleTimeZone(1000, "TEST"); local 39 assertEquals("Incorrect TZ constructed", "TEST", st.getID()); 40 assertTrue("Incorrect TZ constructed: " + "returned wrong offset", st 42 assertTrue("Incorrect TZ constructed" + "using daylight savings", !st 53 SimpleTimeZone st = new SimpleTimeZone(1000, "TEST", Calendar.NOVEMBER, local 56 assertTrue("Incorrect TZ constructed", st 59 assertTrue("Incorrect TZ constructed", !(st 62 assertEquals("Incorrect TZ constructed", "TEST", st.getID()); 63 assertEquals("Incorrect TZ constructed", 1000, st.getRawOffset()); 64 assertTrue("Incorrect TZ constructed", st.useDaylightTime()) 110 SimpleTimeZone st = new SimpleTimeZone(1000, "TEST", Calendar.NOVEMBER, local 381 SimpleTimeZone st = new SimpleTimeZone(1000, "TEST", Calendar.NOVEMBER, local 441 SimpleTimeZone st = new SimpleTimeZone(1000, "Test_TZ"); local 462 SimpleTimeZone st = new SimpleTimeZone(1000, "Test_TZ"); local 501 SimpleTimeZone st = new SimpleTimeZone(1000, "Test_TZ"); local 549 SimpleTimeZone st = new SimpleTimeZone(1000, "Test_TZ"); local 617 SimpleTimeZone st = new SimpleTimeZone(1000, "Test_TZ"); local 658 SimpleTimeZone st = new SimpleTimeZone(1000, "Test_TZ"); local 707 SimpleTimeZone st = new SimpleTimeZone(TimeZone.getTimeZone("EST").getRawOffset(), "EST"); local 760 SimpleTimeZone st = new SimpleTimeZone(1000, "Test_TZ"); local 790 SimpleTimeZone st = new SimpleTimeZone(1000, "Test_TZ"); local [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
OldThreadTest.java | 51 st = new Thread(tg, new SimpleThread(1), "SimpleThread3", 1); 52 assertTrue("Constructed incorrect thread", (st.getThreadGroup() == tg) 53 && st.getName().equals("SimpleThread3")); 54 st.start(); 56 st.join(); 137 st = new Thread(); 138 st.setContextClassLoader(pcl); 139 assertEquals(pcl, st.getContextClassLoader()); 141 st.setContextClassLoader(null); 142 assertNull(st.getContextClassLoader()) 459 Thread st, ct, spinner; field in class:OldThreadTest [all...] |
/build/tools/atree/ |
fs.cpp | 24 struct stat st; local 25 err = stat(path.c_str(), &st); 26 return err != 0 || S_ISDIR(st.st_mode); 113 struct stat st; local 114 err = stat(p.c_str(), &st); 123 else if (!S_ISDIR(st.st_mode)) {
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
GrammarInsufficientPredicatesMessage.java | 34 import org.stringtemplate.v4.ST; 61 ST st = getMessageTemplate(); local 62 // convert to string key to avoid 3.1 ST bug 78 st.add("altToLocations", altToLocationsWithStringKey); 82 st.add("upon", input); 84 st.add("hasPredicateBlockedByAction", problemState.dfa.hasPredicateBlockedByAction); 86 return super.toString(st);
|
GrammarNonDeterminismMessage.java | 34 import org.stringtemplate.v4.ST; 68 ST st = getMessageTemplate(); local 72 st.add("input", input); 85 st.add("disabled", tokenName); 89 st.add("disabled", probe.getDisabledAlternatives(problemState)); 109 st.addAggr("paths.{alt, states}", displayAltI, path); 116 st.add("conflictingTokens", tokenName); 119 st.add("conflictingAlts", displayAltI); 124 st.add("hasPredicateBlockedByAction", problemState.dfa.hasPredicateBlockedByAction) [all...] |
/external/cblas/src/ |
cblas_cgbmv.c | 41 float *x=(float *)X, *y=(float *)Y, *st=0, *tx=0; local 86 st= x+n; 90 st = x-2; 100 while (x != st); 120 st = y + n; 124 } while(y != st); 158 while (y != st);
|
cblas_cgemv.c | 38 float *x=(float *)X, *y=(float *)Y, *st=0, *tx=0; local 85 st= x+n; 89 st = x-2; 100 while (x != st); 116 st = y + n; 120 } while(y != st); 154 while (y != st);
|
cblas_chbmv.c | 37 float *x=(float *)X, *y=(float *)Y, *st=0, *tx; local 77 st= x+n; 81 st = x-2; 92 while (x != st); 110 st = y + n; 114 } while(y != st); 153 while (y != st);
|
cblas_chemv.c | 36 float *x=(float *)X, *y=(float *)Y, *st=0, *tx; local 77 st= x+n; 81 st = x-2; 92 while (x != st); 110 st = y + n; 114 } while(y != st); 154 while (y != st);
|
cblas_chpmv.c | 35 float *x=(float *)X, *y=(float *)Y, *st=0, *tx; local 75 st= x+n; 79 st = x-2; 90 while (x != st); 108 st = y + n; 112 } while(y != st); 153 while (y != st);
|
cblas_zgbmv.c | 41 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local 86 st= x+n; 90 st = x-2; 100 while (x != st); 120 st = y + n; 124 } while(y != st); 158 while (y != st);
|
cblas_zgemv.c | 38 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local 84 st= x+n; 88 st = x-2; 99 while (x != st); 119 st = y + n; 123 } while(y != st); 156 while (y != st);
|
cblas_zhbmv.c | 37 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local 77 st= x+n; 81 st = x-2; 92 while (x != st); 110 st = y + n; 114 } while(y != st); 153 while (y != st);
|
cblas_zhemv.c | 36 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local 77 st= x+n; 81 st = x-2; 92 while (x != st); 110 st = y + n; 114 } while(y != st); 154 while (y != st);
|
cblas_zhpmv.c | 35 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local 75 st= x+n; 79 st = x-2; 90 while (x != st); 108 st = y + n; 112 } while(y != st); 153 while (y != st);
|
/external/dbus/dbus/ |
dbus-userdb-util.c | 81 DBusStat st; local 96 if (_dbus_stat(&f, &st, NULL) && (st.uid == uid))
|
/external/e2fsprogs/lib/blkid/ |
devno.c | 100 struct stat st; local 115 if (stat(path, &st) < 0) 118 if (S_ISBLK(st.st_mode) && st.st_rdev == devno) { 125 if (list && S_ISDIR(st.st_mode) && !lstat(path, &st) && 126 S_ISDIR(st.st_mode))
|
getsize.c | 139 struct stat st; local 150 if (fstat(fd, &st) >= 0 && 151 (S_ISBLK(st.st_mode) || S_ISCHR(st.st_mode))) 152 part = st.st_rdev & 7; 163 struct stat64 st; local 164 if (fstat64(fd, &st) == 0) 166 struct stat st; 167 if (fstat(fd, &st) == 0) 169 if (S_ISREG(st.st_mode) [all...] |
/external/e2fsprogs/lib/ext2fs/ |
finddev.c | 85 struct stat st; local 99 if (stat(path, &st) < 0) 101 if (S_ISDIR(st.st_mode)) 103 if (S_ISBLK(st.st_mode) && st.st_rdev == device) {
|
/external/e2fsprogs/misc/ |
lsattr.c | 111 STRUCT_STAT st; local 114 if (LSTAT (name, &st) == -1) { 119 if (S_ISDIR(st.st_mode) && !dirs_opt) 130 STRUCT_STAT st; local 140 if (LSTAT (path, &st) == -1) 145 if (S_ISDIR(st.st_mode) && recursive &&
|
/external/e2fsprogs/tests/progs/ |
random_exercise.c | 61 struct stat st; local 63 if (fstat(fd, &st) < 0) { 67 return st.st_ino;
|
/external/elfutils/src/ |
ranlib.c | 161 struct stat st; local 162 if (fstat (fd, &st) != 0) 275 || copy_content (arelf, newfd, rest_off, st.st_size - rest_off) 278 || fchmod (newfd, st.st_mode & ALLPERMS) != 0 280 || (({asm ("" :: "r" (fchown (newfd, st.st_uid, st.st_gid))); }),
|
/external/f2fs-tools/tools/ |
fibmap.c | 33 void print_stat(struct stat64 *st) 36 printf("dev [%d:%d]\n", major(st->st_dev), minor(st->st_dev)); 38 st->st_ino, st->st_ino); 39 printf("mode [0x%8x : %d]\n", st->st_mode, st->st_mode); 40 printf("nlink [0x%8lx : %ld]\n", st->st_nlink, st->st_nlink); 41 printf("uid [0x%8x : %d]\n", st->st_uid, st->st_uid) 92 struct stat64 st; local [all...] |
/external/google-breakpad/src/common/linux/ |
elf_core_dump_unittest.cc | 150 struct stat st; local 151 if (stat(crash_generator.GetCoreFilePath().c_str(), &st) != 0) { 170 // 1st thread CORE NT_PRSTATUS 173 // 1st thread CORE NT_FPREGSET 174 // 1st thread LINUX NT_PRXFPREG 175 // 1st thread LINUX NT_386_TLS
|