Searched refs:Node (Results 201 - 225 of 454) sorted by relevance

1234567891011>>

/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DDOMTreeElement.js39 if (this.representedObject.nodeType() == Node.ELEMENT_NODE && !elementCloseTag)
376 if (this.representedObject.nodeType() == Node.ELEMENT_NODE && (!lastChild || !lastChild._elementCloseTag))
542 if (this.representedObject.nodeType() != Node.ELEMENT_NODE && this.representedObject.nodeType() != Node.TEXT_NODE)
610 contextMenu.appendItem(WebInspector.UIString("Delete Node"), this.remove.bind(this));
628 if (this.representedObject.nodeType() === Node.TEXT_NODE) {
657 if (elem.nodeType !== Node.ELEMENT_NODE)
680 if (node.nodeType === Node.TEXT_NODE) {
685 if (node.nodeType !== Node.ELEMENT_NODE)
938 if (this.representedObject.nodeType() === Node
[all...]
H A DSection.js34 if (typeof title === "string" || title instanceof Node || typeof subtitle === "string") {
77 if (x instanceof Node) {
/macosx-10.10.1/swig-12/Source/Modules/
H A Dlua.cxx210 virtual int top(Node *n) {
330 virtual int importDirective(Node *n) {
348 virtual int functionWrapper(Node *n) {
684 void dispatchFunction(Node *n) {
712 Node *sibl = n;
741 virtual int variableWrapper(Node *n) {
785 virtual int constantWrapper(Node *n) {
832 virtual int nativeWrapper(Node *n) {
848 virtual int enumDeclaration(Node *n) {
856 virtual int enumvalueDeclaration(Node *
[all...]
H A Dmodula3.cxx85 - arguments of type (Node *) for SWIG functions
86 should be most often better (const Node *):
304 String *getMappedType(Node *p, const char *map) {
323 String *getMappedTypeNew(Node *n, const char *map, const char *lname = "", bool warn = true) {
338 void attachMappedType(Node *n, const char *map, const char *lname = "") {
354 Node *skipIgnored(Node *p, const char *map) {
374 bool isInParam(Node *p) {
388 bool isOutParam(Node *p) {
405 void printAttrs(Node *
[all...]
H A Dperl5.cxx131 Node *is_shadow(SwigType *t) {
132 Node *n;
222 virtual int top(Node *n) {
269 Node *mod = Getattr(n, "module");
270 Node *options = Getattr(mod, "options");
543 * importDirective(Node *n)
546 virtual int importDirective(Node *n) {
560 virtual int functionWrapper(Node *n) {
837 virtual int variableWrapper(Node *n) {
971 virtual int constantWrapper(Node *
[all...]
H A Dr.cxx70 static String * getRType(Node *n) {
313 void registerClass(Node *n);
315 int top(Node *n);
317 void dispatchFunction(Node *n);
318 int functionWrapper(Node *n);
319 int variableWrapper(Node *n);
321 int classDeclaration(Node *n);
322 int enumDeclaration(Node *n);
324 int membervariableHandler(Node *n);
326 int typedefHandler(Node *
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/dfg/
H A DDFGCommon.h39 struct Node;
45 static Node* defaultValue() { return 0; }
46 static bool isEmptyForDump(Node* value) { return !value; }
H A DDFGGraph.cpp94 bool Graph::dumpCodeOrigin(PrintStream& out, const char* prefix, Node* previousNode, Node* currentNode, DumpContext* context)
134 int Graph::amountOfNodeWhiteSpace(Node* node)
139 void Graph::printNodeWhiteSpace(PrintStream& out, Node* node)
144 void Graph::dump(PrintStream& out, const char* prefix, Node* node, DumpContext* context)
406 Node* phiNode = block->phis[i];
436 Node* lastNode = 0;
511 Node* phi = block->phis[phiIndex];
594 void Graph::substituteGetLocal(BasicBlock& block, unsigned startIndexInBlock, VariableAccessData* variableAccessData, Node* newGetLocal)
601 Node* nod
[all...]
H A DDFGDisassembler.cpp103 Node* lastNode = 0;
113 Node* lastNodeForDisassembly = block->at(0);
118 HashMap<Node*, MacroAssembler::Label>::iterator iter = m_labelForNode.find(block->at(i));
155 void Disassembler::dumpDisassembly(PrintStream& out, const char* prefix, LinkBuffer& linkBuffer, MacroAssembler::Label& previousLabel, MacroAssembler::Label currentLabel, Node* context)
H A DDFGLICMPhase.cpp96 Node* node = block->at(nodeIndex);
187 Node*& nodeRef = block->at(nodeIndex);
203 bool attemptHoist(BasicBlock* fromBlock, Node*& nodeRef, const NaturalLoop* loop)
205 Node* node = nodeRef;
H A DDFGOSRExit.h48 struct Node;
H A DDFGPredictionInjectionPhase.cpp74 Node* node = block->variablesAtHead.operand(operand);
H A DDFGUnificationPhase.cpp58 Node* phi = block->phis[phiIndex];
H A DDFGVirtualRegisterAllocationPhase.cpp57 Node* node = block->at(indexInBlock);
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A Dilist.h142 // ilist_iterator<Node> - Iterator for intrusive list.
277 static SimpleType getSimplifiedValue(const ilist_iterator<NodeTy> &Node) { argument
278 return &*Node;
284 static SimpleType getSimplifiedValue(const ilist_iterator<NodeTy> &Node) { argument
285 return &*Node;
435 NodeTy *Node = &*IT; local
436 NodeTy *NextNode = this->getNext(Node);
437 NodeTy *PrevNode = this->getPrev(Node);
439 if (Node != Head) // Is PrevNode off the beginning of the list?
445 this->removeNodeFromList(Node); // Notif
[all...]
/macosx-10.10.1/tidy-15.15/tidy/src/
H A Dlexer.c55 Node **asp, Node **php );
60 static Node *ParseDocTypeDecl(TidyDocImpl* doc);
1024 Node *TY_(NewNode)(Lexer *lexer)
1026 Node* node = (Node*) MemAlloc( sizeof(Node) );
1027 ClearMemory( node, sizeof(Node) );
1038 Node *TY_(CloneNode)( TidyDocImpl* doc, Node *elemen
[all...]
H A Dpprint.c37 static void PPrintAsp( TidyDocImpl* doc, uint indent, Node* node );
38 static void PPrintJste( TidyDocImpl* doc, uint indent, Node* node );
39 static void PPrintPhp( TidyDocImpl* doc, uint indent, Node* node );
40 static int TextEndsWithNewline( Lexer *lexer, Node *node, uint mode );
41 static int TextStartsWithWhitespace( Lexer *lexer, Node *node, uint start, uint mode );
42 static Bool InsideHead( TidyDocImpl* doc, Node *node );
43 static Bool ShouldIndent( TidyDocImpl* doc, Node *node );
355 static Bool HasMixedContent (Node *element)
357 Node * node;
961 Node* nod
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/API/tests/
H A DJSNodeList.c41 Node* node = NodeList_item(nodeList, (unsigned)JSValueToNumber(context, arguments[0], exception));
76 Node* node = NodeList_item(nodeList, uindex);
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DWebHitTestResult.cpp29 #include <WebCore/Node.h>
93 Node* node = hitTestResult.innerNonSharedNode();
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/InjectedBundle/
H A DInjectedBundleHitTestResult.cpp56 Node* node = m_hitTestResult.innerNonSharedNode();
111 WebCore::Node* node = m_hitTestResult.innerNonSharedNode();
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/ios/
H A DWebVideoFullscreenManager.mm53 static IntRect clientRectForNode(Node* node)
81 bool WebVideoFullscreenManager::supportsFullscreen(const Node* node) const
86 void WebVideoFullscreenManager::enterFullscreenForNode(Node* node)
103 void WebVideoFullscreenManager::exitFullscreenForNode(Node* node)
/macosx-10.10.1/swig-12/Source/CParse/
H A Dparser.y35 static Node *top = 0; /* Top of the generated parse tree */
40 static Node *current_class = 0;
42 static Node *module_node = 0;
56 static Node **class_decl = NULL;
69 static Node *new_node(const_String_or_char_ptr tag) {
70 Node *n = NewHash();
80 static Node *copy_node(Node *n) {
81 Node *nn;
116 Node *c
[all...]
/macosx-10.10.1/swig-12/Source/Swig/
H A Dnaming.c583 static void merge_features(Hash *features, Node *n) {
603 void features_get(Hash *features, const String *tname, SwigType *decl, SwigType *ncdecl, Node *node) {
604 Node *n = Getattr(features, tname);
616 void Swig_features_get(Hash *features, String *prefix, String *name, SwigType *decl, Node *node) {
828 * int Swig_need_name_warning(Node *n)
834 int Swig_need_name_warning(Node *n) {
863 static int nodes_are_equivalent(Node *a, Node *b, int a_inclass) {
920 Node *a_template = Getattr(a, "template");
921 Node *b_templat
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/SelectionDAG/
H A DScheduleDAGFast.cpp181 assert(CurCycle >= SU->getHeight() && "Node scheduled below its height!");
249 assert(N->getNodeId() == -1 && "Node already inserted!");
474 for (SDNode *Node = SU->getNode(); Node; Node = Node->getGluedNode()) {
475 if (Node->getOpcode() == ISD::INLINEASM) {
477 unsigned NumOps = Node->getNumOperands();
478 if (Node->getOperand(NumOps-1).getValueType() == MVT::Glue)
483 cast<ConstantSDNode>(Node
[all...]
/macosx-10.10.1/awk-20/src/
H A Dytabc.bak255 void checkdup(Node *list, Cell *item);
258 Node *beginloc = 0;
259 Node *endloc = 0;
263 Node *arglist = 0; /* list of args for current function */
282 Node *p;
2411 winner = (Node *)stat3(PROGRAM, beginloc, (yyvsp[0].p), endloc); }
2571 { (yyval.p) = op3((yyvsp[-1].i), NIL, (yyvsp[-2].p), (Node*)makedfa((yyvsp[0].s), 0)); }
2577 (yyval.p) = op3((yyvsp[-1].i), NIL, (yyvsp[-2].p), (Node*)makedfa(strnode((yyvsp[0].p)), 0));
2579 (yyval.p) = op3((yyvsp[-1].i), (Node *)1, (yyvsp[-2].p), (yyvsp[0].p)); }
2649 { (yyval.p) = op3((yyvsp[-1].i), NIL, (yyvsp[-2].p), (Node*)makedf
[all...]

Completed in 317 milliseconds

1234567891011>>