/external/e2fsprogs/e2fsck/ |
dirinfo.c | 32 ext2_ino_t dotdot; /* Parent according to '..' */ 33 ext2_ino_t parent; /* Parent according to treewalk */ member in struct:dir_info_ent 106 * entry. During pass1, the passed-in parent is 0; it will get filled 109 void e2fsck_add_dir_info(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent) 118 printf("add_dir_info for inode (%lu, %lu)...\n", ino, parent); 137 ent.parent = parent; 138 ent.dotdot = parent; 167 dir->dotdot = parent; [all...] |
pass3.c | 19 * it attempts to trace up the filesystem tree, using dirinfo.parent 23 * parent pointers up the filesystem tree, if pass3 sees a directory 47 static void fix_dotdot(e2fsck_t ctx, ext2_ino_t ino, ext2_ino_t parent); 246 * far as we can go, and then offer to connect the resulting parent to 263 ext2_ino_t ino = dir, parent; local 275 * parent we've already checked. 280 if (e2fsck_dir_info_get_parent(ctx, ino, &parent)) { 286 * If this directory doesn't have a parent, or we've 287 * seen the parent once already, then offer to 290 if (!parent || 595 ext2_ino_t parent; member in struct:fix_dotdot_struct [all...] |
/external/emma/core/java12/com/vladium/emma/report/ |
MethodItem.java | 26 public MethodItem (final IItem parent, final int ID, final String name, final String descriptor, final int firstLine) 28 super (parent); 64 final ClassItem parent = ((ClassItem) m_parent); local 66 final MethodDescriptor method = parent.m_cls.getMethods () [m_ID]; 78 final boolean [] coverage = parent.m_coverage != null ? parent.m_coverage [m_ID] : null;
|
/external/fsck_msdos/ |
dosfs.h | 122 *parent, /* previous tree level */ member in struct:dosDirEntry
|
/external/guava/guava/src/com/google/common/net/ |
InternetDomainName.java | 425 * <p>This method should not be used to determine the topmost parent domain 431 * <p>This method can be used to determine the probable highest level parent 457 * example, the parent of {@code www.google.com} is {@code google.com}. 459 * @throws IllegalStateException if the domain has no parent, as determined 462 public InternetDomainName parent() { method in class:InternetDomainName 463 checkState(hasParent(), "Domain '%s' has no parent", name);
|
/external/harfbuzz_ng/src/ |
hb-unicode-private.hh | 70 hb_unicode_funcs_t *parent; member in struct:hb_unicode_funcs_t
|
/external/icu4c/test/intltest/ |
regiontst.cpp | 23 const char *parent; member in struct:KnownRegion 31 // Code, Num, Parent, Type, Containing Continent 555 if (rd.parent == NULL) { 560 const Region *p = Region::getInstance(rd.parent,status);
|
/external/jdiff/src/jdiff/ |
XMLToAPI.java | 107 ClassAPI parent = (ClassAPI)api_.classes_.get(cls.extends_); local 108 if (parent != null) 109 addInheritedElements(cls, parent, cls.extends_); 115 ClassAPI parent = (ClassAPI)api_.classes_.get(implName); local 116 if (parent != null) 117 addInheritedElements(cls, parent, implName); 133 * If the parent class inherits any classes or interfaces, call this 136 public static void addInheritedElements(ClassAPI child, ClassAPI parent, 138 if (parent.methods_.size() != 0) { 139 Iterator iter = parent.methods_.iterator() [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/ |
BoneContext.java | 34 /** The parent context. */
35 private BoneContext parent;
field in class:BoneContext 46 /** Bone's parent inverse matrix. */
73 * @param parent
74 * bone's parent (null if the bone is the root bone)
85 private BoneContext(Structure boneStructure, BoneContext parent, Matrix4f objectToArmatureMatrix, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException {
86 this.parent = parent;
111 if (parent != null) {
112 inverseParentMatrix = parent.inverseTotalTransformation.clone(); [all...] |
CalculationBone.java | 66 * This method returns the end point of the bone. If the bone has parent it is calculated from the start point
67 * of parent to the start point of this bone. If the bone doesn't have a parent the end location is considered
76 Node parent = this.getParent();
local 77 return parent.getWorldTranslation().subtract(this.getWorldTranslation()).multLocal(this.getWorldScale());
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Transform.java | 190 * Changes the values of this matrix acording to it's parent. Very similar to the concept of Node/Spatial transforms. 191 * @param parent The parent matrix. 194 public Transform combineWithParent(Transform parent) { 195 scale.multLocal(parent.scale); 196 // rot.multLocal(parent.rot); 197 parent.rot.mult(rot, rot); 200 // parent 203 // .multLocal(parent.scale) 204 // .addLocal(parent.translation) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/ |
BillboardControl.java | 195 Node parent = spatial.getParent(); local 197 if ( parent != null ) { 198 rot = parent.getWorldRotation().inverse().multLocal(rot);
|
/external/kernel-headers/original/linux/ |
kobject.h | 56 struct kobject * parent; member in struct:kobject
|
sync.h | 112 * @parent: sync_timeline to which this sync_pt belongs 123 struct sync_timeline *parent; member in struct:sync_pt 132 /* protected by parent->active_list_lock */ 229 * @parent: sync_pt's parent sync_timeline 232 * Creates a new sync_pt as a chiled of @parent. @size bytes will be 236 struct sync_pt *sync_pt_create(struct sync_timeline *parent, int size); 354 * @obj_name: name of parent sync_timeline 355 * @driver_name: name of driver implmenting the parent
|
/external/libmtp/examples/ |
sendtr.c | 166 char *filename, *parent; local 181 parent = dirname(strdup(to_path)); 183 parent_id = parse_path (parent,files,folders); 185 printf("Parent folder could not be found, skipping\n");
|
/external/libppp/src/ |
datalink.h | 114 const struct fsm_parent *parent; /* Our parent */ member in struct:datalink
|
/external/libvpx/libvpx/vpx_mem/memory_manager/include/ |
cavl_impl.h | 318 /* Parent of last unbalanced node. */ 333 AVL_HANDLE parent = AVL_NULL; variable 339 parent_unbal = parent; 349 parent = hh; 365 AVL_SET_LESS(parent, h) 367 AVL_SET_GREATER(parent, h) 475 AVL_HANDLE parent = AVL_NULL; 478 parent = h; 483 return(parent); 492 AVL_HANDLE parent = AVL_NULL variable 523 AVL_HANDLE parent = AVL_NULL; variable 721 AVL_HANDLE parent = AVL_NULL; variable [all...] |
/external/libxslt/libxslt/ |
preproc.c | 72 xmlNodePtr parent; local 76 parent = inst->parent; 77 if (parent == NULL) { 80 "internal problem: element has no parent\n"); 85 if ((parent->ns == NULL) || (parent->type != XML_ELEMENT_NODE) || 86 ((parent->ns != inst->ns) && 87 (!xmlStrEqual(parent->ns->href, inst->ns->href))) || 88 ((!xmlStrEqual(parent->name, BAD_CAST "stylesheet")) & 110 xmlNodePtr parent; local 166 xmlNodePtr parent; local 2223 xmlNodePtr parent = inst->parent; local 2280 xmlNodePtr parent = inst->parent; local [all...] |
/external/linux-tools-perf/ |
builtin-report.c | 64 struct symbol *parent = NULL; local 70 sample->callchain, &parent); 75 he = __hists__add_entry(&evsel->hists, al, parent, sample->period); 164 fprintf(stderr, "selected --sort parent, but no" 440 "sort by key(s): pid, comm, dso, symbol, parent"), 443 OPT_STRING('p', "parent", &parent_pattern, "regex", 444 "regex filter to identify parent, see: '--sort parent'"), 446 "Only display entries with parent-match"), 513 if (sort_dimension__add("parent") < 0 [all...] |
/external/linux-tools-perf/util/ |
callchain.c | 29 #define chain_for_each_child(child, parent) \ 30 list_for_each_entry(child, &parent->children, siblings) 32 #define chain_for_each_child_safe(child, next, parent) \ 33 list_for_each_entry_safe(child, next, &parent->children, siblings) 40 struct rb_node *parent = NULL; local 47 parent = *p; 48 rnode = rb_entry(parent, struct callchain_node, rb_node); 71 rb_link_node(&chain->rb_node, parent, p); 167 * Create a child for a parent. If inherit_children, then the new child 168 * will become the new parent of it's parent childre [all...] |
callchain.h | 25 struct callchain_node *parent; member in struct:callchain_node 86 root->node.parent = NULL;
|
event.c | 645 struct thread *parent = perf_session__findnew(session, event->fork.ptid); local 655 if (thread == NULL || parent == NULL || 656 thread__fork(thread, parent) < 0) {
|
/external/linux-tools-perf/util/ui/browsers/ |
annotate.c | 102 struct rb_node *parent = NULL; local 106 parent = *p; 107 l = rb_entry(parent, struct objdump_line_rb_node, rb_node); 113 rb_link_node(&line->rb_node, parent, p);
|
/external/llvm/include/llvm/Analysis/ |
RegionInfo.h | 65 /// In the BBtoRegionNode map of the parent of this node, BB will always map 73 /// @brief The parent Region of this RegionNode. 75 Region* parent; member in class:llvm::RegionNode 80 /// @param Parent The parent of this RegionNode. 86 inline RegionNode(Region* Parent, BasicBlock* Entry, bool isSubRegion = 0) 87 : entry(Entry, isSubRegion), parent(Parent) {} 89 /// @brief Get the parent Region of this RegionNode. 91 /// The parent Region is the Region this RegionNode belongs to. If fo [all...] |
/external/lzma/CPP/7zip/UI/Common/ |
EnumDirItems.cpp | 102 int parent = AddPrefix(phyParent, logParent, name2);
local 103 EnumerateDirectory(parent, parent, phyPrefix + name2, errorPaths, errorCodes);
137 int parent = AddPrefix(phyParentCur, logParent, name2);
local 138 EnumerateDirectory(parent, parent, phyPrefix + phyPrefixCur + name2, errorPaths, errorCodes);
165 int parent = dirItems.AddPrefix(phyParent, logParent, name2);
local 167 HRESULT res = EnumerateDirItems(curNode, parent, parent, phyPrefix + name2,
|