Searched defs:start_at (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/ui/v2/src/
H A Dview.cc59 void NotifyViewTreeChangeUp(View* start_at, argument
61 for (View* current = start_at; current; current = current->parent())
65 void NotifyViewTreeChangeDown(View* start_at, argument
67 NotifyViewTreeChangeAtReceiver(start_at, params);
68 View::Children::const_iterator it = start_at->children().begin();
69 for (; it != start_at->children().end(); ++it)
/external/chromium_org/chrome/browser/autocomplete/
H A Dautocomplete_provider_unittest.cc72 void AddResults(int start_at, int num);
74 int start_at,
120 void TestProvider::AddResults(int start_at, int num) { argument
121 AddResultsWithSearchTermsArgs(start_at,
129 int start_at,
133 for (int i = start_at; i < num; i++) {
128 AddResultsWithSearchTermsArgs( int start_at, int num, AutocompleteMatch::Type type, const TemplateURLRef::SearchTermsArgs& search_terms_args) argument
/external/chromium_org/mojo/services/public/cpp/view_manager/lib/
H A Dview.cc40 View* start_at,
43 for (View* current = start_at; current; current = current->parent())
48 View* start_at,
51 NotifyViewTreeChangeAtReceiver(start_at, params, change_applied);
52 View::Children::const_iterator it = start_at->children().begin();
53 for (; it != start_at->children().end(); ++it)
39 NotifyViewTreeChangeUp( View* start_at, const ViewObserver::TreeChangeParams& params, bool change_applied) argument
47 NotifyViewTreeChangeDown( View* start_at, const ViewObserver::TreeChangeParams& params, bool change_applied) argument
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_controller.cc139 // Returns the next view after |start_at| that is focusable. Returns NULL if
140 // there are no focusable children of |ancestor| after |start_at|.
142 View* start_at,
144 DCHECK(ancestor->Contains(start_at));
145 View* parent = start_at;
141 GetNextFocusableView(View* ancestor, View* start_at, bool forward) argument
/external/valgrind/main/coregrind/m_debuginfo/
H A Ddebuginfo.c3993 Int start_at = 1 + fnlen - n_name; local
3994 if (start_at < 0) start_at = 0;
3995 vg_assert(start_at < fnlen);
3996 i = start_at; j = 0;
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_output.c8221 struct sctp_nets *net, *start_at, *sack_goes_to = NULL, *old_start_at = NULL; local
8388 start_at = asoc->last_net_cmt_send_started;
8389 if (start_at == NULL) {
8391 start_at = TAILQ_FIRST(&asoc->nets);
8393 start_at = TAILQ_NEXT(asoc->last_net_cmt_send_started, sctp_next);
8394 if (start_at == NULL) {
8395 start_at = TAILQ_FIRST(&asoc->nets);
8398 asoc->last_net_cmt_send_started = start_at;
8400 start_at = TAILQ_FIRST(&asoc->nets);
8414 for (net = start_at ; ne
[all...]
H A Dsctp_uio.h954 int32_t start_at; /* start at this one */ member in struct:sctp_cwnd_log_req

Completed in 158 milliseconds