HomeSort by relevance Sort by last modified time
    Searched defs:node (Results 476 - 500 of 515) sorted by null

<<11121314151617181920>>

  /external/gtest/src/
gtest.cc 268 for (const internal::ListNode<TestCase*>* node = case_list.Head();
269 node != NULL;
270 node = node->next()) {
271 sum += (node->element()->*method)();
2226 internal::ListNode<TestInfo *> * const node = test_info_list_->FindIf( member in class:testing::internal
3552 internal::ListNode<TestCase*>* node = test_cases_.FindIf( local
    [all...]
  /external/libxml2/
relaxng.c 42 #define IS_RELAXNG(node, type) \
43 ((node != NULL) && (node->ns != NULL) && \
44 (xmlStrEqual(node->name, (const xmlChar *) type)) && \
45 (xmlStrEqual(node->ns->href, xmlRelaxNGNs)))
155 xmlNodePtr node; /* the node in the source */ member in struct:_xmlRelaxNGDefine
301 xmlNodePtr node; /* the current node */ member in struct:_xmlRelaxNGValidState
336 xmlNodePtr node; /* the current node * member in struct:_xmlRelaxNGValidError
2361 xmlNodePtr node, seq; local
3749 xmlNode node; local
7059 xmlNodePtr node; local
7097 xmlNodePtr node; local
8015 xmlNodePtr node; local
9650 xmlNodePtr node; local
10559 xmlNodePtr node; local
    [all...]
xpath.c 81 * in a way, that it stop evaluation at the first node.
187 * TODO: when compatibility allows remove all "fake node libxslt" strings
361 ctxt->context->lastError.node = ctxt->context->debugNode;
883 fprintf(output, "Node is NULL !\n");
908 fprintf(output, "Node is NULL !\n");
1022 fprintf(output, "Object is a Node Set :\n");
1058 fprintf(output, "Object is a point : index %d in node", cur->index);
1069 fprintf(output, "node\n");
1078 fprintf(output, "node\n");
1085 fprintf(output, "node\n")
4104 xmlNodePtr node; local
4132 xmlNodePtr node; local
5499 xmlNodePtr node; local
    [all...]
xmlschemas.c 316 #define IS_SCHEMA(node, type) \
317 ((node != NULL) && (node->ns != NULL) && \
318 (xmlStrEqual(node->name, (const xmlChar *) type)) && \
319 (xmlStrEqual(node->ns->href, xmlSchemaNs)))
430 xmlDocPtr doc; /* The schema node-tree. */
527 xmlNodePtr node; member in struct:_xmlSchemaAttributeUse
543 xmlNodePtr node; member in struct:_xmlSchemaAttributeUseProhib
650 xmlNodePtr node; member in struct:_xmlSchemaQNameRef
670 xmlNodePtr node; member in struct:_xmlSchemaParticle
686 xmlNodePtr node; member in struct:_xmlSchemaModelGroup
706 xmlNodePtr node; member in struct:_xmlSchemaModelGroupDef
740 xmlNodePtr node; member in struct:_xmlSchemaIDC
783 xmlNodePtr node; member in struct:_xmlSchemaPSVIIDCNode
881 xmlNodePtr node; member in struct:_xmlSchemaNodeInfo
940 xmlNodePtr node; member in struct:_xmlSchemaAttrInfo
982 xmlNodePtr node; member in struct:_xmlSchemaValidCtxt
7977 xmlNodePtr node; local
10082 xmlNodePtr node; local
19608 xmlNodePtr node = NULL; local
20382 xmlNodePtr node; local
20500 xmlNodePtr node; local
23392 xmlSchemaPSVIIDCNodePtr node, parNode = NULL, *dupls, *parNodes; \/* node-table entries. *\/ local
27712 xmlNodePtr node, valRoot; local
    [all...]
  /external/v8/src/
heap.cc 1122 FreeListNode* node = FreeListNode::FromAddress(target->address()); local
1146 FreeListNode* node = FreeListNode::FromAddress(target->address()); local
    [all...]
jsregexp.h 444 // Returns true if the interests and assumptions of this node
453 // Updates the interests of this node given the interests of the
454 // node preceding it.
468 // Sets the interests of this node to include the interests of the
469 // following node.
484 // These bits are set of this node has to know what the preceding
507 void Add(RegExpNode* node) { list_->Add(node); }
554 // the same for all branches of a choice node.
571 // Generates a goto to this node or actually generates the code at this point
983 RegExpNode* node() { return node_; } function in class:v8::internal::GuardedAlternative
1369 RegExpNode* node; member in struct:v8::internal::RegExpCompileData
    [all...]
jsregexp.cc 478 // 2) From the AST a node network is created. The nodes are all
481 // performed on the node network.
514 // * The stack of backtracking information. Used when a matching node
555 // the node has already been code generated then the Emit() call will
557 // limit recursion it is possible for the Emit() function to put the node
568 // A choice node looks at the following character and eliminates some of
585 // are needed and to generate code for a node more than once, allowing
594 // the virtualized backtrack stack and some register changes. When a node is
610 // code for each node several times. In order to limit the size of the
612 // code may be generated for a given node. If the limit is reached, th
1616 RegExpNode* node = alternatives_->at(1).node(); local
1628 RegExpNode* node = alternatives_->at(i).node(); local
2007 RegExpNode* node = alternatives_->at(i).node(); local
2494 RegExpNode* node = alternative->node(); local
3252 RegExpCharacterClass* node = elm.data.u_char_class; local
3773 RegExpNode* node = ActionNode::BeginSubmatch( local
4800 RegExpNode* node = that->alternatives()->at(i).node(); local
4813 RegExpNode* node = that->alternatives()->at(i).node(); local
5163 RegExpNode* node = captured_body; local
    [all...]
parser.cc 278 // Generate AST node that throw a ReferenceError with the given type.
281 // Generate AST node that throw a SyntaxError with the given
286 // Generate AST node that throw a TypeError with the given
631 // Only use if the result of the parse is a single atom node.
1111 AstNode* node() { return node_; } function in class:v8::internal::BASE_EMBEDDED
    [all...]
  /external/v8/test/cctest/
test-debug.cc 373 v8::internal::DebugInfoListNode* node = Debug::debug_info_list_; local
377 while (node) {
379 node = node->next();
388 while (node) {
389 debugged_functions->set(count++, *node->debug_info());
390 node = node->next();
    [all...]
  /external/webkit/WebCore/dom/
Document.cpp 304 static Widget* widgetForNode(Node* focusedNode)
314 static bool acceptsEditingFocus(Node *node)
316 ASSERT(node);
317 ASSERT(node->isContentEditable());
319 Node *root = node->rootEditableElement();
320 Frame* frame = node->document()->frame();
624 void Document::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta
1061 Node* node = result.innerNode(); local
3912 Node* node = i->first.get(); local
3958 Node* node = i->first.get(); local
    [all...]
  /external/webkit/WebCore/rendering/
RenderLayer.cpp 754 if (renderer()->node() && renderer()->node()->namespaceURI() == SVGNames::svgNamespaceURI)
2413 Node* node = result.innerNode(); local
    [all...]
  /external/webkit/WebKit/android/jni/
WebViewCore.cpp 72 #include "Node.h"
474 WebCore::Node* WebViewCore::currentFocus()
631 WebCore::Node* oldFocusNode = currentFocus();
701 // Search for a previous entry that references the same node as our new
706 if (updatedContainer->matches(possibleMatch->node())) {
1213 WebCore::Node* node = 0; local
1353 Node* node = label; local
1373 Node* node = (Node*) m_cursorNode; local
1608 Node* node = (Node*) m_cursorNode; local
    [all...]
  /external/kernel-headers/original/linux/
fb.h 750 int node; member in struct:fb_info
    [all...]
input.h 924 struct list_head node; member in struct:input_dev
993 * @node: for placing the driver onto input_handler_list
1012 struct list_head node; member in struct:input_handler
1029 #define to_dev(n) container_of(n,struct input_dev,node)
1030 #define to_handler(n) container_of(n,struct input_handler,node);
1037 INIT_LIST_HEAD(&dev->node);
  /hardware/broadcom/wlan/bcm4329/src/wl/sys/
wl_iw.c 2833 wl_iw_ss_cache_t *node, *cur; local
2892 wl_iw_ss_cache_t *node, *prev, *cur; local
2930 wl_iw_ss_cache_t *node, *prev, *leaf; local
2994 wl_iw_ss_cache_t *node; local
3021 wl_iw_ss_cache_t *node, *prev; local
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
  /cts/tools/dx-tests/lib/
junit.jar 
  /cts/tools/utils/lib/
junit.jar 
  /cts/tools/vm-tests/lib/
junit.jar 
  /development/ndk/platforms/android-9/include/SLES/
OpenSLES.h 99 SLuint8 node[6]; member in struct:SLInterfaceID_
    [all...]
  /external/libxml2/include/libxml/
xmlerror.h 89 void *node; /* the node in the tree */ member in struct:_xmlError
    [all...]
  /system/media/opensles/include/SLES/
OpenSLES.h 99 SLuint8 node[6]; member in struct:SLInterfaceID_
    [all...]
  /prebuilt/common/jython/
jython.jar 
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 

Completed in 1960 milliseconds

<<11121314151617181920>>