/external/chromium-trace/catapult/third_party/Paste/paste/evalexception/media/ |
D | debug.js | 49 var history = input.form.history; 51 if (! history) { 52 history = input.form.history = []; 54 history.push(input.value); 122 var history = input.form.history; 123 if (! history) { 124 history = input.form.history = []; 131 history.push(input.value); 135 if (history.length-pos < 0) { 138 if (history.length-pos > history.length-1) { [all …]
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
D | gtest-linked_ptr_test.cc | 44 Message* history = NULL; variable 49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; } in A() 50 virtual ~A() { *history << "A" << mynum << " dtor\n"; } in ~A() 51 virtual void Use() { *history << "A" << mynum << " use\n"; } in Use() 59 B() { *history << "B" << mynum << " ctor\n"; } in B() 60 ~B() { *history << "B" << mynum << " dtor\n"; } in ~B() 61 virtual void Use() { *history << "B" << mynum << " use\n"; } in Use() 68 history = new Message; in LinkedPtrTest() 72 delete history; in ~LinkedPtrTest() 73 history = NULL; in ~LinkedPtrTest() [all …]
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest-linked_ptr_test.cc | 44 Message* history = NULL; variable 49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; } in A() 50 virtual ~A() { *history << "A" << mynum << " dtor\n"; } in ~A() 51 virtual void Use() { *history << "A" << mynum << " use\n"; } in Use() 59 B() { *history << "B" << mynum << " ctor\n"; } in B() 60 ~B() { *history << "B" << mynum << " dtor\n"; } in ~B() 61 virtual void Use() { *history << "B" << mynum << " use\n"; } in Use() 68 history = new Message; in LinkedPtrTest() 72 delete history; in ~LinkedPtrTest() 73 history = NULL; in ~LinkedPtrTest() [all …]
|
/external/gtest/test/ |
D | gtest-linked_ptr_test.cc | 44 Message* history = NULL; variable 49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; } in A() 50 virtual ~A() { *history << "A" << mynum << " dtor\n"; } in ~A() 51 virtual void Use() { *history << "A" << mynum << " use\n"; } in Use() 59 B() { *history << "B" << mynum << " ctor\n"; } in B() 60 ~B() { *history << "B" << mynum << " dtor\n"; } in ~B() 61 virtual void Use() { *history << "B" << mynum << " use\n"; } in Use() 68 history = new Message; in LinkedPtrTest() 72 delete history; in ~LinkedPtrTest() 73 history = NULL; in ~LinkedPtrTest() [all …]
|
/external/protobuf/gtest/test/ |
D | gtest-linked_ptr_test.cc | 44 Message* history = NULL; variable 49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; } in A() 50 virtual ~A() { *history << "A" << mynum << " dtor\n"; } in ~A() 51 virtual void Use() { *history << "A" << mynum << " use\n"; } in Use() 59 B() { *history << "B" << mynum << " ctor\n"; } in B() 60 ~B() { *history << "B" << mynum << " dtor\n"; } in ~B() 61 virtual void Use() { *history << "B" << mynum << " use\n"; } in Use() 68 history = new Message; in LinkedPtrTest() 72 delete history; in ~LinkedPtrTest() 73 history = NULL; in ~LinkedPtrTest() [all …]
|
/external/v8/test/mjsunit/ |
D | random-bit-correlations.js | 10 var history = new Uint32Array(kHistory); 31 history[i] = random(); 36 for (var j = ago - 1; j >= 0; j--) history[j + 1] = history[j]; 37 history[0] = random(); 40 predicted = (history[ago] >> predictor_bit) & 1; 44 var bit = (history[0] >> random_bit) & 1;
|
/external/libchrome/base/memory/ |
D | linked_ptr_unittest.cc | 15 std::string history; variable 19 A(): mynum(num++) { history += base::StringPrintf("A%d ctor\n", mynum); } in A() 20 virtual ~A() { history += base::StringPrintf("A%d dtor\n", mynum); } in ~A() 21 virtual void Use() { history += base::StringPrintf("A%d use\n", mynum); } in Use() 27 B() { history += base::StringPrintf("B%d ctor\n", mynum); } in B() 28 ~B() override { history += base::StringPrintf("B%d dtor\n", mynum); } in ~B() 29 void Use() override { history += base::StringPrintf("B%d use\n", mynum); } in Use() 86 ASSERT_EQ(history, in TEST()
|
/external/libedit/examples/ |
D | tc1.c | 148 history(hist, &ev, H_SETSIZE, 100); in main() 160 el_set(el, EL_HIST, history, hist); in main() 222 if (history(hist, &ev, H_SET, lastevent) == -1) in main() 224 history(hist, &ev, H_ADD , buf); in main() 226 history(hist, &ev, H_ENTER, buf); in main() 231 history(hist, &ev, continuation ? H_APPEND : H_ENTER, buf); in main() 254 for (rv = history(hist, &ev, H_LAST); rv != -1; in main() 255 rv = history(hist, &ev, H_PREV)) in main() 262 history(hist, &ev, H_CLEAR); in main() 269 history(hist, &ev, H_LOAD, av[2]); in main() [all …]
|
/external/autotest/server/cros/network/ |
D | netperf_session.py | 106 history = [] 111 while len(history) + none_count < self.MEASUREMENT_MAX_SAMPLES: 117 history.append(result) 118 if len(history) < self.MEASUREMENT_MIN_SAMPLES: 121 final_result = self._from_samples(history) 127 final_result = self._from_samples(history) 129 return history or None
|
/external/libedit/src/ |
D | readline.c | 202 if (history(h, &ev, op) != 0) in _move_history() 316 history(h, &ev, H_SETSIZE, INT_MAX); /* unlimited */ in rl_initialize() 319 el_set(e, EL_HIST, history, h); in rl_initialize() 434 history(h, &ev, H_GETSIZE); in readline() 522 if (history(h, &ev, H_FIRST) != 0) in get_history_event() 580 if (history(h, &ev, H_CURR) != 0) { in get_history_event() 599 history(h, &ev, H_FIRST); in get_history_event() 615 if (history(h, &ev, H_CURR) != 0) in get_history_event() 621 (void)history(h, &ev, H_SET, num); in get_history_event() 1140 if (history(h, &ev, H_SETSIZE, max) == 0) in stifle_history() [all …]
|
/external/mksh/src/ |
D | histrap.c | 379 if (histptr >= history && last_line != hist_source->line) { in hist_execute() 419 if ((size_t)hp < (size_t)history) { in hist_get() 441 if ((n = findhist(histptr - history - 1, 0, str, anchored)) < 0) in hist_get() 444 hp = &history[n]; in hist_get() 453 if (histptr < history || (!allow_cur && histptr == history)) { in hist_get_newest() 464 if (histptr <= history) { in hist_get_oldest() 468 return (history); in hist_get_oldest() 487 int last = histptr - history; in histnum() 493 current = &history[n]; in histnum() 508 int maxhist = histptr - history; in findhist() [all …]
|
/external/autotest/site_utils/ |
D | dut_status.py | 169 for history in history_list: 170 status, event = history.last_diagnosis() 180 print fmt % (history.hostname, 209 for history in history_list: 210 status, _ = history.last_diagnosis() 213 print history.hostname 215 for event in history: 218 for event in history.diagnosis_interval():
|
/external/doclava/res/assets/templates/assets/ |
D | jquery-history.js | 32 var current = $.history.getCurrent(); 38 $.history = { 42 var previous = $.history.getCurrent(); 47 $.event.trigger('historyadd', [$.history.getCurrent(), previous]); 62 $.fn.history = function(fn) { function
|
/external/v8/test/cctest/ |
D | test-random-number-generator.cc | 79 uint32_t history[kHistory]; in RandomBitCorrelation() local 90 history[i] = bit_cast<uint32_t>(rng->NextInt()); in RandomBitCorrelation() 98 for (int j = ago - 1; j >= 0; j--) history[j + 1] = history[j]; in RandomBitCorrelation() 99 history[0] = random; in RandomBitCorrelation() 103 predicted = (history[ago] >> predictor_bit) & 1; in RandomBitCorrelation()
|
/external/opencv3/modules/cudabgsegm/src/ |
D | mog2.cpp | 84 MOG2Impl(int history, double varThreshold, bool detectShadows); 93 void setHistory(int history) { history_ = history; } in setHistory() argument 156 MOG2Impl::MOG2Impl(int history, double varThreshold, bool detectShadows) : in MOG2Impl() argument 159 history_ = history > 0 ? history : defaultHistory; in MOG2Impl() 248 Ptr<cuda::BackgroundSubtractorMOG2> cv::cuda::createBackgroundSubtractorMOG2(int history, double va… in createBackgroundSubtractorMOG2() argument 250 return makePtr<MOG2Impl>(history, varThreshold, detectShadows); in createBackgroundSubtractorMOG2()
|
/external/opencv3/modules/video/include/opencv2/video/ |
D | background_segm.hpp | 98 CV_WRAP virtual void setHistory(int history) = 0; 210 createBackgroundSubtractorMOG2(int history=500, double varThreshold=16, 226 CV_WRAP virtual void setHistory(int history) = 0; 299 createBackgroundSubtractorKNN(int history=500, double dist2Threshold=400.0,
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/es-ES/ |
D | es-ES_kdt_posd.dtfmt | 23 ! history type: the input value is the output decision 26 :ATTR "1" :PROP type = history 28 :ATTR "2" :PROP type = history 30 :ATTR "3" :PROP type = history
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/it-IT/ |
D | it-IT_kdt_posd.dtfmt | 23 ! history type: the input value is the output decision 26 :ATTR "1" :PROP type = history 28 :ATTR "2" :PROP type = history 30 :ATTR "3" :PROP type = history
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/de-DE/ |
D | de-DE_kdt_posd.dtfmt | 23 ! history type: the input value is the output decision 26 :ATTR "1" :PROP type = history 28 :ATTR "2" :PROP type = history 30 :ATTR "3" :PROP type = history
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-US/ |
D | en-US_kdt_posd.dtfmt | 23 ! history type: the input value is the output decision 26 :ATTR "1" :PROP type = history 28 :ATTR "2" :PROP type = history 30 :ATTR "3" :PROP type = history
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/fr-FR/ |
D | fr-FR_kdt_posd.dtfmt | 23 ! history type: the input value is the output decision 26 :ATTR "1" :PROP type = history 28 :ATTR "2" :PROP type = history 30 :ATTR "3" :PROP type = history
|
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/textana/en-GB/ |
D | en-GB_kdt_posd.dtfmt | 23 ! history type: the input value is the output decision 26 :ATTR "1" :PROP type = history 28 :ATTR "2" :PROP type = history 30 :ATTR "3" :PROP type = history
|
/external/avahi/avahi-core/ |
D | probe-sched.c | 57 AVAHI_LLIST_HEAD(AvahiProbeJob, history); 77 AVAHI_LLIST_PREPEND(AvahiProbeJob, jobs, s->history, pj); in job_new() 91 AVAHI_LLIST_REMOVE(AvahiProbeJob, jobs, s->history, pj); in job_free() 122 AVAHI_LLIST_PREPEND(AvahiProbeJob, jobs, s->history, pj); in job_mark_done() 144 AVAHI_LLIST_HEAD_INIT(AvahiProbeJob, s->history); in avahi_probe_scheduler_new() 161 while (s->history) in avahi_probe_scheduler_clear() 162 job_free(s, s->history); in avahi_probe_scheduler_clear() 343 for (pj = s->history; pj; pj = pj->jobs_next) { in find_history_job()
|
/external/icu/icu4c/source/test/intltest/ |
D | colldata.cpp | 505 int32_t CollData::minLengthInChars(const CEList *ceList, int32_t offset, int32_t *history) const in minLengthInChars() 510 if (history[offset] >= 0) { in minLengthInChars() 511 return history[offset]; in minLengthInChars() 540 rlength = minLengthInChars(ceList, roffset, history); in minLengthInChars() 573 rlength = minLengthInChars(ceList, roffset, history); in minLengthInChars() 615 rlength = minLengthInChars(ceList, roffset, history); in minLengthInChars() 631 history[offset] = shortestLength; in minLengthInChars() 639 int32_t *history = NEW_ARRAY(int32_t, clength); in minLengthInChars() local 642 history[i] = -1; in minLengthInChars() 645 int32_t minLength = minLengthInChars(ceList, offset, history); in minLengthInChars() [all …]
|
/external/iproute2/doc/ |
D | nstat.sgml | 39 <item><tt/-s/ - do not update history, so that the next time you will 42 <item><tt/-n/ - do not display anything, only update history. 43 <item><tt/-r/ - reset history. 62 <tt/Xstat/ understands when history is invalidated by system reboot 65 use invalid history. 70 variables to put their history in safe places 106 <p> <tt/NSTAT_HISTORY/ - name of history file for <tt/nstat/. 107 <p> <tt/IFSTAT_HISTORY/ - name of history file for <tt/ifstat/. 108 <p> <tt/RTACCT_HISTORY/ - name of history file for <tt/rtacct/.
|