Searched refs:node (Results 326 - 350 of 3060) sorted by relevance

<<11121314151617181920>>

/external/linux-tools-perf/perf-3.12.0/include/linux/
H A Drbtree.h55 #define RB_EMPTY_NODE(node) \
56 ((node)->__rb_parent_color == (unsigned long)(node))
57 #define RB_CLEAR_NODE(node) \
58 ((node)->__rb_parent_color = (unsigned long)(node))
75 /* Fast replacement of a single node without remove/rebalance/add/rebalance */
79 static inline void rb_link_node(struct rb_node * node, struct rb_node * parent, argument
82 node->__rb_parent_color = (unsigned long)parent;
83 node
[all...]
/external/mesa3d/src/mesa/vbo/
H A Dvbo_save_draw.c51 const struct vbo_save_vertex_list *node)
58 if (node->current_size == 0)
61 if (node->current_data) {
62 data = node->current_data;
67 if (node->count)
68 offset = (node->buffer_offset +
69 (node->count-1) * node->vertex_size * sizeof(GLfloat));
71 offset = node->buffer_offset;
74 node
50 _playback_copy_to_current(struct gl_context *ctx, const struct vbo_save_vertex_list *node) argument
134 vbo_bind_vertex_list(struct gl_context *ctx, const struct vbo_save_vertex_list *node) argument
259 const struct vbo_save_vertex_list *node = local
[all...]
/external/chromium_org/ui/accessibility/extensions/caretbrowsing/
H A Dtraverse_util.js19 * Note: we cache the text of a particular node at the time we
22 * @param {Node} node The DOM node.
23 * @param {number} index The index of the character within the node.
24 * @param {string} text The cached text contents of the node.
27 Cursor = function(node, index, text) {
28 this.node = node;
37 return new Cursor(this.node, this.index, this.text);
45 this.node
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Drb.h6 * bit of right-child pointers (if RB_COMPACT is defined), thus making node
166 a_prefix##next(a_rbt_type *rbtree, a_type *node); \
168 a_prefix##prev(a_rbt_type *rbtree, a_type *node); \
176 a_prefix##insert(a_rbt_type *rbtree, a_type *node); \
178 a_prefix##remove(a_rbt_type *rbtree, a_type *node); \
195 * a_type : Type for red-black tree node data structure (ex: ex_node_t).
196 * a_field : Name of red-black tree node linkage (ex: ex_link).
231 * Description: Get the first/last node in tree.
234 * Ret: First/last node in tree, or NULL if tree is empty.
237 * ex_next(ex_t *tree, ex_node_t *node);
[all...]
/external/chromium_org/third_party/libxml/src/
H A DdebugXML.c46 xmlNodePtr node; /* current node */ member in struct:_xmlDebugCtxt
54 static void xmlCtxtDumpNodeList(xmlDebugCtxtPtr ctxt, xmlNodePtr node);
66 ctxt->node = NULL;
83 * @node: the node
84 * @ns: the namespace node
86 * Check that a given namespace is in scope on a node.
90 * an ancestor node.
93 xmlNsCheckScope(xmlNodePtr node, xmlNsPt argument
197 xmlCtxtNsCheckScope(xmlDebugCtxtPtr ctxt, xmlNodePtr node, xmlNsPtr ns) argument
273 xmlCtxtGenericNodeCheck(xmlDebugCtxtPtr ctxt, xmlNodePtr node) argument
877 xmlCtxtDumpOneNode(xmlDebugCtxtPtr ctxt, xmlNodePtr node) argument
1060 xmlCtxtDumpNode(xmlDebugCtxtPtr ctxt, xmlNodePtr node) argument
1087 xmlCtxtDumpNodeList(xmlDebugCtxtPtr ctxt, xmlNodePtr node) argument
1437 xmlDebugDumpOneNode(FILE * output, xmlNodePtr node, int depth) argument
1458 xmlDebugDumpNode(FILE * output, xmlNodePtr node, int depth) argument
1480 xmlDebugDumpNodeList(FILE * output, xmlNodePtr node, int depth) argument
1602 xmlLsCountNode(xmlNodePtr node) argument
1659 xmlLsOneNode(FILE *output, xmlNodePtr node) argument
1885 xmlShellPrintNodeCtxt(xmlShellCtxtPtr ctxt,xmlNodePtr node) argument
1913 xmlShellPrintNode(xmlNodePtr node) argument
1999 xmlShellList(xmlShellCtxtPtr ctxt, char *arg ATTRIBUTE_UNUSED, xmlNodePtr node, xmlNodePtr node2 ATTRIBUTE_UNUSED) argument
2042 xmlShellBase(xmlShellCtxtPtr ctxt, char *arg ATTRIBUTE_UNUSED, xmlNodePtr node, xmlNodePtr node2 ATTRIBUTE_UNUSED) argument
2079 xmlShellSetBase(xmlShellCtxtPtr ctxt ATTRIBUTE_UNUSED, char *arg ATTRIBUTE_UNUSED, xmlNodePtr node, xmlNodePtr node2 ATTRIBUTE_UNUSED) argument
2192 xmlShellGrep(xmlShellCtxtPtr ctxt ATTRIBUTE_UNUSED, char *arg, xmlNodePtr node, xmlNodePtr node2 ATTRIBUTE_UNUSED) argument
2270 xmlShellDir(xmlShellCtxtPtr ctxt ATTRIBUTE_UNUSED, char *arg ATTRIBUTE_UNUSED, xmlNodePtr node, xmlNodePtr node2 ATTRIBUTE_UNUSED) argument
2304 xmlShellSetContent(xmlShellCtxtPtr ctxt ATTRIBUTE_UNUSED, char *value, xmlNodePtr node, xmlNodePtr node2 ATTRIBUTE_UNUSED) argument
2406 xmlShellCat(xmlShellCtxtPtr ctxt, char *arg ATTRIBUTE_UNUSED, xmlNodePtr node, xmlNodePtr node2 ATTRIBUTE_UNUSED) argument
2507 xmlShellWrite(xmlShellCtxtPtr ctxt, char *filename, xmlNodePtr node, xmlNodePtr node2 ATTRIBUTE_UNUSED) argument
2682 xmlNodePtr node; local
2761 xmlShellPwd(xmlShellCtxtPtr ctxt ATTRIBUTE_UNUSED, char *buffer, xmlNodePtr node, xmlNodePtr node2 ATTRIBUTE_UNUSED) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DSmartClip.cpp57 static Node* nodeInsideFrame(Node* node) argument
59 if (node->isFrameOwnerElement())
60 return toHTMLFrameOwnerElement(node)->contentDocument();
146 // interesting node to find. Presumably this loop will often just return
148 Node* node = minNode; local
149 while (node) {
150 if (node->renderer()) {
151 IntRect nodeRect = node->pixelSnappedBoundingBox();
153 return node;
156 node
169 Node* node = rootNode; local
203 shouldSkipBackgroundImage(Node* node) argument
240 extractTextFromNode(Node* node) argument
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DTreeFragment.py81 def visit_Node(self, node):
82 if node is None:
83 return node
85 c = node.clone_node()
94 def visit_Node(self, node):
95 copy = super(ApplyPositionAndCopy, self).visit_Node(node)
110 node is a valid statement.
123 Each replacement node gets the position of the substituted node
124 recursively applied to every member node
[all...]
/external/smack/src/org/jivesoftware/smack/util/
H A DCache.java36 * <li> A pointer to the node in the linked list that maintains accessed
37 * order for the object. Keeping a reference to the node lets us avoid
39 * <li> A pointer to the node in the linked list that maintains the age
40 * of the object in cache. Keeping a reference to the node lets us avoid
372 LinkedListNode node = ageList.getLast();
374 if (node == null) {
383 while (expireTime > node.timestamp) {
384 if (remove(node.object, true) == null) {
385 System.err.println("Error attempting to remove(" + node.object.toString() +
388 node
543 addFirst(LinkedListNode node) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DTouchDisambiguation.cpp56 Node* node = eventNode; local
57 while (node) {
58 // Skip the whole sub-tree if the node doesn't propagate events.
59 if (node != eventNode && node->willRespondToMouseClickEvents()) {
60 node = NodeTraversal::nextSkippingChildren(*node, eventNode);
63 result.unite(node->pixelSnappedBoundingBox());
64 node = NodeTraversal::next(*node, eventNod
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
H A DTimelineJSProfile.js36 * @param {!ProfilerAgent.CPUProfileNode} node
39 function onOpenFrame(depth, node, startTime)
41 if (node === idleNode || node === programNode || node === gcNode)
45 data: node,
54 * @param {!ProfilerAgent.CPUProfileNode} node
59 function onCloseFrame(depth, node, startTime, totalTime, selfTime)
61 if (node === idleNode || node
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DTemplateTranslator.java39 import com.google.clearsilver.jsilver.syntax.node.AAltCommand;
40 import com.google.clearsilver.jsilver.syntax.node.AAutoescapeCommand;
41 import com.google.clearsilver.jsilver.syntax.node.ACallCommand;
42 import com.google.clearsilver.jsilver.syntax.node.ADataCommand;
43 import com.google.clearsilver.jsilver.syntax.node.ADefCommand;
44 import com.google.clearsilver.jsilver.syntax.node.AEachCommand;
45 import com.google.clearsilver.jsilver.syntax.node.AEscapeCommand;
46 import com.google.clearsilver.jsilver.syntax.node.AEvarCommand;
47 import com.google.clearsilver.jsilver.syntax.node.AHardIncludeCommand;
48 import com.google.clearsilver.jsilver.syntax.node
190 caseStart(Start node) argument
224 caseADataCommand(ADataCommand node) argument
233 caseAVarCommand(AVarCommand node) argument
250 caseAUvarCommand(AUvarCommand node) argument
260 caseASetCommand(ASetCommand node) argument
284 caseANameCommand(ANameCommand node) argument
295 caseAIfCommand(AIfCommand node) argument
312 caseAEachCommand(AEachCommand node) argument
324 caseAWithCommand(AWithCommand node) argument
373 caseALoopToCommand(ALoopToCommand node) argument
386 caseALoopCommand(ALoopCommand node) argument
400 caseALoopIncCommand(ALoopIncCommand node) argument
481 caseAAltCommand(AAltCommand node) argument
531 caseAEscapeCommand(AEscapeCommand node) argument
547 caseAAutoescapeCommand(AAutoescapeCommand node) argument
562 caseAHardLincludeCommand(AHardLincludeCommand node) argument
573 caseALincludeCommand(ALincludeCommand node) argument
583 caseAHardIncludeCommand(AHardIncludeCommand node) argument
594 caseAIncludeCommand(AIncludeCommand node) argument
604 caseALvarCommand(ALvarCommand node) argument
613 caseAEvarCommand(AEvarCommand node) argument
629 caseADefCommand(ADefCommand node) argument
656 parseDefNode(JavaExpression macroName, ADefCommand node) argument
717 caseACallCommand(ACallCommand node) argument
818 caseTCsOpen(TCsOpen node) argument
[all...]
/external/chromium_org/gpu/tools/compositor_model_bench/
H A Drender_tree.cc121 RenderNode* InterpretNode(base::DictionaryValue* node);
147 bool VerifyDictionaryEntry(base::DictionaryValue* node, argument
150 if (!node->HasKey(key)) {
156 node->Get(key, &child);
185 bool InterpretCommonContents(base::DictionaryValue* node, RenderNode* c) { argument
186 if (!VerifyDictionaryEntry(node, "layerID", base::Value::TYPE_INTEGER) ||
187 !VerifyDictionaryEntry(node, "width", base::Value::TYPE_INTEGER) ||
188 !VerifyDictionaryEntry(node, "height", base::Value::TYPE_INTEGER) ||
189 !VerifyDictionaryEntry(node, "drawsContent", base::Value::TYPE_BOOLEAN) ||
190 !VerifyDictionaryEntry(node, "targetSurfaceI
279 InterpretCCData(base::DictionaryValue* node, CCNode* c) argument
339 InterpretContentLayer(base::DictionaryValue* node) argument
370 InterpretCanvasLayer(base::DictionaryValue* node) argument
389 InterpretVideoLayer(base::DictionaryValue* node) argument
408 InterpretImageLayer(base::DictionaryValue* node) argument
427 InterpretNode(base::DictionaryValue* node) argument
[all...]
/external/chromium_org/components/enhanced_bookmarks/
H A Denhanced_bookmark_model_unittest.cc84 std::string GetVersion(const BookmarkNode* node) { argument
85 return GetMetaInfoField(node, "stars.version");
88 std::string GetId(const BookmarkNode* node) { argument
89 return GetMetaInfoField(node, "stars.id");
92 std::string GetOldId(const BookmarkNode* node) { argument
93 return GetMetaInfoField(node, "stars.oldId");
96 std::string GetMetaInfoField(const BookmarkNode* node, argument
99 if (!node->GetMetaInfo(name, &value))
114 virtual void EnhancedBookmarkAdded(const BookmarkNode* node) OVERRIDE {
116 last_added_ = node;
155 const BookmarkNode* node = AddBookmark(); local
162 const BookmarkNode* node = AddBookmark(); local
182 const BookmarkNode* node = AddBookmark(); local
200 const BookmarkNode* node = AddBookmark(); local
232 const BookmarkNode* node = AddBookmark(); local
264 const BookmarkNode* node = AddBookmark(); local
291 const BookmarkNode* node = AddBookmark(); local
320 const BookmarkNode* node = AddBookmark(); local
338 const BookmarkNode* node = AddBookmark(); local
361 const BookmarkNode* node = AddBookmark(); local
380 const BookmarkNode* node = AddBookmark(); local
387 const BookmarkNode* node = AddBookmark(); local
400 const BookmarkNode* node = AddBookmark(); local
430 const BookmarkNode* node = AddBookmark(); local
539 const BookmarkNode* node = AddBookmark(); local
573 const BookmarkNode* node = AddBookmark(); local
583 const BookmarkNode* node = AddBookmark(); local
[all...]
H A Dmetadata_accessor.h36 const BookmarkNode* node);
40 const BookmarkNode* node,
44 std::string DescriptionFromBookmark(const BookmarkNode* node);
50 const BookmarkNode* node,
57 bool OriginalImageFromBookmark(const BookmarkNode* node,
64 bool ThumbnailImageFromBookmark(const BookmarkNode* node,
71 std::string SnippetFromBookmark(const BookmarkNode* node);
78 const BookmarkNode* node,
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dxml_libxml2.c53 int xml_validate(struct xml_node_ctx *ctx, xml_node_t *node, argument
70 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1);
115 int xml_validate_dtd(struct xml_node_ctx *ctx, xml_node_t *node, argument
131 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1);
167 void xml_node_free(struct xml_node_ctx *ctx, xml_node_t *node) argument
169 xmlFreeNode((xmlNodePtr) node);
173 xml_node_t * xml_node_get_parent(struct xml_node_ctx *ctx, xml_node_t *node) argument
175 return (xml_node_t *) ((xmlNodePtr) node)->parent;
182 xmlNodePtr node; local
187 node
195 xml_node_get_localname(struct xml_node_ctx *ctx, xml_node_t *node) argument
202 xml_node_to_str(struct xml_node_ctx *ctx, xml_node_t *node) argument
243 xml_node_detach(struct xml_node_ctx *ctx, xml_node_t *node) argument
260 xmlNodePtr node; local
282 xmlNodePtr node; local
293 xmlNodePtr node; local
304 xmlNodePtr node; local
315 xml_node_set_text(struct xml_node_ctx *ctx, xml_node_t *node, const char *value) argument
323 xml_node_add_attr(struct xml_node_ctx *ctx, xml_node_t *node, xml_namespace_t *ns, const char *name, const char *value) argument
341 xml_node_get_attr_value(struct xml_node_ctx *ctx, xml_node_t *node, char *name) argument
349 xml_node_get_attr_value_ns(struct xml_node_ctx *ctx, xml_node_t *node, const char *ns_uri, char *name) argument
371 xml_node_next_sibling(struct xml_node_ctx *ctx, xml_node_t *node) argument
378 xml_node_is_element(struct xml_node_ctx *ctx, xml_node_t *node) argument
384 xml_node_get_text(struct xml_node_ctx *ctx, xml_node_t *node) argument
399 xml_node_get_base64_text(struct xml_node_ctx *ctx, xml_node_t *node, int *ret_len) argument
427 xml_node_copy(struct xml_node_ctx *ctx, xml_node_t *node) argument
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dxml_libxml2.c53 int xml_validate(struct xml_node_ctx *ctx, xml_node_t *node, argument
70 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1);
115 int xml_validate_dtd(struct xml_node_ctx *ctx, xml_node_t *node, argument
131 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1);
167 void xml_node_free(struct xml_node_ctx *ctx, xml_node_t *node) argument
169 xmlFreeNode((xmlNodePtr) node);
173 xml_node_t * xml_node_get_parent(struct xml_node_ctx *ctx, xml_node_t *node) argument
175 return (xml_node_t *) ((xmlNodePtr) node)->parent;
182 xmlNodePtr node; local
187 node
195 xml_node_get_localname(struct xml_node_ctx *ctx, xml_node_t *node) argument
202 xml_node_to_str(struct xml_node_ctx *ctx, xml_node_t *node) argument
243 xml_node_detach(struct xml_node_ctx *ctx, xml_node_t *node) argument
260 xmlNodePtr node; local
282 xmlNodePtr node; local
293 xmlNodePtr node; local
304 xmlNodePtr node; local
315 xml_node_set_text(struct xml_node_ctx *ctx, xml_node_t *node, const char *value) argument
323 xml_node_add_attr(struct xml_node_ctx *ctx, xml_node_t *node, xml_namespace_t *ns, const char *name, const char *value) argument
341 xml_node_get_attr_value(struct xml_node_ctx *ctx, xml_node_t *node, char *name) argument
349 xml_node_get_attr_value_ns(struct xml_node_ctx *ctx, xml_node_t *node, const char *ns_uri, char *name) argument
371 xml_node_next_sibling(struct xml_node_ctx *ctx, xml_node_t *node) argument
378 xml_node_is_element(struct xml_node_ctx *ctx, xml_node_t *node) argument
384 xml_node_get_text(struct xml_node_ctx *ctx, xml_node_t *node) argument
399 xml_node_get_base64_text(struct xml_node_ctx *ctx, xml_node_t *node, int *ret_len) argument
427 xml_node_copy(struct xml_node_ctx *ctx, xml_node_t *node) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dxml_libxml2.c53 int xml_validate(struct xml_node_ctx *ctx, xml_node_t *node, argument
70 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1);
115 int xml_validate_dtd(struct xml_node_ctx *ctx, xml_node_t *node, argument
131 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1);
167 void xml_node_free(struct xml_node_ctx *ctx, xml_node_t *node) argument
169 xmlFreeNode((xmlNodePtr) node);
173 xml_node_t * xml_node_get_parent(struct xml_node_ctx *ctx, xml_node_t *node) argument
175 return (xml_node_t *) ((xmlNodePtr) node)->parent;
182 xmlNodePtr node; local
187 node
195 xml_node_get_localname(struct xml_node_ctx *ctx, xml_node_t *node) argument
202 xml_node_to_str(struct xml_node_ctx *ctx, xml_node_t *node) argument
243 xml_node_detach(struct xml_node_ctx *ctx, xml_node_t *node) argument
260 xmlNodePtr node; local
282 xmlNodePtr node; local
293 xmlNodePtr node; local
304 xmlNodePtr node; local
315 xml_node_set_text(struct xml_node_ctx *ctx, xml_node_t *node, const char *value) argument
323 xml_node_add_attr(struct xml_node_ctx *ctx, xml_node_t *node, xml_namespace_t *ns, const char *name, const char *value) argument
341 xml_node_get_attr_value(struct xml_node_ctx *ctx, xml_node_t *node, char *name) argument
349 xml_node_get_attr_value_ns(struct xml_node_ctx *ctx, xml_node_t *node, const char *ns_uri, char *name) argument
371 xml_node_next_sibling(struct xml_node_ctx *ctx, xml_node_t *node) argument
378 xml_node_is_element(struct xml_node_ctx *ctx, xml_node_t *node) argument
384 xml_node_get_text(struct xml_node_ctx *ctx, xml_node_t *node) argument
399 xml_node_get_base64_text(struct xml_node_ctx *ctx, xml_node_t *node, int *ret_len) argument
427 xml_node_copy(struct xml_node_ctx *ctx, xml_node_t *node) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/bookmark_manager_private/
H A Dbookmark_manager_private_apitest.cc38 base::DictionaryValue* node = new base::DictionaryValue(); local
39 node->SetString("name", "Managed Bookmark");
40 node->SetString("url", "http://www.chromium.org");
41 list.Append(node);
42 node = new base::DictionaryValue();
43 node->SetString("name", "Managed Folder");
44 node->Set("children", new base::ListValue());
45 list.Append(node);
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/walkers/
H A Dbare_object_walker.js30 cvox.BareObjectWalker.prototype.stopNodeDescent = function(node) {
31 return cvox.DomUtil.isLeafNode(node);
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/irc/servlet/
H A Dutil.js15 function childNodeWithClass(node, className) {
17 return document.evaluate(expression, node,
/external/chromium_org/components/bookmarks/test/
H A Dbookmark_test_helpers.h18 // Return the descendants of |node| as a string useful for verifying node
21 // result = node " " , { node " " }
22 // node = bookmark title | folder
23 // folder = folder title ":[ " { node " " } "]"
31 std::string ModelStringFromNode(const BookmarkNode* node);
33 // Create and add the node hierarchy specified by |model_string| to the
34 // bookmark node given by |node|
[all...]
/external/chromium_org/components/onc/docs/
H A Donc_spec.js9 function onEnter(node) {
13 var header = node.querySelector('h1');
24 function onExit(node) {
28 function outline(node) {
29 var in_toc = !node.classList.contains('not_in_toc');
31 onEnter(node);
33 var child = node.firstChild;
41 onExit(node);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorNodeIds.cpp33 int InspectorNodeIds::idForNode(Node* node) argument
36 NodeToIdMap::iterator it = nodeToIdMap().find(node);
40 nodeToIdMap().set(node, id);
42 idToNodeMap().set(id, node);
57 int InspectorNodeIds::idForNode(Node* node)
61 int result = ids.value(node);
64 ids.put(node, result);
71 return nodeIds().node(id);
H A DPageConsoleAgent.cpp79 explicit InspectableNode(Node* node) : m_node(node) { } argument
90 Node* node = m_inspectorDOMAgent->nodeForId(nodeId); local
91 if (!node) {
95 while (node->isInShadowTree()) {
96 Node& ancestor = NodeTraversal::highestAncestorOrSelf(*node);
100 node = toShadowRoot(ancestor).host();
102 m_injectedScriptManager->injectedScriptHost()->addInspectedObject(adoptPtr(new InspectableNode(node)));
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTSpan.cpp45 ASSERT(node());
46 if (isSVGAltGlyphElement(*node()))

Completed in 2541 milliseconds

<<11121314151617181920>>