/external/chromium_org/ui/keyboard/ |
keyboard_layout_manager.h | 26 virtual void OnWindowAddedToLayout(aura::Window* child) OVERRIDE; 27 virtual void OnWillRemoveWindowFromLayout(aura::Window* child) OVERRIDE {} 28 virtual void OnWindowRemovedFromLayout(aura::Window* child) OVERRIDE {} 29 virtual void OnChildWindowVisibilityChanged(aura::Window* child, 31 virtual void SetChildBounds(aura::Window* child,
|
keyboard_layout_manager.cc | 29 void KeyboardLayoutManager::OnWindowAddedToLayout(aura::Window* child) { 31 keyboard_ = child; 36 void KeyboardLayoutManager::SetChildBounds(aura::Window* child, 42 DCHECK(child == keyboard_); 50 gfx::Rect old_bounds = child->bounds(); 51 SetChildBoundsDirect(child, requested_bounds); 52 if (old_bounds.height() == 0 && child->bounds().height() != 0) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
StackScrollState.java | 60 ExpandableView child = (ExpandableView) mHostView.getChildAt(i); local 61 ViewState viewState = mStateMap.get(child); 64 mStateMap.put(child, viewState); 67 viewState.height = child.getIntrinsicHeight(); 68 viewState.gone = child.getVisibility() == View.GONE; 78 public void removeViewStateForView(View child) { 79 mStateMap.remove(child); 89 ExpandableView child = (ExpandableView) mHostView.getChildAt(i); local 90 ViewState state = mStateMap.get(child); 92 Log.wtf(CHILD_NOT_FOUND_TAG, "No child state was found when applying this state " [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGTextPath.cpp | 36 bool RenderSVGTextPath::isChildAllowed(RenderObject* child, RenderStyle*) const 38 if (child->isText()) 39 return SVGRenderSupport::isRenderableTextNode(child); 43 ASSERT(child->node()); 44 if (isSVGAltGlyphElement(*child->node())) 48 return child->isSVGInline() && !child->isSVGTextPath();
|
RenderSVGInline.cpp | 34 bool RenderSVGInline::isChildAllowed(RenderObject* child, RenderStyle* style) const 36 if (child->isText()) 37 return SVGRenderSupport::isRenderableTextNode(child); 41 if (isSVGAElement(*child->node())) 45 if (!child->isSVGInline() && !child->isSVGInlineText()) 48 return RenderInline::isChildAllowed(child, style); 134 void RenderSVGInline::addChild(RenderObject* child, RenderObject* beforeChild) 136 RenderInline::addChild(child, beforeChild); 137 SVGResourcesCache::clientWasAddedToTree(child, child->style()) [all...] |
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
StackLayout.java | 24 // A layout designed to make the children same size as the first child. 36 // Measure only the first child. 37 final View child = getChildAt(0); local 38 measureChild(child, widthMeasureSpec, heightMeasureSpec); 41 int width = child.getMeasuredWidth(); 42 int height = child.getMeasuredHeight(); 53 final View child = getChildAt(i); local 54 if (child.getVisibility() != View.GONE) { 55 child.layout(0, 0, r - l, b - t);
|
/external/elfutils/0.153/libdw/ |
libdw_visit_scopes.c | 106 struct Dwarf_Die_Chain child; local 108 child.parent = root; 109 if (INTUSE(dwarf_child) (&root->die, &child.die) != 0) 114 return __libdw_visit_scopes (depth + 1, &child, 120 child.prune = false; 124 int result = (*previsit) (depth + 1, &child, arg); 129 if (!child.prune) 130 switch (classify_die (&child.die)) 135 if (INTUSE(dwarf_haschildren) (&child.die)) 151 Dwarf_Attribute *attr = INTUSE(dwarf_attr) (&child.die [all...] |
/external/lldb/test/benchmarks/stepping/ |
TestSteppingSpeed.py | 43 # So that the child gets torn down after the test. 44 self.child = pexpect.spawn('%s %s %s' % (self.lldbHere, self.lldbOption, exe)) 45 child = self.child 47 # Turn on logging for what the child sends back. 49 child.logfile_read = sys.stdout 51 child.expect_exact(prompt) 52 child.sendline('breakpoint set %s' % break_spec) 53 child.expect_exact(prompt) 54 child.sendline('run' [all...] |
/frameworks/base/core/java/android/view/ |
ViewParent.java | 30 * child of this view parent. This will schedule a layout pass of the view 43 * Called when a child wants the view hierarchy to gather and report 50 * @param child the view requesting the transparent region computation 53 public void requestTransparentRegion(View child); 56 * All or part of a child is dirty and needs to be redrawn. 58 * @param child The child which is dirty 59 * @param r The area within the child that is invalid 61 public void invalidateChild(View child, Rect r); 64 * All or part of a child is dirty and needs to be redrawn [all...] |
/external/chromium_org/webkit/data/test_shell/sort/ |
sort-heap.js | 27 var child = root * 2 + 1; 28 if (child <= end) { 29 if (child < end && sort.compare(child, child + 1) < 0) { 30 child++; 32 if (sort.compare(root, child) < 0) { 33 sort.swap(root, child); 34 root = child; 44 child = i * 2 + 1 [all...] |
/external/lldb/test/benchmarks/turnaround/ |
TestCompileRunToBreakpointTurnaround.py | 39 # So that the child gets torn down after the test. 40 self.child = pexpect.spawn('%s %s %s' % (self.lldbExec, self.lldbOption, exe)) 41 child = self.child 43 # Turn on logging for what the child sends back. 45 child.logfile_read = sys.stdout 47 child.expect_exact(prompt) 48 child.sendline('breakpoint set -F %s' % function) 49 child.expect_exact(prompt) 50 child.sendline('run' [all...] |
/external/lldb/test/benchmarks/disassembly/ |
TestXcode41Vs42GDBDisassembly.py | 54 # So that the child gets torn down after the test. 55 self.child = pexpect.spawn('%s --nx %s' % (gdb_exe_path, exe)) 56 child = self.child 58 # Turn on logging for what the child sends back. 60 child.logfile_read = sys.stdout 62 child.expect_exact(prompt) 63 child.sendline('break %s' % function) 64 child.expect_exact(prompt) 65 child.sendline('run' [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
WrapContentsInDummySpanCommand.cpp | 45 for (Node* child = m_element->firstChild(); child; child = child->nextSibling()) 46 children.append(child); 70 for (Node* child = m_dummySpan->firstChild(); child; child = child->nextSibling()) 71 children.append(child); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXARIAGrid.cpp | 54 bool AXARIAGrid::addTableCellChild(AXObject* child, HashSet<AXObject*>& appendedRows, unsigned& columnCount) 56 if (!child || !child->isTableRow() || child->ariaRoleAttribute() != RowRole) 59 AXTableRow* row = toAXTableRow(child); 100 for (RefPtr<AXObject> child = firstChild(); child; child = child->nextSibling()) { 102 if (!addTableCellChild(child.get(), appendedRows, columnCount)) [all...] |
/external/lldb/test/benchmarks/frame_variable/ |
TestFrameVariableResponse.py | 43 # So that the child gets torn down after the test. 44 self.child = pexpect.spawn('%s %s %s' % (self.lldbHere, self.lldbOption, exe)) 45 child = self.child 47 # Turn on logging for what the child sends back. 49 child.logfile_read = sys.stdout 52 child.sendline('breakpoint set %s' % break_spec) 53 child.expect_exact(prompt) 56 child.sendline('run') # Aka 'process launch'. 57 child.expect_exact(prompt [all...] |
/external/lldb/test/benchmarks/startup/ |
TestStartupDelays.py | 51 # So that the child gets torn down after the test. 52 self.child = pexpect.spawn('%s %s' % (self.lldbHere, self.lldbOption)) 53 child = self.child 55 # Turn on logging for what the child sends back. 57 child.logfile_read = sys.stdout 61 child.sendline('file %s' % exe) # Aka 'target create'. 62 child.expect_exact(prompt) 66 child.sendline('breakpoint set %s' % break_spec) 67 child.expect_exact(prompt [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/data/ |
ChainedData.java | 96 Data child = d.getChild(path); local 97 if (child != null) { 102 return child; 106 first = child; 111 children.add(child); 114 children.add(child); 131 Data child = getChild(path); local 132 if (child != null) { 133 return child; 142 Data child = getChild(path) local 152 Data child = getChild(path); local 167 Data child = getChild(path); local 177 Data child = getChild(path); local 187 Data child = getChild(path); local [all...] |
/cts/suite/audio_quality/lib/src/task/ |
TaskBatch.cpp | 38 bool TaskBatch::addChild(TaskGeneric* child) 40 if (child->getType() != TaskGeneric::ETaskCase) { 41 LOGE("TaskBatch::addChild wrong child type %d", child->getType()); 44 return TaskGeneric::addChild(child); 47 bool runAlways(TaskGeneric* child, void* data) 49 child->run();
|
/external/chromium_org/athena/common/ |
fill_layout_manager.cc | 30 void FillLayoutManager::OnWindowAddedToLayout(aura::Window* child) { 31 SetChildBoundsDirect(child, (gfx::Rect(container_->bounds().size()))); 34 void FillLayoutManager::OnWillRemoveWindowFromLayout(aura::Window* child) { 36 void FillLayoutManager::OnWindowRemovedFromLayout(aura::Window* child) { 38 void FillLayoutManager::OnChildWindowVisibilityChanged(aura::Window* child, 41 void FillLayoutManager::SetChildBounds(aura::Window* child,
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
TreeNode.h | 97 void appendChild(NodeType* child) 99 ASSERT(!child->parent()); 100 ASSERT(!child->next()); 101 ASSERT(!child->previous()); 103 child->m_parent = here(); 107 m_lastChild = m_firstChild = child; 113 m_lastChild = child; 115 child->m_previous = oldLast; 116 oldLast->m_next = child; 119 NodeType* removeChild(NodeType* child) 144 NodeType* child = oldParent->firstChild(); local [all...] |
/external/chromium_org/tools/grit/grit/format/ |
chrome_messages_json.py | 25 for child in root.ActiveDescendants(): 26 if isinstance(child, message.MessageNode): 27 id = child.attrs['name'] 31 loc_message = encoder.encode(child.ws_at_start + child.Translate(lang) + 32 child.ws_at_end)
|
/external/qemu/qom/ |
container.c | 30 Object *obj, *child; local 38 for (i = 1; parts[i] != NULL; i++, obj = child) { 39 child = object_resolve_path_component(obj, parts[i]); 40 if (!child) { 41 child = object_new("container"); 42 object_property_add_child(obj, parts[i], child, NULL);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_ws_comma.py | 27 for child in new.children: 28 if child in self.SEPS: 29 prefix = child.prefix 31 child.prefix = u"" 35 prefix = child.prefix 37 child.prefix = u" "
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_ws_comma.py | 27 for child in new.children: 28 if child in self.SEPS: 29 prefix = child.prefix 31 child.prefix = u"" 35 prefix = child.prefix 37 child.prefix = u" "
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
TreeExtensions.cs | 45 public static void setFirstChild( this ITree tree, ITree child ) 48 tree.AddChild( child ); 50 tree.SetChild( 0, child );
|