/external/libppp/src/ |
D | throughput.c | 46 throughput_init(struct pppThroughput *t, int period) in throughput_init() argument 48 t->OctetsIn = t->OctetsOut = t->PacketsIn = t->PacketsOut = 0; in throughput_init() 49 t->SamplePeriod = period; in throughput_init() 50 t->in.SampleOctets = (long long *) in throughput_init() 51 calloc(period, sizeof *t->in.SampleOctets); in throughput_init() 52 t->in.OctetsPerSecond = 0; in throughput_init() 53 t->out.SampleOctets = (long long *) in throughput_init() 54 calloc(period, sizeof *t->out.SampleOctets); in throughput_init() 55 t->out.OctetsPerSecond = 0; in throughput_init() 56 t->BestOctetsPerSecond = 0; in throughput_init() [all …]
|
/external/chromium/base/ |
D | string_tokenizer_unittest.cc | 16 StringTokenizer t(input, " "); in TEST() local 18 EXPECT_TRUE(t.GetNext()); in TEST() 19 EXPECT_EQ(string("this"), t.token()); in TEST() 21 EXPECT_TRUE(t.GetNext()); in TEST() 22 EXPECT_EQ(string("is"), t.token()); in TEST() 24 EXPECT_TRUE(t.GetNext()); in TEST() 25 EXPECT_EQ(string("a"), t.token()); in TEST() 27 EXPECT_TRUE(t.GetNext()); in TEST() 28 EXPECT_EQ(string("test"), t.token()); in TEST() 30 EXPECT_FALSE(t.GetNext()); in TEST() [all …]
|
/external/chromium/net/data/proxy_resolver_v8_unittest/ |
D | pac_library_unittest.js | 13 var t = new TestContext(test); 16 Tests[test](t); 18 if (t.failed()) { 35 Tests.testDnsDomainIs = function(t) { argument 36 t.expectTrue(dnsDomainIs("google.com", ".com")); 37 t.expectTrue(dnsDomainIs("google.co.uk", ".co.uk")); 38 t.expectFalse(dnsDomainIs("google.com", ".co.uk")); 39 t.expectFalse(dnsDomainIs("www.adobe.com", ".ad")); 42 Tests.testDnsDomainLevels = function(t) { argument 43 t.expectEquals(0, dnsDomainLevels("www")); [all …]
|
/external/yaffs2/yaffs2/ |
D | yaffs_packedtags2.c | 50 pt->t.objectId, pt->t.chunkId, pt->t.byteCount, in yaffs_DumpPackedTags2() 51 pt->t.sequenceNumber)); in yaffs_DumpPackedTags2() 54 static void yaffs_DumpTags2(const yaffs_ExtendedTags * t) in yaffs_DumpTags2() argument 60 TENDSTR), t->eccResult, t->blockBad, t->chunkUsed, t->objectId, in yaffs_DumpTags2() 61 t->chunkId, t->byteCount, t->chunkDeleted, t->serialNumber, in yaffs_DumpTags2() 62 t->sequenceNumber)); in yaffs_DumpTags2() 66 void yaffs_PackTags2(yaffs_PackedTags2 * pt, const yaffs_ExtendedTags * t) in yaffs_PackTags2() argument 68 pt->t.chunkId = t->chunkId; in yaffs_PackTags2() 69 pt->t.sequenceNumber = t->sequenceNumber; in yaffs_PackTags2() 70 pt->t.byteCount = t->byteCount; in yaffs_PackTags2() [all …]
|
/external/valgrind/main/coregrind/ |
D | m_oset.c | 165 void* slow_key_of_node(AvlTree* t, AvlNode* n) in slow_key_of_node() argument 167 return (void*)((Addr)elem_of_node(n) + t->keyOff); in slow_key_of_node() 194 inline Word slow_cmp(const AvlTree* t, const void* k, const AvlNode* n) in slow_cmp() argument 196 return t->cmp(k, elem_of_node(n)); in slow_cmp() 241 static void stackClear(AvlTree* t) in stackClear() argument 244 vg_assert(t); in stackClear() 246 t->nodeStack[i] = NULL; in stackClear() 247 t->numStack[i] = 0; in stackClear() 249 t->stackTop = 0; in stackClear() 253 static inline void stackPush(AvlTree* t, AvlNode* n, Int i) in stackPush() argument [all …]
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
D | TimerTest.java | 53 public TimerTestTask(Timer t) { in TimerTestTask() argument 54 timer = t; in TimerTestTask() 97 Timer t = null; in test_ConstructorZ() local 100 t = new Timer(true); in test_ConstructorZ() 102 t.schedule(testTask, 200); in test_ConstructorZ() 111 t.cancel(); in test_ConstructorZ() 113 if (t != null) in test_ConstructorZ() 114 t.cancel(); in test_ConstructorZ() 123 Timer t = null; in test_Constructor() local 126 t = new Timer(); in test_Constructor() [all …]
|
/external/icu4c/ |
D | config.status | 493 s,@SHELL@,/bin/sh,;t t 494 s,@PATH_SEPARATOR@,:,;t t 495 s,@PACKAGE_NAME@,,;t t 496 s,@PACKAGE_TARNAME@,,;t t 497 s,@PACKAGE_VERSION@,,;t t 498 s,@PACKAGE_STRING@,,;t t 499 s,@PACKAGE_BUGREPORT@,,;t t 500 s,@exec_prefix@,${prefix},;t t 501 s,@prefix@,/usr/local,;t t 502 s,@program_transform_name@,s,x,x,,;t t [all …]
|
/external/v8/test/mjsunit/compiler/ |
D | optimized-for-in.js | 35 function a(t) { argument 37 for (var i in t) { 38 result.push(i + t[i]); 44 function b(t) { argument 46 for (var i in t) { 47 result.push(i + t[i]); 48 delete t[i]; 54 function c(t) { argument 56 for (var i in t) { 57 result.push(i + t[i]); [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
D | CommonTreeAdaptor.cs | 60 public override object DupNode(object t) { in DupNode() argument 61 if (t == null) in DupNode() 64 return ((ITree)t).DupNode(); in DupNode() 116 public override void SetTokenBoundaries(object t, IToken startToken, IToken stopToken) { in SetTokenBoundaries() argument 117 if (t == null) in SetTokenBoundaries() 129 ((ITree)t).TokenStartIndex = start; in SetTokenBoundaries() 130 ((ITree)t).TokenStopIndex = stop; in SetTokenBoundaries() 133 public override int GetTokenStartIndex(object t) { in GetTokenStartIndex() argument 134 if (t == null) in GetTokenStartIndex() 137 return ((ITree)t).TokenStartIndex; in GetTokenStartIndex() [all …]
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ |
D | shell.js | 273 var t = ResultArray[TIME] + TZ_DIFF*msPerHour; 276 ResultArray[HOURS] = HourFromTime(t); 277 ResultArray[DAY] = WeekDay(t); 278 ResultArray[DATE] = DateFromTime(t); 279 ResultArray[MONTH] = MonthFromTime(t); 280 ResultArray[YEAR] = YearFromTime(t); 286 var t = ResultArray[TIME] - PST_DIFF*msPerHour; 289 ResultArray[TIME] = t; 290 ResultArray[UTC_HOURS] = HourFromTime(t); 291 ResultArray[UTC_DAY] = WeekDay(t); [all …]
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
D | CommonTreeAdaptor.java | 50 public Object dupNode(Object t) { in dupNode() argument 51 if ( t==null ) return null; in dupNode() 52 return ((Tree)t).dupNode(); in dupNode() 94 public void setTokenBoundaries(Object t, Token startToken, Token stopToken) { in setTokenBoundaries() argument 95 if ( t==null ) return; in setTokenBoundaries() 100 ((Tree)t).setTokenStartIndex(start); in setTokenBoundaries() 101 ((Tree)t).setTokenStopIndex(stop); in setTokenBoundaries() 104 public int getTokenStartIndex(Object t) { in getTokenStartIndex() argument 105 if ( t==null ) return -1; in getTokenStartIndex() 106 return ((Tree)t).getTokenStartIndex(); in getTokenStartIndex() [all …]
|
/external/protobuf/gtest/include/gtest/internal/ |
D | gtest-tuple.h | 190 tuple(const tuple& t) : f0_(t.f0_) {} 193 tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {} 195 tuple& operator=(const tuple& t) { return CopyFrom(t); } 198 tuple& operator=(const GTEST_1_TUPLE_(U)& t) { 199 return CopyFrom(t); 205 tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) { 206 f0_ = t.f0_; 223 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} 226 tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {} 230 tuple& operator=(const tuple& t) { return CopyFrom(t); } [all …]
|
/external/chromium/testing/gtest/include/gtest/internal/ |
D | gtest-tuple.h | 191 tuple(const tuple& t) : f0_(t.f0_) {} 194 tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {} 196 tuple& operator=(const tuple& t) { return CopyFrom(t); } 199 tuple& operator=(const GTEST_1_TUPLE_(U)& t) { 200 return CopyFrom(t); 206 tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) { 207 f0_ = t.f0_; 224 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} 227 tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {} 231 tuple& operator=(const tuple& t) { return CopyFrom(t); } [all …]
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-tuple.h | 191 tuple(const tuple& t) : f0_(t.f0_) {} 194 tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {} 196 tuple& operator=(const tuple& t) { return CopyFrom(t); } 199 tuple& operator=(const GTEST_1_TUPLE_(U)& t) { 200 return CopyFrom(t); 206 tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) { 207 f0_ = t.f0_; 224 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} 227 tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {} 231 tuple& operator=(const tuple& t) { return CopyFrom(t); } [all …]
|
/external/gtest/include/gtest/internal/ |
D | gtest-tuple.h | 191 tuple(const tuple& t) : f0_(t.f0_) {} 194 tuple(const GTEST_1_TUPLE_(U)& t) : f0_(t.f0_) {} 196 tuple& operator=(const tuple& t) { return CopyFrom(t); } 199 tuple& operator=(const GTEST_1_TUPLE_(U)& t) { 200 return CopyFrom(t); 206 tuple& CopyFrom(const GTEST_1_TUPLE_(U)& t) { 207 f0_ = t.f0_; 224 tuple(const tuple& t) : f0_(t.f0_), f1_(t.f1_) {} 227 tuple(const GTEST_2_TUPLE_(U)& t) : f0_(t.f0_), f1_(t.f1_) {} 231 tuple& operator=(const tuple& t) { return CopyFrom(t); } [all …]
|
/external/llvm/utils/release/ |
D | findRegressions-simple.py | 19 for t in r: 21 print t 23 if t[0] == 'PASS' or t[0] == 'FAIL' : 24 tmp = t[2].split('llvm-test/') 37 test[fname][t[1] + ' state'] = t[0] 38 test[fname][t[1] + ' time'] = float('nan') 41 n = t[0].split('RESULT-')[1] 47 test[fname]['compile time'] = float(t[2].split('program')[1].strip('\r\n')) 50 test[fname]['exec time'] = float(t[2].split('program')[1].strip('\r\n')) 73 for t in sorted(d_old.keys()) : [all …]
|
/external/clang/test/CXX/class.access/class.access.base/ |
D | p1.cpp | 34 void test(Test *t) { in test() argument 35 t->pub++; in test() 36 t->spub++; in test() 37 t->prot++; // expected-error {{protected member}} in test() 38 t->sprot++; // expected-error {{protected member}} in test() 39 t->priv++; // expected-error {{private member}} in test() 40 t->spriv++; // expected-error {{private member}} in test() 42 t->Base::pub++; in test() 43 t->Base::spub++; in test() 44 t->Base::prot++; // expected-error {{protected member}} in test() [all …]
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Date/ |
D | shell.js | 251 function Day( t) argument 253 return ( Math.floor( t/msPerDay ) ); 276 function DayNumber( t ) argument 278 return ( Math.floor( t / msPerDay ) ); 282 function TimeWithinDay( t ) argument 284 if ( t < 0 ) {return ( (t%msPerDay) + msPerDay );} 285 else {return ( t % msPerDay );} 289 function YearNumber( t ) argument 307 function InLeapYear( t ) argument 309 if ( DaysInYear(YearFromTime(t)) == 365 ) {return 0;} [all …]
|
/external/webkit/Source/WebKit/efl/ewk/ |
D | ewk_tiled_model.c | 64 static inline struct tile_account *_ewk_tile_account_get(const Ewk_Tile *t) in _ewk_tile_account_get() argument 70 if (accounting[i].size == t->w) in _ewk_tile_account_get() 78 acc->size = t->w; in _ewk_tile_account_get() 89 static inline void _ewk_tile_account_allocated(const Ewk_Tile *t) in _ewk_tile_account_allocated() argument 91 struct tile_account *acc = _ewk_tile_account_get(t); in _ewk_tile_account_allocated() 94 acc->bytes.allocated += t->bytes; in _ewk_tile_account_allocated() 97 bytes_allocated += t->bytes; in _ewk_tile_account_allocated() 101 static inline void _ewk_tile_account_freed(const Ewk_Tile *t) in _ewk_tile_account_freed() argument 103 struct tile_account *acc = _ewk_tile_account_get(t); in _ewk_tile_account_freed() 107 acc->bytes.freed += t->bytes; in _ewk_tile_account_freed() [all …]
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
D | CommonTreeAdaptor.js | 20 dupNode: function(t) { argument 21 if ( !org.antlr.lang.isValue(t) ) { 24 return t.dupNode(); 69 setTokenBoundaries: function(t, startToken, stopToken) { argument 70 if ( !org.antlr.lang.isValue(t) ) { 93 t.setTokenStartIndex(start); 94 t.setTokenStopIndex(stop); 97 getTokenStartIndex: function(t) { argument 98 if (!t) { 101 return t.getTokenStartIndex(); [all …]
|
/external/icu4c/data/lang/ |
D | mas.txt | 14 ak{"nkʉtʉ́k ɔ́ɔ̄ lAkan"} 15 am{"nkʉtʉ́k ɔ́ɔ̄ lAmhari"} 16 ar{"nkʉtʉ́k ɔ́ɔ̄ lmarabu"} 17 be{"nkʉtʉ́k ɔ́ɔ̄ lBelarusi"} 18 bg{"nkʉtʉ́k ɔ́ɔ̄ lBulgaria"} 19 bn{"lnkʉtʉ́k ɔ́ɔ̄ lBengali"} 20 cs{"nkʉtʉ́k ɔ́ɔ̄ lcheki"} 21 de{"nkʉtʉ́k ɔ́ɔ̄ ljerumani"} 22 el{"nkʉtʉ́k ɔ́ɔ̄ lgiriki"} 23 en{"nkʉtʉ́k ɔ́ɔ̄ nkɨ́resa"} [all …]
|
/external/openssh/regress/ |
D | keygen-convert.sh | 6 for t in rsa dsa; do 8 trace "generating $t key" 9 rm -f $OBJ/$t-key 10 ${SSHKEYGEN} -q -N "" -t $t -f $OBJ/$t-key 12 trace "export $t private to rfc4716 public" 13 ${SSHKEYGEN} -q -e -f $OBJ/$t-key >$OBJ/$t-key-rfc || \ 14 fail "export $t private to rfc4716 public" 16 trace "export $t public to rfc4716 public" 17 ${SSHKEYGEN} -q -e -f $OBJ/$t-key.pub >$OBJ/$t-key-rfc.pub || \ 18 fail "$t public to rfc4716 public" [all …]
|
/external/libvpx/examples/includes/HTML-Toc-0.91/ |
D | MANIFEST | 9 t/extend.t 10 t/format.t 11 t/generate.t 12 t/insert.t 13 t/manualTest.t 14 t/options.t 15 t/podExamples.t 16 t/propagate.t 17 t/siteMap.t 18 t/update.t [all …]
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/ |
D | jsref.js | 218 function Day( t ) { argument 219 return ( Math.floor(t/msPerDay ) ); 240 function DayNumber( t ) { argument 241 return ( Math.floor( t / msPerDay ) ); 243 function TimeWithinDay( t ) { argument 244 if ( t < 0 ) { 245 return ( (t % msPerDay) + msPerDay ); 247 return ( t % msPerDay ); 250 function YearNumber( t ) { argument 261 function InLeapYear( t ) { argument [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
D | DebugTreeAdaptor.cs | 81 object t = adaptor.DupTree(tree); in DupTree() 85 SimulateTreeConstruction(t); in DupTree() 86 return t; in DupTree() 90 protected virtual void SimulateTreeConstruction(object t) { in SimulateTreeConstruction() argument 91 dbg.CreateNode(t); in SimulateTreeConstruction() 92 int n = adaptor.GetChildCount(t); in SimulateTreeConstruction() 94 object child = adaptor.GetChild(t, i); in SimulateTreeConstruction() 96 dbg.AddChild(t, child); in SimulateTreeConstruction() 116 public virtual void AddChild(object t, object child) { in AddChild() argument 117 if (t == null || child == null) { in AddChild() [all …]
|