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

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/testing/runner/
CppBoundClass.cpp 102 NPObject parent; // This must be the first field in the struct. member in struct:WebTestRunner::CppNPObject
165 // obj->parent will be initialized by the NPObject code calling this.
167 return &obj->parent;
  /external/chromium_org/third_party/libxml/src/include/libxml/
entities.h 44 struct _xmlDtd *parent; /* -> DTD */ member in struct:_xmlEntity
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipe-loader/
pipe_loader_drm.c 66 struct udev_device *parent, *device = NULL; local
81 parent = udev_device_get_parent(device);
82 if (!parent)
85 pci_id = udev_device_get_property_value(parent, "PCI_ID");
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/egl-static/
egl.c 70 struct udev_device *device = NULL, *parent; local
89 parent = udev_device_get_parent(device);
90 if (parent == NULL) {
91 _eglLog(_EGL_WARNING, "could not get parent device");
95 pci_id = udev_device_get_property_value(parent, "PCI_ID");
  /external/chromium_org/third_party/openssl/openssl/crypto/x509v3/
pcy_int.h 67 * RFC3280. NB this structure contains no pointers to parent or child
103 /* Parent node is an extra node and should be freed */
138 /* Parent node */
139 X509_POLICY_NODE *parent; member in struct:X509_POLICY_NODE_st
198 const X509_POLICY_NODE *parent,
206 X509_POLICY_NODE *parent,
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
extension_set_unittest.cc 709 const Message& parent = unittest::TestAllExtensions::default_instance(); local
711 parent.GetReflection()->GetMessage(parent, dynamic_message_extension,
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayXMLParser.cpp 22 "element missing parent ",
23 "element type not allowed in parent ",
43 "no parent available to resolve sink attribute ",
44 "parent element can't contain ",
61 void SkDisplayXMLParserError::setInnerError(SkAnimateMaker* parent, const SkString& src) {
68 parent->setErrorNoun(inner);
81 for (Parent* parPtr = fParents.begin() + 1; parPtr < fParents.end(); parPtr++) {
118 SkDisplayable* parent = fParents[parentIndex - 1].fDisplayable; local
119 parent->setChildHasID();
171 Parent& container = fParents[parentIndex]
178 SkDisplayable* parent = fParents[parentIndex - 1].fDisplayable; local
255 Parent* parent = fParents.end() - 2; local
303 Parent* parent = fParents.end() - 2; local
    [all...]
  /external/chromium_org/ui/base/models/
tree_node_model.h 78 // If |node| has a parent, remove it from its parent.
79 NodeType* parent = node->parent_; local
80 if (parent)
81 parent->Remove(node);
112 // Returns the parent node, or NULL if this is the root node.
113 const NodeType* parent() const { return parent_; } function in class:ui::TreeNode
114 NodeType* parent() { return parent_; } function in class:ui::TreeNode
176 // This node's parent.
221 void Add(NodeType* parent, NodeType* node, int index)
259 DCHECK(parent); variable
264 DCHECK(parent); variable
269 DCHECK(parent); variable
    [all...]
  /external/chromium_org/webkit/renderer/
cpp_bound_class.cc 73 NPObject parent; // This must be the first field in the struct. member in struct:webkit_glue::CppNPObject
137 // obj->parent will be initialized by the NPObject code calling this.
139 return &obj->parent;
  /external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp 438 Stmt *parent = StmtMap->getParent(E); local
440 if (ImplicitCastExpr *castE = dyn_cast_or_null<ImplicitCastExpr>(parent))
443 if (ParenExpr *parenE = dyn_cast_or_null<ParenExpr>(parent))
447 bopE = dyn_cast_or_null<BinaryOperator>(parent)) {
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaBasicBlock.java 76 private SsaMethod parent; field in class:SsaBasicBlock
78 /** our index into parent.getBlock() */
119 * @param parent method of this block
122 final SsaMethod parent) {
123 this.parent = parent;
128 this.predecessors = new BitSet(parent.getBlocks().size());
129 this.successors = new BitSet(parent.getBlocks().size());
140 * @param parent method of this block predecessor set will be
145 int basicBlockIndex, final SsaMethod parent) {
    [all...]
  /external/doclava/src/com/google/doclava/
MemberInfo.java 132 public ContainerInfo parent() { method in class:MemberInfo
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ALoopCommand.java 66 this._position_.parent(null);
71 if(node.parent() != null)
73 node.parent().removeChild(node);
76 node.parent(this);
91 this._variable_.parent(null);
96 if(node.parent() != null)
98 node.parent().removeChild(node);
101 node.parent(this);
116 this._start_.parent(null);
121 if(node.parent() != null
    [all...]
ALoopIncCommand.java 71 this._position_.parent(null);
76 if(node.parent() != null)
78 node.parent().removeChild(node);
81 node.parent(this);
96 this._variable_.parent(null);
101 if(node.parent() != null)
103 node.parent().removeChild(node);
106 node.parent(this);
121 this._start_.parent(null);
126 if(node.parent() != null
    [all...]
  /external/libxml2/include/libxml/
entities.h 44 struct _xmlDtd *parent; /* -> DTD */ member in struct:_xmlEntity
  /external/linux-tools-perf/
builtin-diff.c 73 struct rb_node *parent = NULL; local
77 parent = *p;
78 iter = rb_entry(parent, struct hist_entry, rb_node);
85 rb_link_node(&he->rb_node, parent, p);
194 "sort by key(s): pid, comm, dso, symbol, parent"),
  /external/linux-tools-perf/util/
sort.h 75 struct symbol *parent; member in struct:hist_entry
top.c 47 struct rb_node *parent = NULL; local
51 parent = *p;
52 iter = rb_entry(parent, struct sym_entry, rb_node);
60 rb_link_node(&se->rb_node, parent, p);
  /external/llvm/lib/DebugInfo/
DWARFCompileUnit.cpp 139 DWARFDebugInfoEntryMinimal *parent = curr_die->getParent(); local
140 if (parent)
141 parent->setSibling(next_die);
  /external/mesa3d/src/gallium/auxiliary/pipe-loader/
pipe_loader_drm.c 66 struct udev_device *parent, *device = NULL; local
81 parent = udev_device_get_parent(device);
82 if (!parent)
85 pci_id = udev_device_get_property_value(parent, "PCI_ID");
  /external/mesa3d/src/gallium/targets/egl-static/
egl.c 70 struct udev_device *device = NULL, *parent; local
89 parent = udev_device_get_parent(device);
90 if (parent == NULL) {
91 _eglLog(_EGL_WARNING, "could not get parent device");
95 pci_id = udev_device_get_property_value(parent, "PCI_ID");
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
PropertyBoxParserImpl.java 78 public Class<? extends Box> getClassForFourCc(String type, byte[] userType, String parent) {
79 FourCcToBox fourCcToBox = new FourCcToBox(type, userType, parent).invoke();
88 public Box createBox(String type, byte[] userType, String parent) {
90 FourCcToBox fourCcToBox = new FourCcToBox(type, userType, parent).invoke();
109 } else if ("parent".equals(param[i])) {
110 constructorArgs[i] = parent;
146 private String parent; field in class:PropertyBoxParserImpl.FourCcToBox
150 public FourCcToBox(String type, byte[] userType, String parent) {
152 this.parent = parent;
    [all...]
  /external/openssl/crypto/x509v3/
pcy_int.h 67 * RFC3280. NB this structure contains no pointers to parent or child
103 /* Parent node is an extra node and should be freed */
138 /* Parent node */
139 X509_POLICY_NODE *parent; member in struct:X509_POLICY_NODE_st
198 const X509_POLICY_NODE *parent,
206 X509_POLICY_NODE *parent,
  /external/oprofile/libop/
op_interface.h 80 /** parent component, zero if this component is the root */
81 u32 parent; member in struct:op_hash_index
  /external/oprofile/module/
op_dname.c 53 hash_map[i].parent = -1;
63 hash_map[0].parent = 0;
175 uint parent = 0; local
187 incr = firsthash = value = name_hash(dname->name, dname->len, parent);
195 && entry->parent == parent)
199 if (entry->parent == -1) {
200 if (add_hash_entry(entry, parent, dname->name, dname->len))
213 parent = value;

Completed in 1092 milliseconds

<<11121314151617181920>>