HomeSort by relevance Sort by last modified time
    Searched defs:parent (Results 901 - 925 of 1569) sorted by null

<<31323334353637383940>>

  /external/chromium_org/third_party/skia/src/views/
SkView.cpp 170 SkView* parent = view->fParent; local
171 if (parent == NULL) {
178 view = parent;
258 SkView* child, *parent; local
262 parent = focus;
270 while (child != parent->fFirstChild)
278 child = parent->fNextSibling;
279 parent = parent->fParent;
280 } while (parent != NULL)
553 SkView* parent = fParent; local
712 SkView* parent = fParent; local
724 SkView* parent = fParent; local
    [all...]
  /external/chromium_org/third_party/skia/src/views/mac/
SkOSWindow_Mac.cpp 76 static void set_bindingside(HISideBinding* side, HIViewRef parent, HIBindingKind kind) {
77 side->toView = parent;
82 static void set_axisscale(HIAxisScale* axis, HIViewRef parent) {
83 axis->toView = parent;
88 static void set_axisposition(HIAxisPosition* pos, HIViewRef parent, HIPositionKind kind) {
89 pos->toView = parent;
99 HIViewRef imageView, parent; local
101 HIViewFindByID(rootView, kHIViewWindowContentID, &parent);
105 result = HIViewAddSubview(parent, imageView);
116 set_bindingside(&layout.binding.left, parent, kHILayoutBindLeft)
    [all...]
  /external/chromium_org/ui/views/accessibility/
native_view_accessibility_win.cc 182 // TODO(ctguil): Handle case where child View is not contained by parent.
195 // If containing parent is not hit, return with failure.
202 // No child hit, return parent id.
235 view_->parent() ? view_->parent() : view_, &topleft);
280 // Retrieve parent to access view index and perform bounds checking.
281 View* parent = view_->parent(); local
282 if (!parent) {
287 int view_index = parent->GetIndexOf(view_)
    [all...]
  /external/chromium_org/ui/views/
view.h 113 parent(NULL),
118 View* parent,
122 parent(parent),
127 // New parent if |is_add| is true, old parent if |is_add| is false.
128 View* parent; member in struct:views::View::ViewHierarchyChangedDetails
132 // existing parent, then a notification for the remove is sent first,
135 // For the remove part of move, |move_view| is the new parent of the View
137 // For the add part of move, |move_view| is the old parent of the View bein
185 const View* parent() const { return parent_; } function in class:views::View
186 View* parent() { return parent_; } function in class:views::View
    [all...]
  /external/chromium_org/ui/views/widget/
widget.h 161 // |parent|, |context|.
191 gfx::NativeView parent; member in struct:views::Widget::InitParams
193 // the NativeWidget may specify a default size. If the parent is specified,
194 // |bounds| is in the parent's coordinate system. If the parent is not
207 // |parent| is set.)
214 // hierarchy this widget should be placed. (This is separate from |parent|;
215 // if you pass a RootWindow to |parent|, your window will be parented to
216 // |parent|. If you pass a RootWindow to |context|, we ask that RootWindow
238 gfx::NativeWindow parent);
    [all...]
  /external/chromium_org/v8/src/
profile-generator.cc 337 Position& parent = stack[stack.length() - 2]; local
338 callback->AfterChildTraversed(parent.node, current.node);
339 parent.next_child();
356 void AfterChildTraversed(ProfileNode* parent, ProfileNode* child) {
357 parent->IncreaseTotalTicks(child->total_ticks());
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaMethod.java 751 * @param v {@code non-null;} callback interface. {@code parent} is set
758 // We push the parent first, then the child on the stack.
768 stack.add(null); // Start with null parent.
773 SsaBasicBlock parent = stack.pop(); local
784 v.visitBlock(cur, parent);
791 * The {@code parent} parameter of the Visitor.visitBlock callback
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_pk.h 395 struct ltc_asn1_list_ *prev, *next, *child, *parent; member in struct:ltc_asn1_list_
  /external/e2fsprogs/e2fsck/
rehash.c 63 ino_t parent; member in struct:fill_dir_struct
136 fd->parent = dirent->inode;
490 ext2_ino_t ino, ext2_ino_t parent)
507 dir->inode = parent;
552 ext2_ino_t parent)
562 root_info = set_root_node(fs, outdir->buf, ino, parent);
737 fd.parent = 0;
801 retval = calculate_tree(fs, &outdir, ino, fd.parent);
  /external/harfbuzz_ng/test/api/
test-unicode.c 94 hb_unicode_funcs_t *parent = hb_unicode_funcs_get_parent (ufuncs); local
96 return hb_unicode_script (parent, codepoint);
  /external/icu4c/i18n/
region.cpp 282 const char *parent = ures_getKey(mapping); local
283 UnicodeString parentStr = UnicodeString(parent, -1 , US_INV);
291 // Add the child region to the set of regions contained by the parent
300 // Set the parent region to be the containing region of the child.
301 // Regions of type GROUPING can't be set as the parent, since another region
302 // such as a SUBCONTINENT, CONTINENT, or WORLD must always be the parent.
  /external/javassist/src/main/javassist/
ClassPool.java 58 * <p><code>ClassPool</code>s can make a parent-child hierarchy as
60 * a parent pool, <code>get()</code> first asks the parent pool to find
61 * a class file. Only if the parent could not find the class file,
99 * the class path associated with the parent <code>ClassPool</code>.
100 * Otherwise, the class path associated with the parent is searched
139 protected ClassPool parent; field in class:ClassPool
152 * Creates a root class pool. No parent class pool is specified.
176 * @param parent the parent of this class pool. If this is a roo
    [all...]
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SkeletonLoader.java 109 String parentName = attribs.getValue("parent");
111 Bone parent = nameToBone.get(parentName); local
112 parent.addChild(bone);
159 // find bones without a parent and attach them to the skeleton
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 45 private NestedMapData parent; field in class:NestedMapData
74 parent = null;
78 protected NestedMapData(String name, NestedMapData parent, NestedMapData root) {
80 this.parent = parent;
97 // If the parent node's child count is 5 or more and it does not have a
108 // If the parent node has a children map, add the new child node to it.
129 if (parent == null) {
132 if (parent.children != null) {
133 parent.children.remove(name)
    [all...]
  /external/kernel-headers/original/linux/
device.h 190 * @class: pointer to the parent class for this class device. This is required.
201 * @parent: pointer to a struct class_device that is the parent of this struct
223 struct class_device *parent; /* parent of this child device, if there is one */ member in struct:class_device
277 struct class_device *parent,
304 struct device * parent; member in struct:device
307 char bus_id[BUS_ID_SIZE]; /* position on parent bus */
386 extern struct device *device_create(struct class *cls, struct device *parent,
serio.h 43 struct serio *parent, *child; member in struct:serio
  /external/libppp/src/
fsm.h 138 const struct fsm_parent *parent; member in struct:fsm
  /external/libxml2/
SAX2.c 1553 xmlNodePtr parent; local
2163 xmlNodePtr parent; local
2617 xmlNodePtr parent; local
2680 xmlNodePtr parent; local
    [all...]
  /external/linux-tools-perf/
builtin-kmem.c 123 struct rb_node *parent = NULL; local
127 parent = *node;
152 rb_link_node(&data->node, parent, node);
163 struct rb_node *parent = NULL; local
167 parent = *node;
192 rb_link_node(&data->node, parent, node);
439 struct rb_node *parent = NULL; local
447 parent = *new;
461 rb_link_node(&data->node, parent, new);
  /external/linux-tools-perf/util/
hist.c 123 static u8 symbol__parent_filter(const struct symbol *parent)
125 if (symbol_conf.exclude_other && parent == NULL)
135 struct rb_node *parent = NULL; local
147 .parent = sym_parent,
153 parent = *p;
154 he = rb_entry(parent, struct hist_entry, rb_node);
173 rb_link_node(&he->rb_node, parent, p);
229 struct rb_node *parent = NULL; local
234 parent = *p;
235 iter = rb_entry(parent, struct hist_entry, rb_node)
296 struct rb_node *parent = NULL; local
    [all...]
  /external/llvm/lib/CodeGen/
StrongPHIElimination.cpp 69 /// from a normal union-find data structure. We steal two bits from the parent
82 Node(unsigned v) : value(v), rank(0) { parent.setPointer(this); }
86 PointerIntPair<Node*, 2> parent; member in struct:__anon23622::StrongPHIElimination::Node
415 Node *Parent = parent.getPointer();
416 Node *Grandparent = Parent->parent.getPointer();
418 while (Parent != Grandparent) {
419 N->parent.setPointer(Grandparent);
421 Parent = Parent->parent.getPointer()
    [all...]
  /external/openfst/src/include/fst/
randgen.h 147 const RandState<A> *parent; // previous random state on this path member in struct:fst::RandState
150 : state_id(s), nsamples(n), length(l), select(k), parent(p) {}
153 : state_id(kNoStateId), nsamples(0), length(0), select(0), parent(0) {}
  /external/qemu/android/skin/
image.c 486 SkinImage* parent; local
491 parent = skin_image_find( &desc0 );
492 if (parent == SKIN_IMAGE_NONE)
495 SDL_LockSurface(parent->surface);
500 node->w = parent->h;
501 node->h = parent->w;
503 node->w = parent->w;
504 node->h = parent->h;
507 node->pixels = rotate_image( parent->pixels, parent->w, parent->h
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowActivity.java 43 private Activity parent; field in class:ShadowActivity
168 return parent;
  /external/skia/src/views/
SkView.cpp 170 SkView* parent = view->fParent; local
171 if (parent == NULL) {
178 view = parent;
258 SkView* child, *parent; local
262 parent = focus;
270 while (child != parent->fFirstChild)
278 child = parent->fNextSibling;
279 parent = parent->fParent;
280 } while (parent != NULL)
553 SkView* parent = fParent; local
712 SkView* parent = fParent; local
724 SkView* parent = fParent; local
    [all...]

Completed in 2525 milliseconds

<<31323334353637383940>>