/packages/experimental/Bummer/src/com/android/dreams/bummer/ |
BummerView.java | 43 final View parent = (View) BummerView.this.getParent(); 44 if (parent == null) 47 final float framew = parent.getMeasuredWidth(); 48 final float frameh = parent.getMeasuredHeight(); 92 final View parent = (View) this.getParent(); local 93 parent.addOnLayoutChangeListener(new OnLayoutChangeListener() { 96 if (v == parent && right != oldRight) {
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
BummerView.java | 43 final View parent = (View) BummerView.this.getParent(); 44 if (parent == null) 47 final float framew = parent.getMeasuredWidth(); 48 final float frameh = parent.getMeasuredHeight(); 92 final View parent = (View) this.getParent(); local 93 parent.addOnLayoutChangeListener(new OnLayoutChangeListener() { 96 if (v == parent && right != oldRight) {
|
/external/iproute2/examples/diffserv/ |
Edge32-ca-u32 | 57 $TC filter add dev $INDEV parent ffff: protocol ip prio 1 u32 \ 61 $TC filter add dev $INDEV parent ffff: protocol ip prio 2 u32 \ 70 $TC filter add dev $INDEV parent ffff: protocol ip prio 3 u32 \ 74 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 u32 \ 82 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 u32 \ 86 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 u32 \ 97 $TC filter add dev $INDEV parent ffff: protocol ip prio 8 u32 \ 101 $TC filter add dev $INDEV parent ffff: protocol ip prio 9 u32 \ 109 $TC filter add dev $INDEV parent ffff: protocol ip prio 10 u32 \ 113 $TC filter add dev $INDEV parent ffff: protocol ip prio 11 u32 [all...] |
Edge31-cb-chains | 52 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 handle 1 fw \ 59 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 handle 1 fw \ 66 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 1 fw \ 73 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 2 fw \ 106 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \ 108 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \ 110 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \ 112 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \ 122 $TC filter ls dev $INDEV parent ffff: 129 $TC filter ls $EGDEV parent 1: [all...] |
Edge32-cb-chains | 55 $TC filter add dev $INDEV parent ffff: protocol ip prio 1 handle 1 fw \ 58 $TC filter add dev $INDEV parent ffff: protocol ip prio 2 handle 1 fw \ 65 $TC filter add dev $INDEV parent ffff: protocol ip prio 3 handle 1 fw \ 68 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 handle 1 fw \ 75 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 handle 1 fw \ 78 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 handle 1 fw \ 85 $TC filter add dev $INDEV parent ffff: protocol ip prio 7 handle 2 fw \ 118 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \ 120 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \ 122 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 [all...] |
Edge32-cb-u32 | 55 $TC filter add dev $INDEV parent ffff: protocol ip prio 1 u32 \ 58 $TC filter add dev $INDEV parent ffff: protocol ip prio 2 u32 \ 66 $TC filter add dev $INDEV parent ffff: protocol ip prio 3 u32 \ 69 $TC filter add dev $INDEV parent ffff: protocol ip prio 4 u32 \ 76 $TC filter add dev $INDEV parent ffff: protocol ip prio 5 u32 \ 79 $TC filter add dev $INDEV parent ffff: protocol ip prio 6 u32 \ 87 $TC filter add dev $INDEV parent ffff: protocol ip prio 7 u32 \ 119 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \ 121 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 \ 123 $TC filter add $EGDEV parent 1:0 protocol ip prio 1 [all...] |
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
XMLFilterImpl.java | 64 * Construct an empty XML filter, with no parent. 66 * <p>This filter will have no parent: you must assign a parent 81 * Construct an XML filter with the specified parent. 83 * @param parent the XML reader from which this filter receives its events. 88 public XMLFilterImpl (XMLReader parent) 90 setParent(parent); 102 * Set the parent reader. 106 * configuration requests. The parent may itself be another filter.</p> 108 * <p>If there is no parent reader set, any attempt to pars 703 private XMLReader parent = null; field in class:XMLFilterImpl [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderFullScreen.cpp | 112 RenderObject* RenderFullScreen::wrapRenderer(RenderObject* object, RenderObject* parent, Document* document) 116 if (parent && !parent->isChildAllowed(fullscreenRenderer, fullscreenRenderer->style())) { 121 // |object->parent()| can be null if the object is not yet attached 122 // to |parent|. 123 if (RenderObject* parent = object->parent()) { 126 // Since we are moving the |object| to a new parent |fullscreenRenderer|, 130 parent->addChild(fullscreenRenderer, object); 134 // Because objects moved from |parent| to |fullscreenRenderer|, we want t [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
textView.py | 12 def __init__(self, parent, title, text, modal=True): 16 Toplevel.__init__(self, parent) 19 parent.winfo_rootx() + 10, 20 parent.winfo_rooty() + 10)) 28 self.parent = parent 37 self.transient(parent) 62 def view_text(parent, title, text, modal=True): 63 return TextViewer(parent, title, text, modal) 65 def view_file(parent, title, filename, encoding=None, modal=True) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
textView.py | 12 def __init__(self, parent, title, text, modal=True): 16 Toplevel.__init__(self, parent) 19 parent.winfo_rootx() + 10, 20 parent.winfo_rooty() + 10)) 28 self.parent = parent 37 self.transient(parent) 62 def view_text(parent, title, text, modal=True): 63 return TextViewer(parent, title, text, modal) 65 def view_file(parent, title, filename, encoding=None, modal=True) [all...] |
/external/chromium/chrome/browser/extensions/ |
extension_bookmark_helpers.cc | 23 const BookmarkNode* parent = node->parent(); local 24 if (parent) { 25 dict->SetString(keys::kParentIdKey, base::Int64ToString(parent->id())); 26 dict->SetInteger(keys::kIndexKey, parent->GetIndexOf(node)); 104 const BookmarkNode* parent = node->parent(); local 105 int index = parent->GetIndexOf(node); 106 model->Remove(parent, index);
|
/external/chromium_org/chrome/browser/extensions/api/bookmarks/ |
bookmark_api_helpers.cc | 46 const BookmarkNode* parent = node->parent(); local 47 if (parent) { 49 base::Int64ToString(parent->id()))); 50 bookmark_tree_node->index.reset(new int(parent->GetIndexOf(node))); 117 const BookmarkNode* parent = node->parent(); local 118 model->Remove(parent, parent->GetIndexOf(node));
|
/external/chromium/chrome/browser/bookmarks/ |
recently_used_folders_combo_model.cc | 30 RemoveNode(node->parent()); 32 // Make the parent the first item, unless it's the bookmark bar or other node. 33 if (node->parent() != model->GetBookmarkBarNode() && 34 node->parent() != model->other_node()) { 35 nodes_.insert(nodes_.begin(), node->parent()); 48 node->parent());
|
/external/chromium/chrome/browser/chromeos/options/ |
network_config_view.h | 79 views::View* parent, 99 // Called to get title for parent NetworkConfigView dialog box. 113 // post-construction after the view has a parent window. 120 explicit ChildNetworkConfigView(NetworkConfigView* parent, Network* network) 122 parent_(parent) {} 123 explicit ChildNetworkConfigView(NetworkConfigView* parent) 124 : parent_(parent) {}
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
ProgressIndicator.js | 55 * @param {!Element} parent 57 show: function(parent) 59 parent.appendChild(this.element); 64 var parent = this.element.parentElement; 65 if (parent) 66 parent.removeChild(this.element);
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
BidiContext.h | 42 static PassRefPtr<BidiContext> create(unsigned char level, WTF::Unicode::Direction, bool override = false, BidiEmbeddingSource = FromStyleOrDOM, BidiContext* parent = 0); 44 BidiContext* parent() const { return m_parent.get(); } function in class:WebCore::BidiContext 58 BidiContext(unsigned char level, WTF::Unicode::Direction direction, bool override, BidiEmbeddingSource source, BidiContext* parent) 63 , m_parent(parent) 68 static PassRefPtr<BidiContext> createUncached(unsigned char level, WTF::Unicode::Direction, bool override, BidiEmbeddingSource, BidiContext* parent);
|
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
mucroomlookuptask.h | 55 CreateLookupTaskForRoomName(XmppTaskParentInterface* parent, 60 CreateLookupTaskForRoomJid(XmppTaskParentInterface* parent, 64 CreateLookupTaskForHangoutId(XmppTaskParentInterface* parent, 68 CreateLookupTaskForExternalId(XmppTaskParentInterface* parent, 80 MucRoomLookupTask(XmppTaskParentInterface* parent,
|
pubsubtasks.h | 51 PubSubRequestTask(XmppTaskParentInterface* parent, 66 PubSubReceiveTask(XmppTaskParentInterface* parent, 69 : ReceiveTask(parent), 91 PubSubPublishTask(XmppTaskParentInterface* parent, 112 PubSubRetractTask(XmppTaskParentInterface* parent,
|
/external/chromium_org/third_party/skia/src/svg/ |
SkSVGElements.cpp | 35 SkSVGElement* parent = fParent; local 36 while (parent) { 37 if (parent->getType() != SkSVGType_G) 39 parent = parent->fParent;
|
/external/chromium_org/third_party/sqlite/src/test/ |
crashtest1.c | 27 static void do_some_sql(int parent){ 46 kill(parent, SIGKILL); 60 kill(parent, SIGKILL); 72 int parent = getpid(); local 87 do_some_sql(parent);
|
/external/markdown/markdown/ |
blockparser.py | 51 Given a list of lines, an ElementTree object (not just a parent Element) 52 is created and the root element is passed to the parser as the parent. 63 def parseChunk(self, parent, text): 71 The ``parent`` etree Element passed in is altered in place. 75 self.parseBlocks(parent, text.split('\n\n')) 77 def parseBlocks(self, parent, blocks): 91 if processor.test(parent, blocks[0]): 92 processor.run(parent, blocks)
|
/external/skia/src/svg/ |
SkSVGElements.cpp | 35 SkSVGElement* parent = fParent; local 36 while (parent) { 37 if (parent->getType() != SkSVGType_G) 39 parent = parent->fParent;
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListHeterogeneous.java | 40 protected View createView(int position, ViewGroup parent, int desiredHeight) { 44 position, parent.getContext(), getValueAtPosition(position), desiredHeight); 47 position, parent.getContext(), getValueAtPosition(position), desiredHeight); 50 position, parent.getContext(), getValueAtPosition(position), desiredHeight); 57 public View convertView(int position, View convertView, ViewGroup parent) {
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/ |
MemoryBinaryBody.java | 46 private Entity parent = null;
field in class:MemoryBinaryBody 69 return parent;
75 public void setParent(Entity parent) {
76 this.parent = parent;
|
TempFileBinaryBody.java | 45 private Entity parent = null;
field in class:TempFileBinaryBody 68 return parent;
74 public void setParent(Entity parent) {
75 this.parent = parent;
|