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

1 2 3 4 5 6

  /external/chromium/chrome/browser/history/
visit_tracker.cc 27 // searches of the transitions list. This transitions list is kept to a
40 TransitionList& transitions = *i->second;
55 // goes back). We can ignore future transitions because if you navigate, go
58 for (int i = static_cast<int>(transitions.size()) - 1; i >= 0; i--) {
59 if (transitions[i].page_id <= page_id && transitions[i].url == referrer) {
61 return transitions[i].visit_id;
73 TransitionList* transitions = hosts_[host];
74 if (!transitions) {
    [all...]
visit_tracker.h 17 // Tracks history transitions between pages. The history backend uses this to
18 // link up page transitions to form a chain of page visits, and to set the
35 // transitions/visit IDs for it.
57 void CleanupTransitionList(TransitionList* transitions);
59 // Maps render view hosts to lists of recent transitions.
  /external/chromium_org/chrome/browser/history/
visit_tracker.cc 27 // searches of the transitions list. This transitions list is kept to a
40 TransitionList& transitions = *i->second;
55 // goes back). We can ignore future transitions because if you navigate, go
58 for (int i = static_cast<int>(transitions.size()) - 1; i >= 0; i--) {
59 if (transitions[i].page_id <= page_id && transitions[i].url == referrer) {
61 return transitions[i].visit_id;
73 TransitionList* transitions = hosts_[host];
74 if (!transitions) {
    [all...]
visit_tracker.h 16 // Tracks history transitions between pages. The history backend uses this to
17 // link up page transitions to form a chain of page visits, and to set the
34 // transitions/visit IDs for it.
56 void CleanupTransitionList(TransitionList* transitions);
58 // Maps render view hosts to lists of recent transitions.
  /packages/apps/VideoEditor/src/com/android/videoeditor/
TransitionType.java 48 * Get transitions for the specified category
52 * @return The array of transitions of the specified category
55 final TransitionType[] transitions = new TransitionType[8]; local
56 transitions[0] = new TransitionType(
59 transitions[1] = new TransitionType(
62 transitions[2] = new TransitionType(
65 transitions[3] = new TransitionType(
68 transitions[4] = new TransitionType(
71 transitions[5] = new TransitionType(
74 transitions[6] = new TransitionType
    [all...]
TransitionsActivity.java 88 final TransitionType[] transitions = mAdapter.getTransitions(); local
89 for (int i = 0; i < transitions.length; i++) {
90 if (transitions[i].getType() == transitionType) {
  /external/bison/src/
state.c 40 static transitions *
44 transitions *res = xmalloc (offsetof (transitions, states) + states_size);
57 transitions_to (transitions *shifts, symbol_number sym)
70 | Error transitions. |
141 res->transitions = NULL;
168 res->transitions =
169 transitions_new (s->transitions->num, s->transitions->states);
191 free (s->transitions);
    [all...]
state.h 54 Each transition structure describes the possible transitions out
56 contains a vector of numbers of the states that transitions can go
61 deletes transitions by having them point to zero.
108 | Transitions. |
115 } transitions; typedef in typeref:struct:__anon2788
119 TRANSITIONS->states[Num]? Can be a token (amongst which the error
122 #define TRANSITION_SYMBOL(Transitions, Num) \
123 (Transitions->states[Num]->accessing_symbol)
125 /* Is the TRANSITIONS->states[Num] a shift? (as opposed to gotos). */
127 #define TRANSITION_IS_SHIFT(Transitions, Num)
202 transitions *transitions; member in struct:state
    [all...]
lalr.c 84 transitions *sp = states[s]->transitions;
118 transitions *sp = states[s]->transitions;
172 transitions *sp = states[stateno]->transitions;
243 s = transitions_to (s->transitions,
333 transitions *sp = s->transitions;
335 /* Transitions are only disabled during conflict resolution, and tha
    [all...]
conflicts.c 224 transitions *trans = s->transitions;
332 transitions *trans = s->transitions;
432 transitions *trans = s->transitions;
graphviz.c 92 FOR_EACH_SHIFT (s->transitions, n)
93 bitset_set (*no_reduce_set, TRANSITION_SYMBOL (s->transitions, n));
103 /* If no lookahead tokens were valid transitions, this reduction is
184 /* Build the lookahead tokens lists, one for enabled transitions and one
print_graph.c 142 transitions const *trans = s->transitions;
  /external/chromium_org/chrome/tools/
history-viz.py 86 the .transitions array."""
90 self.transitions = []
92 def Transitions(self):
95 for trans in self.transitions:
172 edge.transitions.append(trans)
212 # Gather up all the transitions into the label.
214 transitions = edge.Transitions()
215 for trans, count in transitions.items():
237 # If the edge is from the start and the transitions are fishy, make i
    [all...]
  /external/chromium_org/v8/src/
transitions-inl.h 32 #include "transitions.h"
98 void TransitionArray::SetPrototypeTransitions(FixedArray* transitions,
101 ASSERT(transitions->IsFixedArray());
103 WRITE_FIELD(this, kPrototypeTransitionsOffset, transitions);
105 heap, this, kPrototypeTransitionsOffset, transitions, mode);
property.h 32 #include "transitions.h"
283 // Property callbacks does not include transitions to callbacks.
322 // Is the result is a property excluding transitions and the null descriptor?
377 TransitionArray* transitions = map->transitions(); local
378 return transitions->GetTarget(number_);
387 TransitionArray* transitions = map->transitions(); local
388 return transitions->GetTargetDetails(number_);
410 return map->transitions()->GetTarget(number_)
    [all...]
  /libcore/luni/src/main/java/libcore/util/
ZoneInfo.java 71 int[] transitions = new int[tzh_timecnt]; local
72 it.readIntArray(transitions, 0, transitions.length);
92 return new ZoneInfo(id, transitions, type, gmtOffsets, isDsts);
95 private ZoneInfo(String name, int[] transitions, byte[] types, int[] gmtOffsets, byte[] isDsts) {
96 mTransitions = transitions;
301 ",transitions=" + mTransitions.length +
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
mergeChangeLogs.pl 100 + JSC is failing to propagate anonymous slot count on some transitions
128 JSC is failing to propagate anonymous slot count on some transitions
165 - JSC is failing to propagate anonymous slot count on some transitions
207 JSC is failing to propagate anonymous slot count on some transitions
254 JSC is failing to propagate anonymous slot count on some transitions
296 JSC is failing to propagate anonymous slot count on some transitions
311 JSC is failing to propagate anonymous slot count on some transitions
  /external/chromium_org/third_party/icu/source/tools/tzcode/
tz2icu.cpp 157 // A collection of transitions from one ZoneType to another, together
159 // list of transitions between a smaller list of ZoneTypes.
164 vector<Transition> transitions; member in struct:ZoneInfo
362 // Build transitions vector out of corresponding times and types.
375 // transitions into zoneinfo.res, because data is limited to singed
379 info.transitions.push_back(Transition(transitionTimes[i], transitionTypes[i]));
384 // If there are any transitions before the 32bit minimum time,
386 vector<Transition>::iterator itr = info.transitions.begin();
387 info.transitions.insert(itr, Transition(LOWEST_TIME32, transitionTypes[minidx]));
395 info.transitions.push_back(Transition(transitionTimes[i], transitionTypes[i]))
    [all...]
  /external/icu4c/tools/tzcode/
tz2icu.cpp 157 // A collection of transitions from one ZoneType to another, together
159 // list of transitions between a smaller list of ZoneTypes.
164 vector<Transition> transitions; member in struct:ZoneInfo
362 // Build transitions vector out of corresponding times and types.
375 // transitions into zoneinfo.res, because data is limited to singed
379 info.transitions.push_back(Transition(transitionTimes[i], transitionTypes[i]));
384 // If there are any transitions before the 32bit minimum time,
386 vector<Transition>::iterator itr = info.transitions.begin();
387 info.transitions.insert(itr, Transition(LOWEST_TIME32, transitionTypes[minidx]));
395 info.transitions.push_back(Transition(transitionTimes[i], transitionTypes[i]))
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1493017.js 29 // transitions do not show up as properties in for in.
43 // delete map transitions.
49 // Test that the deleted map transitions do not show up in for in.
regress-crbug-122271.js 30 // Tests that ElementsKind transitions and regular transitions don't
  /external/v8/test/mjsunit/regress/
regress-1493017.js 29 // transitions do not show up as properties in for in.
43 // delete map transitions.
49 // Test that the deleted map transitions do not show up in for in.
regress-crbug-122271.js 30 // Tests that ElementsKind transitions and regular transitions don't
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFAState.java 74 /** Track the transitions emanating from this DFA state. The List
77 protected List<Transition> transitions = field in class:DFAState
156 * can easily check for non-epsilon transitions because the only
159 * for all possible transitions. That is of the order: size(label space)
177 return (Transition)transitions.get(i);
181 return transitions.size();
185 transitions.add(t);
192 transitions.add( new Transition(label, target) );
193 return transitions.size()-1;
197 return transitions.get(trans)
    [all...]
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneInfo.java 203 int[] transitions = null; local
205 transitions = new int[NUM_OF_TRANSITIONS];
211 transitions[numOfTransitions++] = objTransitions[i];
217 return transitions;
337 " same dst, same transitions:\n" + this.toString() + "\n" + other.toString());

Completed in 1395 milliseconds

1 2 3 4 5 6