Searched defs:history (Results 1 - 25 of 34) sorted by relevance

12

/external/doclava/res/assets/templates/assets/
H A Djquery-history.js2 * 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/libchrome/base/memory/
H A Dlinked_ptr_unittest.cc15 std::string history; member in namespace:__anon9904
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,
/external/lzma/Java/Tukaani/src/org/tukaani/xz/delta/
H A DDeltaCoder.java18 final byte[] history = new byte[DISTANCE_MAX]; field in class:DeltaCoder
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-linked_ptr_test.cc44 Message* history = NULL; member in namespace:__anon6878
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
[all...]
/external/googletest/googletest/test/
H A Dgtest-linked_ptr_test.cc44 Message* history = NULL; member in namespace:__anon7025
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
[all...]
/external/protobuf/gtest/test/
H A Dgtest-linked_ptr_test.cc44 Message* history = NULL; member in namespace:__anon16162
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
[all...]
/external/v8/testing/gtest/test/
H A Dgtest-linked_ptr_test.cc44 Message* history = NULL; member in namespace:__anon21920
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
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/
H A Dgtest-linked_ptr_test.cc44 Message* history = NULL; member in namespace:__anon24149
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
[all...]
/external/junit/src/main/java/org/junit/experimental/max/
H A DMaxCore.java21 * A replacement for JUnitCore, which keeps track of runtime and failure history, and reorders tests
52 private final MaxHistory history; field in class:MaxCore
55 history = MaxHistory.forFolder(storedResults);
88 core.addListener(history.listener());
101 Collections.sort(leaves, history.testComparator());
/external/libxml2/doc/
H A Dlibxml-doc.el117 (defvar libxmldoc-symbol-history nil
153 'libxmldoc-symbol-history))
/external/jline/src/src/main/java/jline/
H A DHistory.java13 * A command history buffer.
19 private List history = new ArrayList(); field in class:History
25 * Construstor: initialize a blank history.
48 * Load the history buffer from the specified InputStream.
55 * Load the history buffer from the specified Reader.
72 return history.size();
76 * Clear the history buffer
79 history.clear();
84 * Add the specified buffer to the end of the history. The pointer is set to
85 * the end of the history buffe
[all...]
H A DConsoleReader.java19 * saveable command history, and command line editing. On some platforms,
127 History history = new History(); field in class:ConsoleReader
543 searchIndex = history.searchBackwards(searchTerm.toString());
545 searchIndex = history.searchBackwards(searchTerm.toString(), searchIndex);
552 searchIndex = history.searchBackwards(searchTerm.toString());
558 searchIndex = history.searchBackwards(searchTerm.toString());
564 history.setCurrentIndex(searchIndex);
565 setBuffer(history.current());
566 buf.cursor = history.current().indexOf(searchTerm.toString());
580 printSearchStatus(searchTerm.toString(), history
1670 setHistory(final History history) argument
[all...]
/external/flac/libFLAC/
H A Dlpc.c274 const FLAC__int32 *history; local
287 history = data;
289 sum += qlp_coeff[j] * (*(--history));
290 sumo += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*history);
292 fprintf(stderr,"FLAC__lpc_compute_residual_from_qlp_coefficients: OVERFLOW, i=%u, j=%u, c=%d, d=%d, sumo=%" PRId64 "\n",i,j,qlp_coeff[j],*history,sumo);
534 const FLAC__int32 *history; local
546 history = data;
548 sum += (FLAC__int64)qlp_coeff[j] * (FLAC__int64)(*(--history));
791 const FLAC__int32 *r = residual, *history; local
804 history
1051 const FLAC__int32 *r = residual, *history; local
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dcolldata.cpp504 int32_t CollData::minLengthInChars(const CEList *ceList, int32_t offset, int32_t *history) const
509 if (history[offset] >= 0) {
510 return history[offset];
539 rlength = minLengthInChars(ceList, roffset, history);
568 //history[roffset++] = -1;
569 //history[roffset++] = 1;
572 rlength = minLengthInChars(ceList, roffset, history);
614 rlength = minLengthInChars(ceList, roffset, history);
630 history[offset] = shortestLength;
638 int32_t *history local
[all...]
H A Dtstnorm.cpp667 char history[64]; local
668 uprv_strcpy(history, moves);
669 history[move-moves]=0;
672 name, history, c1, c2);
679 char history[64]; local
680 uprv_strcpy(history, moves);
681 history[move-moves]=0;
684 name, history, iter.getIndex(), expectIndex[iter32.getIndex()]);
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
H A DScriptEditor.java444 private ContentTextWatcher(EditHistory history) { argument
445 mmEditHistory = history;
473 * Keeps track of all the edit history of a text.
480 * Adds a new edit operation to the history at the current position. If executed after a call to
481 * getPrevious() removes all the future history (elements with positions >= current history
492 * Traverses the history backward by one position, returns and item at that position.
503 * Traverses the history forward by one position, returns and item at that position.
/external/syslinux/com32/hdt/
H A Dhdt-cli.h92 #define INPUT hdt_cli.history[hdt_cli.history_pos]
97 char history[MAX_HISTORY_SIZE+1][MAX_LINE_SIZE]; member in struct:s_cli
164 #define CLI_HISTORY "history"
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.commands_3.6.0.I20100512-1500.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.team.core_3.5.100.R36x_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jline/
H A Djline-1.0.jarMETA-INF/ META-INF/MANIFEST.MF jline/ jline/ANSIBuffer$ANSICodes.class ANSIBuffer.java ...
/external/mksh/src/
H A Dsh.h904 EXTERN const char Thistory[] E_INIT("history");
913 EXTERN const char Tnot_in_history[] E_INIT("not in history");
1050 #define Thistory "history"
1059 #define Tnot_in_history "not in history"
1153 /* temporary file used for history editing (fc -e) */
1961 EXTERN char **history; /* saved commands */ variable
1962 EXTERN char **histptr; /* last history item */
1963 EXTERN mksh_ari_t histsize; /* history size */
/external/libxml2/
H A Dxmlschemas.c827 int *history; /* list of (depth, state-id) tuples */ member in struct:_xmlSchemaIDCStateObj
3885 if (sto->history != NULL)
3886 xmlFree(sto->history);
22530 * Register a match in the state object history.
22532 if (sto->history == NULL) {
22533 sto->history = (int *) xmlMalloc(5 * sizeof(int));
22534 if (sto->history == NULL) {
22536 "allocating the state object history", NULL);
22542 sto->history = (int *) xmlRealloc(sto->history,
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/external/robolectric/v1/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...

Completed in 731 milliseconds

12