HomeSort by relevance Sort by last modified time
    Searched defs:st1 (Results 1 - 10 of 10) sorted by null

  /libcore/luni/src/test/java/tests/api/java/util/
SimpleTimeZoneTest.java 34 SimpleTimeZone st1; field in class:SimpleTimeZoneTest
280 SimpleTimeZone st1 = new SimpleTimeZone(1000, "TEST", local
284 assertTrue("Clone resulted in same reference", st1.clone() != st1);
285 assertTrue("Clone resulted in unequal object", ((SimpleTimeZone) st1
286 .clone()).equals(st1));
305 st1 = new SimpleTimeZone(tz.getRawOffset(), "EST");
307 assertFalse(st1.equals(st2));
308 st1.setRawOffset(st2.getRawOffset());
309 assertTrue(st1.equals(st2))
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
canittst.cpp 246 UnicodeString **st1 = (UnicodeString **)s1; local
249 return (*st1)->compare(**st2);
  /external/icu4c/test/intltest/
canittst.cpp 250 UnicodeString **st1 = (UnicodeString **)s1; local
253 return (*st1)->compare(**st2);
  /libcore/luni/src/test/java/tests/sql/
ResultSetMetaDataTest.java 312 Statement st1 = null; local
320 st1 = conn.createStatement();
321 st1.executeUpdate(create);
322 st1.executeUpdate(insert1);
323 st1.executeUpdate(insert2);
325 rs1 = st1.executeQuery(query);
335 if (st1 != null) {
336 st1.executeUpdate("drop table if exists hutch");
337 st1.close();
ConnectionTest.java 1243 Statement st1 = null; local
1651 Statement st1 = null; local
1731 Statement st1 = null; local
    [all...]
  /external/chromium/third_party/icu/source/common/
ucnv_ext.c 1016 int32_t st1, stage1Length, st2, st3, minLength; local
    [all...]
ucnvmbcs.c 648 uint16_t st1, maxStage1, st2; local
682 for(st1=0; st1<maxStage1; ++st1) {
683 st2=table[st1];
728 for(st1=0; st1<maxStage1; ++st1) {
729 st2=table[st1];
1301 int32_t st1, st2, st3, i; local
    [all...]
  /external/icu4c/common/
ucnv_ext.c 1016 int32_t st1, stage1Length, st2, st3, minLength; local
    [all...]
ucnvmbcs.c 718 uint16_t st1, maxStage1, st2; local
752 for(st1=0; st1<maxStage1; ++st1) {
753 st2=table[st1];
798 for(st1=0; st1<maxStage1; ++st1) {
799 st2=table[st1];
1371 int32_t st1, st2, st3, i; local
    [all...]
  /system/core/sh/
jobs.c 411 int st1 = ps->status; local
412 if (st1 != st)
415 if (st1 == -1 || !(mode & SHOW_SIGNALLED) || WIFEXITED(st1))
417 if (WIFSTOPPED(st1) || ((st1 = WTERMSIG(st1) & 0x7f)
418 && st1 != SIGINT && st1 != SIGPIPE))

Completed in 216 milliseconds