Home
last modified time | relevance | path

Searched refs:property_ (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/ui/base/ime/
Dcandidate_window.h61 return *property_; in GetProperty()
64 *property_ = property; in SetProperty()
73 uint32 page_size() const { return property_->page_size; } in page_size()
74 void set_page_size(uint32 page_size) { property_->page_size = page_size; } in set_page_size()
77 uint32 cursor_position() const { return property_->cursor_position; } in cursor_position()
79 property_->cursor_position = cursor_position; in set_cursor_position()
83 bool is_cursor_visible() const { return property_->is_cursor_visible; } in is_cursor_visible()
85 property_->is_cursor_visible = is_cursor_visible; in set_is_cursor_visible()
90 return property_->is_vertical ? VERTICAL : HORIZONTAL; in orientation()
93 property_->is_vertical = (orientation == VERTICAL); in set_orientation()
[all …]
Dcandidate_window.cc20 : property_(new CandidateWindowProperty) { in CandidateWindow()
/external/chromium_org/chrome/common/extensions/docs/server2/
Djsc_view.py306 def _GenerateProperty(self, property_): argument
310 if not hasattr(property_, 'type_'):
311 for d in dir(property_):
313 print ('%s -> %s' % (d, getattr(property_, d)))
314 type_ = property_.type_
323 with self._current_node.Descend(property_.simple_name):
325 'name': property_.simple_name,
326 'optional': property_.optional,
327 'description': property_.description,
332 'id': _CreateId(property_, 'property'),
[all …]
/external/chromium_org/ui/views/test/
Dx11_property_change_waiter.cc19 property_(property), in X11PropertyChangeWaiter()
73 event->xproperty.atom != atom_cache_->GetAtom(property_) || in DispatchEvent()
Dx11_property_change_waiter.h44 const char* property_; variable