Searched defs:tm (Results 1 - 25 of 263) sorted by path

1234567891011

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DTrustManagerImplTest.java77 TrustManagerImpl tm = new TrustManagerImpl(ks);
78 assertEquals(0, tm.getAcceptedIssuers().length);
79 checkTrustManager(tm);
85 TrustManagerImpl tm = new TrustManagerImpl(ks);
86 assertEquals(1, tm.getAcceptedIssuers().length);
87 checkTrustManager(tm);
90 private void checkTrustManager(TrustManagerImpl tm) throws Exception { argument
92 tm.checkClientTrusted(null, "RSA");
98 tm.checkClientTrusted(new X509Certificate[0], "RSA");
104 tm
[all...]
/external/apache-harmony/x-net/src/test/java/javax/net/ssl/
H A DMySSLContextSpi.java37 protected void engineInit(KeyManager[] km, TrustManager[] tm, argument
/external/apache-harmony/x-net/src/test/support/common/java/org/apache/harmony/xnet/tests/support/
H A DMySSLContextSpi.java45 protected void engineInit(KeyManager[] km, TrustManager[] tm, argument
/external/blktrace/
H A Dblkparse_fmt.c87 struct tm *tm; local
98 tm = localtime(&sec);
101 tm->tm_hour,
102 tm->tm_min,
103 tm->tm_sec,
/external/blktrace/btt/
H A Dtrace_complete.c23 static inline void __out(FILE *ofp, __u64 tm, enum iop_type type, argument
26 if (tm != (__u64)-1) {
30 (int)SECONDS(tm), (unsigned long)NANO_SECONDS(tm),
/external/bluetooth/bluedroid/bta/dm/
H A Dbta_dm_int.h425 tBTA_SERVICE_MASK tm; member in struct:__anon498
/external/bluetooth/bluedroid/main/
H A Dbte_logmsg.c231 struct tm *tm; local
236 tm = localtime(&t);
238 sprintf(buffer, "%02d:%02d:%02d.%03d ", tm->tm_hour, tm->tm_min, tm->tm_sec,
283 struct tm *tm; local
290 tm = localtime(&t);
292 sprintf(buffer, "%02d:%02d:%02d.%03ld ", tm
[all...]
/external/chromium_org/base/
H A Dos_compat_nacl.cc14 time_t timegm(struct tm* tm) { argument
20 ret = mktime(tm);
/external/chromium_org/base/third_party/nspr/
H A Dprtime.cc87 static void localtime_r(const time_t* secs, struct tm* time) {
97 * Cf. time_t mktime(struct tm *tp)
163 struct tm exp_tm = {0};
527 PRExplodedTime tm; local
528 PRExplodedTime *result = &tm;
1168 struct tm localTime;
1178 * To obtain time_t from a tm structure representing the local
/external/chromium_org/chrome/browser/chromeos/
H A Dboot_times_loader.cc284 TimeMarker tm = login_times[i]; local
285 base::TimeDelta since_first = tm.time() - first;
286 base::TimeDelta since_prev = tm.time() - prev;
289 if (tm.send_to_uma()) {
290 name = uma_prefix + tm.name();
299 name = tm.name();
307 prev = tm.time();
/external/chromium_org/content/common/
H A Dfont_cache_dispatcher_win.cc40 TEXTMETRIC tm; local
41 BOOL ret = GetTextMetrics(hdc, &tm);
/external/chromium_org/sync/protocol/
H A Dproto_value_conversions.cc88 base::StringValue* MakeTimestampValue(int64 tm) { argument
90 base::TimeFormatShortDateAndTime(syncer::ProtoTimeToTime(tm)));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumFontProviderWin.cpp98 TEXTMETRIC tm; local
99 GetTextMetrics(hdc, &tm);
101 size = tm.tmAscent;
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Da_gentm.c64 int asn1_generalizedtime_to_tm(struct tm *tm, const ASN1_GENERALIZEDTIME *d) argument
86 if (tm)
87 tm->tm_sec = 0;
99 if (tm)
104 tm->tm_year = n * 100 - 1900;
107 tm->tm_year += n;
110 tm->tm_mon = n - 1;
113 tm->tm_mday = n;
116 tm
[all...]
H A Da_time.c99 struct tm *ts;
100 struct tm data;
190 static int asn1_time_to_tm(struct tm *tm, const ASN1_TIME *t) argument
196 if (OPENSSL_gmtime(&now_t, tm))
202 return asn1_utctime_to_tm(tm, t);
204 return asn1_generalizedtime_to_tm(tm, t);
212 struct tm tm_from, tm_to;
H A Da_utctm.c99 int asn1_utctime_to_tm(struct tm *tm, const ASN1_UTCTIME *d) argument
118 if (tm)
119 tm->tm_sec = 0;
131 if (tm)
136 tm->tm_year = n < 50 ? n + 100 : n;
139 tm->tm_mon = n - 1;
142 tm->tm_mday = n;
145 tm->tm_hour = n;
148 tm
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/
H A Dtime_support.c66 struct tm *OPENSSL_gmtime(const time_t *time, struct tm *result) {
99 /* Convert tm structure and offset into julian day and seconds */
100 static int julian_adj(const struct tm *tm, int off_day, long offset_sec, argument
111 offset_hms += tm->tm_hour * 3600 + tm->tm_min * 60 + tm->tm_sec;
123 time_year = tm->tm_year + 1900;
124 time_month = tm
140 OPENSSL_gmtime_adj(struct tm *tm, int off_day, long offset_sec) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/x509/
H A Dt_x509.c359 int ASN1_TIME_print(BIO *bp, const ASN1_TIME *tm) argument
361 if(tm->type == V_ASN1_UTCTIME) return ASN1_UTCTIME_print(bp, tm);
362 if(tm->type == V_ASN1_GENERALIZEDTIME)
363 return ASN1_GENERALIZEDTIME_print(bp, tm);
374 int ASN1_GENERALIZEDTIME_print(BIO *bp, const ASN1_GENERALIZEDTIME *tm) argument
383 i=tm->length;
384 v=(char *)tm->data;
396 if (tm->length >= 14 &&
402 if (tm
422 ASN1_UTCTIME_print(BIO *bp, const ASN1_UTCTIME *tm) argument
[all...]
H A Dx509_set.c105 int X509_set_notBefore(X509 *x, const ASN1_TIME *tm) argument
111 if (in != tm)
113 in=M_ASN1_TIME_dup(tm);
123 int X509_set_notAfter(X509 *x, const ASN1_TIME *tm) argument
129 if (in != tm)
131 in=M_ASN1_TIME_dup(tm);
H A Dx509cset.c79 int X509_CRL_set_lastUpdate(X509_CRL *x, const ASN1_TIME *tm) argument
85 if (in != tm)
87 in=M_ASN1_TIME_dup(tm);
97 int X509_CRL_set_nextUpdate(X509_CRL *x, const ASN1_TIME *tm) argument
103 if (in != tm)
105 in=M_ASN1_TIME_dup(tm);
131 int X509_REVOKED_set_revocationDate(X509_REVOKED *x, ASN1_TIME *tm) argument
137 if (in != tm)
139 in=M_ASN1_TIME_dup(tm);
/external/chromium_org/third_party/dom_distiller_js/package/js/
H A Ddomdistiller.js86 function tm(a,b){a.f=b;return a}
529 function J(a,b){var c,d,e,f,g,h,i,j,k,l;f=ib();d=(g=new Wm,h=new db(g),i=new rb(h),mb(new nb(i),a.c),Rm(g),j=(Rm(g),new Cl(g.u)),I(a),zl(j,a.b),Bl(j,i.d),Al(j,i.b),j);Cg(a.e,ib()-f);f=ib();c=(Fl(d,true,'Start'),Hl(d),Wl(new Yl(d.b),d),l=Gl(d),Fl(d,l,'Classification Complete'),l=Dm((Cm(),Bm),d),Fl(d,l,'Ignore Strictly Not Content blocks'),l=km(rm(sm(tm(pm(new um),0.5))),d),Fl(d,l,'SimilarSiblingContentExpansion: Cross headings'),l=km(rm(sm(tm(qm(pm(new um)),0))),d),Fl(d,l,'SimilarSiblingContentExpansion: Mixed tags'),l=$l(d),Fl(d,l,'HeadingFusion'),l=Ol((Nl(),Ml),d),Fl(d,l,'BlockProximityFusion: Distance 1'),l=ym((xm(),wm),d),Fl(d,l,'BlockFilter'),l=Ol(Ll,d),Fl(d,l,'BlockProximityFusion: Same level content-only'),l=cm((bm(),am),d),Fl(d,l,'Keep Largest Block'),l=Zl(d),Fl(d,l,'Expand Title to Content'),l=gm(d),Fl(d,l,'Largest Block Same Tag Level -> Content'),l=hm(d),Fl(d,l,'List at end filter'),k=M(d),Id(k,d.d,d.c,$doc.documentElement));Bg(a.e,ib()-f);if(c.c==0)return $u;f=ib();e=K(b,c);Ag(a.d,Dl(d));Dg(a.e,ib()-f);return e}
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ducm.c916 UCMapping *tm; local
1003 tm=table->mappings+table->mappingsLength++;
1004 uprv_memcpy(tm, m, sizeof(UCMapping));
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dlocaltime.c59 ** 5. They might reference tm.TM_ZONE after calling offtime.
150 static struct tm * gmtsub(const time_t * timep, long offset,
151 struct tm * tmp);
152 static struct tm * localsub(const time_t * timep, long offset,
153 struct tm * tmp);
162 static time_t time1(struct tm * tmp,
163 struct tm * (*funcp)(const time_t *,
164 long, struct tm *),
166 static time_t time2(struct tm *tmp,
167 struct tm * (*func
219 static struct tm tm; variable in typeref:struct:tm
[all...]

Completed in 639 milliseconds

1234567891011