Home
last modified time | relevance | path

Searched defs:t (Results 1 – 25 of 1785) sorted by relevance

12345678910>>...72

/external/v8/test/mjsunit/third_party/
Dstring-trim.js48 {s : '\u0009', t : 'HORIZONTAL TAB'}, property
49 {s : '\u000A', t : 'LINE FEED OR NEW LINE'}, property
50 {s : '\u000B', t : 'VERTICAL TAB'}, property
51 {s : '\u000C', t : 'FORMFEED'}, property
52 {s : '\u000D', t : 'CARRIAGE RETURN'}, property
53 {s : '\u0020', t : 'SPACE'}, property
54 {s : '\u00A0', t : 'NO-BREAK SPACE'}, property
55 {s : '\u2000', t : 'EN QUAD'}, property
56 {s : '\u2001', t : 'EM QUAD'}, property
57 {s : '\u2002', t : 'EN SPACE'}, property
[all …]
/external/antlr/src/org/antlr/runtime/tree/
DCommonTreeAdaptor.java50 public Object dupNode(Object t) { in dupNode()
94 public void setTokenBoundaries(Object t, Token startToken, Token stopToken) { in setTokenBoundaries()
104 public int getTokenStartIndex(Object t) { in getTokenStartIndex()
109 public int getTokenStopIndex(Object t) { in getTokenStopIndex()
114 public String getText(Object t) { in getText()
119 public int getType(Object t) { in getType()
128 public Token getToken(Object t) { in getToken()
135 public Object getChild(Object t, int i) { in getChild()
140 public int getChildCount(Object t) { in getChildCount()
145 public Object getParent(Object t) { in getParent()
[all …]
DTreeAdaptor.java94 public void addChild(Object t, Object child); in addChild()
191 public int getType(Object t); in getType()
194 public void setType(Object t, int type); in setType()
196 public String getText(Object t); in getText()
199 public void setText(Object t, String text); in setText()
210 public Token getToken(Object t); in getToken()
218 public void setTokenBoundaries(Object t, Token startToken, Token stopToken); in setTokenBoundaries()
221 public int getTokenStartIndex(Object t); in getTokenStartIndex()
224 public int getTokenStopIndex(Object t); in getTokenStopIndex()
230 public Object getChild(Object t, int i); in getChild()
[all …]
DBaseTreeAdaptor.java64 CommonErrorNode t = new CommonErrorNode(input, start, stop, e); in errorNode() local
81 public Object dupTree(Object t, Object parent) { in dupTree()
105 public void addChild(Object t, Object child) { in addChild()
186 Tree t = (Tree)create(fromToken); in create() local
195 Tree t = (Tree)create(fromToken); in create() local
201 Tree t = (Tree)create(fromToken); in create() local
205 public int getType(Object t) { in getType()
209 public void setType(Object t, int type) { in setType()
213 public String getText(Object t) { in getText()
217 public void setText(Object t, String text) { in setText()
[all …]
/external/chromium/net/data/proxy_resolver_v8_unittest/
Dpac_library_unittest.js35 Tests.testDnsDomainIs = function(t) { argument
42 Tests.testDnsDomainLevels = function(t) { argument
48 Tests.testIsInNet = function(t) { argument
61 Tests.testIsPlainHostName = function(t) { argument
66 Tests.testLocalHostOrDomainIs = function(t) { argument
72 Tests.testShExpMatch = function(t) { argument
79 Tests.testSortIpAddressList = function(t) { argument
126 Tests.testIsInNetEx = function(t) { argument
160 Tests.testWeekdayRange = function(t) { argument
183 Tests.testDateRange = function(t) { argument
[all …]
/external/antlr/src/org/antlr/runtime/debug/
DDebugTreeAdaptor.java77 Object t = adaptor.dupTree(tree); in dupTree() local
86 protected void simulateTreeConstruction(Object t) { in simulateTreeConstruction()
112 public void addChild(Object t, Object child) { in addChild()
130 public void addChild(Object t, Token child) { in addChild()
160 public int getType(Object t) { in getType()
164 public void setType(Object t, int type) { in setType()
168 public String getText(Object t) { in getText()
172 public void setText(Object t, String text) { in setText()
176 public Token getToken(Object t) { in getToken()
180 public void setTokenBoundaries(Object t, Token startToken, Token stopToken) { in setTokenBoundaries()
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/
Dshell.js299 function Day( t ) { argument
321 function DayNumber( t ) { argument
324 function TimeWithinDay( t ) { argument
331 function YearNumber( t ) { argument
342 function InLeapYear( t ) { argument
352 function YearFromTime( t ) { argument
377 function MonthFromTime( t ) { argument
421 function DayWithinYear( t ) { argument
424 function DateFromTime( t ) { argument
467 function WeekDay( t ) { argument
[all …]
Djsref.js258 function Day( t ) { argument
280 function DayNumber( t ) { argument
283 function TimeWithinDay( t ) { argument
290 function YearNumber( t ) { argument
301 function InLeapYear( t ) { argument
311 function YearFromTime( t ) { argument
336 function MonthFromTime( t ) { argument
380 function DayWithinYear( t ) { argument
383 function DateFromTime( t ) { argument
426 function WeekDay( t ) { argument
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/
Djsref.js218 function Day( t ) { argument
240 function DayNumber( t ) { argument
243 function TimeWithinDay( t ) { argument
250 function YearNumber( t ) { argument
261 function InLeapYear( t ) { argument
271 function YearFromTime( t ) { argument
296 function MonthFromTime( t ) { argument
340 function DayWithinYear( t ) { argument
343 function DateFromTime( t ) { argument
386 function WeekDay( t ) { argument
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Date/
Dshell.js251 function Day( t) argument
276 function DayNumber( t ) argument
282 function TimeWithinDay( t ) argument
289 function YearNumber( t ) argument
307 function InLeapYear( t ) argument
316 function YearFromTime( t ) argument
344 function MonthFromTime( t ) argument
366 function DayWithinYear( t ) argument
372 function DateFromTime( t ) argument
393 function WeekDay( t ) argument
[all …]
/external/chromium/base/
Dstring_tokenizer_unittest.cc16 StringTokenizer t(input, " "); in TEST() local
35 StringTokenizer t(input, " "); in TEST() local
57 StringTokenizer t(input, " "); in TEST() local
86 StringTokenizer t(input, ": ,-"); in TEST() local
105 StringTokenizer t(input, ": ;="); in TEST() local
154 StringTokenizer t(input, " "); in TEST() local
174 StringTokenizer t(input, " "); in TEST() local
188 StringTokenizer t(input, " "); in TEST() local
205 StringTokenizer t(input, " "); in TEST() local
219 StringTokenizer t(input, ", "); in TEST() local
/external/clang/test/Analysis/
Dmisc-ps.c40 int PR8962 (int *t) { in PR8962()
46 int PR8962_b (int *t) { in PR8962_b()
53 int PR8962_c (int *t) { in PR8962_c()
59 int PR8962_d (int *t) { in PR8962_d()
65 int PR8962_e (int *t) { in PR8962_e()
72 int PR8962_f (int *t) { in PR8962_f()
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/
D15.9.5.32-1.js81 function addNewTestCase( t, d, DateString ) { argument
127 function LocalDateFromTime(t) { argument
131 function UTCDateFromTime(t) { argument
134 function MyDateFromTime( t ) { argument
151 function SetDate( t, date ) { argument
D15.9.5.33-1.js127 function LocalDateFromTime(t) { argument
131 function UTCDateFromTime(t) { argument
134 function MyDateFromTime( t ) { argument
150 function SetUTCDate( t, date ) { argument
D15.9.5.35-1.js111 function LocalDateFromTime(t) { argument
115 function UTCDateFromTime(t) { argument
118 function MyDateFromTime( t ) { argument
134 function SetUTCMonth( t, month, date ) { argument
D15.9.5.37-1.js204 function LocalDateFromTime(t) { argument
208 function UTCDateFromTime(t) { argument
211 function MyDateFromTime( t ) { argument
227 function SetUTCFullYear( t, year, mon, date ) { argument
D15.9.5.37-2.js178 function LocalDateFromTime(t) { argument
182 function UTCDateFromTime(t) { argument
185 function MyDateFromTime( t ) { argument
201 function SetUTCFullYear( t, year, mon, date ) { argument
D15.9.5.37-3.js164 function LocalDateFromTime(t) { argument
168 function UTCDateFromTime(t) { argument
171 function MyDateFromTime( t ) { argument
187 function SetUTCFullYear( t, year, mon, date ) { argument
D15.9.5.36-2.js198 function LocalDateFromTime(t) { argument
202 function UTCDateFromTime(t) { argument
205 function MyDateFromTime( t ) { argument
221 function SetFullYear( t, year, mon, date ) { argument
D15.9.5.36-7.js131 function LocalDateFromTime(t) { argument
135 function UTCDateFromTime(t) { argument
138 function MyDateFromTime( t ) { argument
154 function SetFullYear( t, year, mon, date ) { argument
/external/qemu/android/avd/
Dhw-config.c59 #define HWCFG_BOOL(n,s,d,a,t) config->n = stringToBoolean(d); in androidHwConfig_init() argument
60 #define HWCFG_INT(n,s,d,a,t) config->n = d; in androidHwConfig_init() argument
61 #define HWCFG_STRING(n,s,d,a,t) config->n = ASTRDUP(d); in androidHwConfig_init() argument
62 #define HWCFG_DOUBLE(n,s,d,a,t) config->n = d; in androidHwConfig_init() argument
63 #define HWCFG_DISKSIZE(n,s,d,a,t) config->n = diskSizeToInt64(d); in androidHwConfig_init() argument
86 #define HWCFG_BOOL(n,s,d,a,t) if (iniFile_getValue(ini, s)) { config->n = iniFile_getBoolea… in androidHwConfig_read() argument
87 #define HWCFG_INT(n,s,d,a,t) if (iniFile_getValue(ini, s)) { config->n = iniFile_getIntege… in androidHwConfig_read() argument
88 #define HWCFG_STRING(n,s,d,a,t) if (iniFile_getValue(ini, s)) { AFREE(config->n); config->n =… in androidHwConfig_read() argument
89 #define HWCFG_DOUBLE(n,s,d,a,t) if (iniFile_getValue(ini, s)) { config->n = iniFile_getDouble… in androidHwConfig_read() argument
90 #define HWCFG_DISKSIZE(n,s,d,a,t) if (iniFile_getValue(ini, s)) { config->n = iniFile_getDiskSi… in androidHwConfig_read() argument
[all …]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
DTimerTest.java53 public TimerTestTask(Timer t) { in TimerTestTask()
97 Timer t = null; in test_ConstructorZ() local
123 Timer t = null; in test_Constructor() local
149 Timer t = null; in test_ConstructorSZ() local
173 Timer t = null; in test_ConstructorS() local
213 Timer t = null; in test_cancel() local
311 Timer t = null; in test_purge() local
345 Timer t = null; in test_scheduleLjava_util_TimerTaskLjava_util_Date() local
487 Timer t = null; in test_scheduleLjava_util_TimerTaskJ() local
605 Timer t = null; in test_scheduleLjava_util_TimerTaskJJ() local
[all …]
/external/libvpx/vpx_ports/
Dvpx_timer.h57 vpx_usec_timer_start(struct vpx_usec_timer *t) in vpx_usec_timer_start()
68 vpx_usec_timer_mark(struct vpx_usec_timer *t) in vpx_usec_timer_mark()
79 vpx_usec_timer_elapsed(struct vpx_usec_timer *t) in vpx_usec_timer_elapsed()
111 vpx_usec_timer_start(struct vpx_usec_timer *t) { } in vpx_usec_timer_start()
114 vpx_usec_timer_mark(struct vpx_usec_timer *t) { } in vpx_usec_timer_mark()
117 vpx_usec_timer_elapsed(struct vpx_usec_timer *t) { return 0; } in vpx_usec_timer_elapsed()
/external/javassist/src/main/javassist/compiler/
DParser.java114 int t = lex.lookAhead(); in parseMethod1() local
166 int t; in parseMemberMods() local
184 int t = lex.lookAhead(); in parseFormalType() local
197 private static boolean isBuiltinType(int t) { in isBuiltinType()
240 int t = lex.lookAhead(); in parseStatement() local
304 int t = lex.get(); // IF in parseIf() local
323 int t = lex.get(); // WHILE in parseWhile() local
332 int t = lex.get(); // DO in parseDo() local
350 int t = lex.get(); // FOR in parseFor() local
393 int t = lex.get(); // SWITCH in parseSwitch() local
[all …]
/external/apache-http/src/org/apache/commons/logging/
DLog.java157 public void trace(Object message, Throwable t); in trace()
174 public void debug(Object message, Throwable t); in debug()
191 public void info(Object message, Throwable t); in info()
208 public void warn(Object message, Throwable t); in warn()
225 public void error(Object message, Throwable t); in error()
242 public void fatal(Object message, Throwable t); in fatal()

12345678910>>...72