HomeSort by relevance Sort by last modified time
    Searched refs:sibling (Results 1 - 25 of 130) sorted by null

1 2 3 4 5 6

  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
StreamForwarder.java 27 StreamForwarder sibling; field in class:StreamForwarder
31 StreamForwarder(Channel c, StreamForwarder sibling, Socket s, InputStream is, OutputStream os, String mode)
38 this.sibling = sibling;
84 if (sibling != null)
86 while (sibling.isAlive())
90 sibling.join();
  /external/webkit/Source/WebCore/dom/
TreeWalker.cpp 145 for (RefPtr<Node> sibling = node->previousSibling(); sibling; ) {
146 short acceptNodeResult = acceptNode(state, sibling.get());
151 m_current = sibling.release();
154 if (sibling->lastChild()) {
155 sibling = sibling->lastChild();
156 node = sibling;
163 sibling = sibling->previousSibling()
    [all...]
  /external/markdown/markdown/extensions/
def_list.py 44 sibling = self.lastChild(parent)
45 if not terms and sibling.tag == 'p':
48 terms = sibling.text.split('\n')
49 parent.remove(sibling)
50 # Aquire new sibling
51 sibling = self.lastChild(parent)
55 if sibling and sibling.tag == 'dl':
57 dl = sibling
  /external/markdown/markdown/
blockprocessors.py 131 level, sibling = self.get_level(parent, block)
138 elif sibling.tag in self.ITEM_TYPES:
139 # The sibling is a li. Use it as parent.
140 self.parser.parseBlocks(sibling, [block])
141 elif len(sibling) and sibling[-1].tag in self.ITEM_TYPES:
144 if sibling[-1].text:
146 block = '%s\n\n%s' % (sibling[-1].text, block)
147 sibling[-1].text = ''
148 self.parser.parseChunk(sibling[-1], block
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugInfoEntry.h 32 /// How many to add to "this" to get the sibling.
70 // our sibling will be some index after "this".
95 void setSibling(DWARFDebugInfoEntryMinimal *sibling) {
96 if (sibling) {
98 // our sibling will be some index after "this".
99 SiblingIdx = sibling - this;
100 sibling->setParent(getParent());
  /external/tcpdump/
makemib 207 for (sib = child[parent]; sib != ""; sib = sibling[sib])
223 sibling[new] = child[parent]
234 # printf "/* %s c=%s s=%s */\n", newitem, child[item], sibling[item]
241 if (sibling[item] != "") {
242 dump(sibling[item])
243 s = "&_"sibling[item]"_obj"
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.h 48 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
49 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
  /external/webkit/Source/WebCore/rendering/
RenderCounter.cpp 56 Element* sibling; local
61 sibling = parent->previousElementSibling();
68 sibling = parent->lastElementChild();
74 while (sibling) {
75 if (RenderObject* renderer = sibling->renderer()) {
78 parent = sibling;
79 sibling = sibling->lastElementChild();
80 if (!sibling) {
86 sibling = sibling->previousElementSibling()
102 Element* sibling; local
    [all...]
  /external/webkit/Source/WebCore/page/
FrameTree.cpp 267 Frame* sibling = nextSibling();
268 if (sibling) {
269 ASSERT(!stayWithin || sibling->tree()->isDescendantOf(stayWithin));
270 return sibling;
274 while (!sibling && (!stayWithin || frame->tree()->parent() != stayWithin)) {
278 sibling = frame->tree()->nextSibling();
282 ASSERT(!stayWithin || !sibling || sibling->tree()->isDescendantOf(stayWithin));
283 return sibling;
  /cts/tools/dex-tools/test/dex/reader/util/
SpecialJavaFileManager.java 44 JavaFileObject.Kind kind, FileObject sibling) {
  /external/bluetooth/glib/glib/
gnode.h 126 GNode *sibling,
129 GNode *sibling,
174 * @sibling: the sibling #GNode to place the new #GNode before
177 * Inserts a new #GNode before the given sibling.
181 #define g_node_insert_data_before(parent, sibling, data) \
182 g_node_insert_before ((parent), (sibling), g_node_new (data))
251 * Gets the previous sibling of a #GNode.
253 * Returns: the previous sibling of @node, or %NULL if @node is %NULL
262 * Gets the next sibling of a #GNode
    [all...]
ghook.h 44 GHook *sibling);
123 GHook *sibling,
155 GHook *sibling);
gqueue.h 93 GList *sibling,
96 GList *sibling,
glist.c 232 * @sibling: the list element before which the new element
242 GList *sibling,
249 g_return_val_if_fail (sibling == NULL, list);
252 else if (sibling)
258 node->prev = sibling->prev;
259 node->next = sibling;
260 sibling->prev = node;
268 g_return_val_if_fail (sibling == list, node);
gqueue.c 930 * @sibling: a #GList link that <emphasis>must</emphasis> be part of @queue
933 * Inserts @data into @queue before @sibling.
935 * @sibling must be part of @queue.
941 GList *sibling,
945 g_return_if_fail (sibling != NULL);
947 queue->head = g_list_insert_before (queue->head, sibling, data);
954 * @sibling: a #GList link that <emphasis>must</emphasis> be part of @queue
957 * Inserts @data into @queue after @sibling
959 * @sibling must be part of @queue
965 GList *sibling,
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGElementInstance.h 151 void setNextSibling(SVGElementInstance* sibling) { m_nextSibling = sibling; }
152 void setPreviousSibling(SVGElementInstance* sibling) { m_previousSibling = sibling; }
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GraphicsLayerChromium.h 53 virtual void addChildAbove(GraphicsLayer*, GraphicsLayer* sibling);
54 virtual void addChildBelow(GraphicsLayer*, GraphicsLayer* sibling);
  /external/webkit/Source/WebCore/platform/graphics/texmap/
GraphicsLayerTextureMapper.h 53 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
54 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
GraphicsLayerTextureMapper.cpp 111 void GraphicsLayerTextureMapper::addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling)
113 GraphicsLayer::addChildAbove(layer, sibling);
119 void GraphicsLayerTextureMapper::addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling)
122 GraphicsLayer::addChildBelow(layer, sibling);
  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsLayerCACF.h 50 virtual void addChildAbove(GraphicsLayer *layer, GraphicsLayer *sibling);
51 virtual void addChildBelow(GraphicsLayer *layer, GraphicsLayer *sibling);
  /external/bluetooth/glib/gobject/
gobject-query.c 58 GType sibling,
75 sibling ? O_BRANCH : (type != root ? O_LLEAF : O_SPACE),
89 if (sibling)
  /external/qemu/hw/
qdev.h 25 QLIST_ENTRY(DeviceState) sibling; member in struct:DeviceState
41 QLIST_ENTRY(BusState) sibling; member in struct:BusState
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.h 57 virtual void addChildAbove(GraphicsLayer* layer, GraphicsLayer* sibling);
58 virtual void addChildBelow(GraphicsLayer* layer, GraphicsLayer* sibling);
  /external/libmtp/examples/
emptyfolders.c 56 prune_empty_folders(device,files,folderlist->sibling,do_delete); // recurse along
folders.c 39 dump_folder_list(folderlist->sibling, level);

Completed in 449 milliseconds

1 2 3 4 5 6