HomeSort by relevance Sort by last modified time
    Searched refs:history (Results 1 - 25 of 191) sorted by null

1 2 3 4 5 6 7 8

  /external/jline/src/src/main/java/jline/
History.java 13 * A command history buffer.
17 public class History {
19 private List history = new ArrayList(); field in class:History
25 * Construstor: initialize a blank history.
27 public History() {
31 * Construstor: initialize History object the the specified {@link File} for
34 public History(final File historyFile) throws IOException {
48 * Load the history buffer from the specified InputStream.
55 * Load the history buffer from the specified Reader.
72 return history.size()
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_mdct_18.cpp 29 REVISION HISTORY
39 int32 *history input for overlap and add, vector updated with
51 vector for next iteration ( on history[])
133 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window)
195 tmp = history[ i];
201 history[i ] = -(tmp2 + tmp1);
205 tmp = history[ 6];
210 tmp = history[ 7];
211 history[6] = -(tmp2 + tmp1);
212 history[7] = -(tmp1 + vec[8])
    [all...]
pvmp3_mdct_6.cpp 28 REVISION HISTORY
38 int32 *history input for overlap and add, vector updated with
48 vector for next iteration ( on history[])
122 void pvmp3_mdct_6(int32 vec[], int32 *history)
148 history[3] = tmp;
149 history[2] = tmp;
153 history[4] = tmp;
154 history[1] = tmp;
157 history[5] = tmp;
158 history[0] = tmp
    [all...]
pvmp3_imdct_synth.cpp 29 REVISION HISTORY
244 int32 * history = overlap + (band * FILTERBANK_BANDS); local
250 pvmp3_mdct_18(out, history, normal_win);
256 pvmp3_mdct_18(out, history, start_win);
262 pvmp3_mdct_18(out, history, stop_win);
284 int32 temp = history[i];
286 history[i] = fxp_mul32_Q32(tmp_prev_ovr[ 6+i] << 1, short_win[6+i]);
287 history[i] += fxp_mul32_Q32(Scratch_mem[12+i] << 1, short_win[ i]);
294 out[i+6] += history[i+6];
296 history[i+6] = fxp_mul32_Q32(tmp_prev_ovr[12+i] << 1, short_win[6+i])
335 int32 * history = overlap + (band * FILTERBANK_BANDS); local
    [all...]
pvmp3_mdct_18.h 29 REVISION HISTORY
92 void pvmp3_mdct_18(int32 vec[], int32 *history, const int32 *window);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/delta/
DeltaDecoder.java 20 buf[i] += history[(distance + pos) & DISTANCE_MASK];
21 history[pos-- & DISTANCE_MASK] = buf[i];
DeltaEncoder.java 19 byte tmp = history[(distance + pos) & DISTANCE_MASK];
20 history[pos-- & DISTANCE_MASK] = in[in_off + i];
DeltaCoder.java 18 final byte[] history = new byte[DISTANCE_MAX]; field in class:DeltaCoder
  /frameworks/base/telephony/java/android/telephony/ims/
ImsSuppServiceNotification.java 47 public final String[] history; field in class:ImsSuppServiceNotification
51 String number, String[] history) {
57 this.history = history;
67 history = in.createStringArray();
77 ", history=" + Arrays.toString(history) +
93 out.writeStringArray(history);
  /frameworks/base/tests/net/java/com/android/server/net/
NetworkStatsCollectionTest.java 117 // verify that history read correctly
145 // verify that history read correctly
173 // verify that history read correctly
305 NetworkStatsHistory history; local
308 history = getHistory(emptyCollection, plan, TIME_A, TIME_C);
309 assertEquals(0L, history.getTotalBytes());
312 history = getHistory(collection, plan, TIME_A, TIME_C); i = 0;
313 assertEntry(100647, 197, 23649, 185, history.getValues(i++, null));
314 assertEntry(100647, 196, 23648, 185, history.getValues(i++, null));
315 assertEntry(18323, 76, 15032, 76, history.getValues(i++, null))
352 NetworkStatsHistory history; local
407 NetworkStatsHistory history; local
    [all...]
  /external/google-breakpad/src/testing/gtest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon20928
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/googletest/googletest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon21083
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/protobuf/gtest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon32099
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/v8/testing/gtest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon41297
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon43647
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest-linked_ptr_test.cc 44 Message* history = NULL; member in namespace:__anon682
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history = NULL
    [all...]
  /external/libchrome/base/memory/
linked_ptr_unittest.cc 15 std::string history; member in namespace:__anon24209
19 A(): mynum(num++) { history += base::StringPrintf("A%d ctor\n", mynum); }
20 virtual ~A() { history += base::StringPrintf("A%d dtor\n", mynum); }
21 virtual void Use() { history += base::StringPrintf("A%d use\n", mynum); }
27 B() { history += base::StringPrintf("B%d ctor\n", mynum); }
28 ~B() override { history += base::StringPrintf("B%d dtor\n", mynum); }
29 void Use() override { history += base::StringPrintf("B%d use\n", mynum); }
86 ASSERT_EQ(history,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SuppServiceNotification.java 39 public String[] history; field in class:SuppServiceNotification
203 + " history: " + history
  /build/make/tools/droiddoc/templates-pdk/assets/
jquery-history.js 2 * jQuery history event v0.1
32 var current = $.history.getCurrent();
33 $.event.trigger('history', [current, previousNav]);
38 $.history = {
42 var previous = $.history.getCurrent();
47 $.event.trigger('historyadd', [$.history.getCurrent(), previous]);
62 $.fn.history = function(fn) {
63 $(this).bind('history', fn);
  /external/doclava/res/assets/templates/assets/
jquery-history.js 2 * jQuery history event v0.1
32 var current = $.history.getCurrent();
33 $.event.trigger('history', [current, previousNav]);
38 $.history = {
42 var previous = $.history.getCurrent();
47 $.event.trigger('historyadd', [$.history.getCurrent(), previous]);
62 $.fn.history = function(fn) {
63 $(this).bind('history', fn);
  /external/libedit/examples/
tc1.c 137 History *hist;
146 hist = history_init(); /* Init the builtin history */
148 history(hist, &ev, H_SETSIZE, 100);
159 /* Tell editline to use this history interface */
160 el_set(el, EL_HIST, history, hist);
170 * of previous and next history.
220 * moved around in history.
222 if (history(hist, &ev, H_SET, lastevent) == -1)
224 history(hist, &ev, H_ADD , buf);
226 history(hist, &ev, H_ENTER, buf)
    [all...]
  /external/libedit/src/
readline.c 165 static History *h = NULL;
194 * generic function for moving around history
202 if (history(h, &ev, op) != 0)
249 (void)snprintf(path, sizeof(path), "%s/.history", p->pw_dir);
316 history(h, &ev, H_SETSIZE, INT_MAX); /* unlimited */
319 el_set(e, EL_HIST, history, h);
434 history(h, &ev, H_GETSIZE);
441 * history functions
446 * history expansion functions
522 if (history(h, &ev, H_FIRST) != 0
    [all...]
  /external/jline/src/src/test/java/jline/
ConsoleReaderTest.java 155 private History createSeededHistory() {
156 History history = new History(); local
157 history.addToHistory("dir");
158 history.addToHistory("cd c:\\");
159 history.addToHistory("mkdir monkey");
160 return history;
  /system/core/storaged/tests/
storaged_test.cpp 365 // generate perf history [least_recent ------> most recent]
392 vector<int> history = si.get_perf_history(); local
393 EXPECT_EQ(history.size(), 66UL);
395 EXPECT_EQ(history[i++], 4);
396 EXPECT_EQ(history[i++], 7); // 7 days
397 EXPECT_EQ(history[i++], 52); // 52 weeks
399 EXPECT_EQ(history[i++], 375);
400 EXPECT_EQ(history[i++], 370);
401 EXPECT_EQ(history[i++], 365);
402 EXPECT_EQ(history[i++], 360)
433 vector<int> history = si.get_perf_history(); local
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
MicrobenchmarkAllocationWorker.java 88 List<AllocationStats> history = new ArrayList<AllocationStats>(); local
95 history.add(stats);
111 for (AllocationStats allocationStats : history) {
123 + " identical allocations. The allocation history is:%s",

Completed in 684 milliseconds

1 2 3 4 5 6 7 8