/external/v8/src/compiler/ |
H A D | effect-control-linearizer.h | 39 void ProcessNode(Node* node, Node** frame_state, Node** effect, 40 Node** control); 42 bool TryWireInStateEffect(Node* node, Node* frame_state, Node** effect, 43 Node** control); 44 Node* LowerChangeBitToTagged(Node* nod [all...] |
H A D | raw-machine-assembler.h | 66 Node* NullConstant() { 70 Node* UndefinedConstant() { 75 Node* PointerConstant(void* value) { 78 Node* IntPtrConstant(intptr_t value) { 83 Node* RelocatableIntPtrConstant(intptr_t value, RelocInfo::Mode rmode); 84 Node* Int32Constant(int32_t value) { 87 Node* StackSlot(MachineRepresentation rep) { 90 Node* Int64Constant(int64_t value) { 93 Node* NumberConstant(double value) { 96 Node* Float32Constan [all...] |
H A D | graph.h | 19 class Node; 51 Node* const start_; 52 Node* const end_; 58 Node* NewNodeUnchecked(const Operator* op, int input_count, 59 Node* const* inputs, bool incomplete = false); 62 Node* NewNode(const Operator* op, int input_count, Node* const* inputs, 66 Node* NewNode(const Operator* op) { 67 return NewNode(op, 0, static_cast<Node* const*>(nullptr)); 69 Node* NewNod [all...] |
H A D | wasm-compiler.h | 25 class Node; 41 // Expose {Node} and {Graph} opaquely as {wasm::TFNode} and {wasm::TFGraph}. 42 typedef compiler::Node TFNode; 116 typedef ZoneVector<Node*> NodeVector; 123 Node** Buffer(size_t count) { 127 reinterpret_cast<Node**>(zone_->New(new_size * sizeof(Node*))); 136 Node* Error(); 137 Node* Start(unsigned params); 138 Node* Para [all...] |
H A D | node-properties.h | 29 static int FirstValueIndex(Node* node) { return 0; } 30 static int FirstContextIndex(Node* node) { return PastValueIndex(node); } 31 static int FirstFrameStateIndex(Node* node) { return PastContextIndex(node); } 32 static int FirstEffectIndex(Node* node) { return PastFrameStateIndex(node); } 33 static int FirstControlIndex(Node* node) { return PastEffectIndex(node); } 34 static int PastValueIndex(Node* node); 35 static int PastContextIndex(Node* node); 36 static int PastFrameStateIndex(Node* node); 37 static int PastEffectIndex(Node* node); 38 static int PastControlIndex(Node* nod [all...] |
H A D | machine-operator-reducer.h | 31 Reduction Reduce(Node* node) override; 34 Node* Float32Constant(volatile float value); 35 Node* Float64Constant(volatile double value); 36 Node* Int32Constant(int32_t value); 37 Node* Int64Constant(int64_t value); 38 Node* Uint32Constant(uint32_t value) { 41 Node* Uint64Constant(uint64_t value) { 44 Node* Float64Mul(Node* lhs, Node* rh [all...] |
H A D | js-intrinsic-lowering.h | 40 Reduction Reduce(Node* node) final; 43 Reduction ReduceCreateIterResultObject(Node* node); 44 Reduction ReduceDebugIsActive(Node* node); 45 Reduction ReduceDeoptimizeNow(Node* node); 46 Reduction ReduceGeneratorClose(Node* node); 47 Reduction ReduceGeneratorGetContext(Node* node); 48 Reduction ReduceGeneratorGetInputOrDebugPos(Node* node); 49 Reduction ReduceGeneratorGetResumeMode(Node* node); 50 Reduction ReduceIsInstanceType(Node* node, InstanceType instance_type); 51 Reduction ReduceIsJSReceiver(Node* nod [all...] |
H A D | escape-analysis.h | 31 Node* GetReplacement(Node* node); 32 Node* ResolveReplacement(Node* node); 33 bool IsVirtual(Node* node); 34 bool IsEscaped(Node* node); 35 bool CompareVirtualObjects(Node* left, Node* right); 36 Node* GetOrCreateObjectState(Node* effec [all...] |
H A D | simplified-lowering.h | 31 void DoMax(Node* node, Operator const* op, MachineRepresentation rep); 32 void DoMin(Node* node, Operator const* op, MachineRepresentation rep); 33 void DoJSToNumberTruncatesToFloat64(Node* node, 35 void DoJSToNumberTruncatesToWord32(Node* node, 39 void DoLoadBuffer(Node* node, MachineRepresentation rep, 41 void DoStoreBuffer(Node* node); 42 void DoShift(Node* node, Operator const* op, Type* rhs_type); 43 void DoStringToNumber(Node* node); 44 void DoIntegral32ToBit(Node* node); 45 void DoOrderedNumberToBit(Node* nod [all...] |
/external/v8/src/builtins/ |
H A D | builtins-promise.h | 14 typedef compiler::Node Node; typedef in namespace:v8::internal 58 Node* AllocateAndInitJSPromise(Node* context); 61 Node* AllocateAndInitJSPromise(Node* context, Node* parent); 65 Node* AllocateAndSetJSPromise(Node* context, Node* statu [all...] |
H A D | builtins-regexp.h | 13 typedef compiler::Node Node; typedef in namespace:v8::internal 22 void BranchIfFastRegExp(Node* const context, Node* const object, 23 Node* const map, Label* const if_isunmodified, 27 Node* FastLoadLastIndex(Node* regexp); 28 Node* SlowLoadLastIndex(Node* context, Node* regex [all...] |
H A D | builtins-constructor.h | 10 typedef compiler::Node Node; typedef in namespace:v8::internal 19 Node* EmitFastNewClosure(Node* shared_info, Node* feedback_vector, Node* slot, 20 Node* context); 21 Node* EmitFastNewFunctionContext(Node* closure, Node* slot [all...] |
H A D | builtins-arguments.h | 10 typedef compiler::Node Node; typedef in namespace:v8::internal 19 Node* EmitFastNewStrictArguments(Node* context, Node* function); 20 Node* EmitFastNewSloppyArguments(Node* context, Node* function); 21 Node* EmitFastNewRestParameter(Node* contex [all...] |
H A D | builtins-async.h | 19 typedef std::function<Node*(Node*)> NodeGenerator1; 26 Node* Await(Node* context, Node* generator, Node* value, Node* outer_promise,
|
/external/v8/src/ |
H A D | code-stub-assembler.h | 58 typedef compiler::Node Node; typedef in class:v8::internal::CodeStubAssembler 92 Node* ParameterToWord(Node* value, ParameterMode mode) { 97 Node* WordToParameter(Node* value, ParameterMode mode) { 102 Node* ParameterToTagged(Node* value, ParameterMode mode) { 107 Node* TaggedToParameter(Node* valu 1343 typedef compiler::Node Node; typedef in class:v8::internal::CodeStubArguments [all...] |
/external/v8/src/interpreter/ |
H A D | interpreter-assembler.h | 29 compiler::Node* BytecodeOperandCount(int operand_index); 32 compiler::Node* BytecodeOperandFlag(int operand_index); 35 compiler::Node* BytecodeOperandIdx(int operand_index); 38 compiler::Node* BytecodeOperandIdxSmi(int operand_index); 41 compiler::Node* BytecodeOperandUImm(int operand_index); 44 compiler::Node* BytecodeOperandUImmWord(int operand_index); 47 compiler::Node* BytecodeOperandImm(int operand_index); 50 compiler::Node* BytecodeOperandImmIntPtr(int operand_index); 53 compiler::Node* BytecodeOperandImmSmi(int operand_index); 56 compiler::Node* BytecodeOperandRe [all...] |
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
H A D | MachinePassRegistry.cpp | 22 void MachinePassRegistry::Add(MachinePassRegistryNode *Node) { argument 23 Node->setNext(List); 24 List = Node; 25 if (Listener) Listener->NotifyAdd(Node->getName(), 26 Node->getCtor(), 27 Node->getDescription()); 33 void MachinePassRegistry::Remove(MachinePassRegistryNode *Node) { argument 35 if (*I == Node) { 36 if (Listener) Listener->NotifyRemove(Node->getName());
|
/external/clang/test/CXX/expr/expr.post/expr.ref/ |
H A D | p3.cpp | 4 template<typename T> struct Node { struct 8 Node<T> n[1]; 14 Node<int> n;
|
/external/skia/src/xml/ |
H A D | SkDOM.h | 28 typedef SkDOMNode Node; typedef in class:SkDOM 33 const Node* build(SkStream&); 34 const Node* copy(const SkDOM& dom, const Node* node); 36 const Node* getRootNode() const; 39 const Node* finishParsing(); 45 Type getType(const Node*) const; 47 const char* getName(const Node*) const; 48 const Node* getFirstChild(const Node*, cons [all...] |
/external/v8/src/ic/ |
H A D | accessor-assembler.h | 21 typedef compiler::Node Node; typedef in class:v8::internal::AccessorAssembler 43 void TryProbeStubCache(StubCache* stub_cache, Node* receiver, Node* name, 47 Node* StubCachePrimaryOffsetForTesting(Node* name, Node* map) { 50 Node* StubCacheSecondaryOffsetForTesting(Node* name, Node* ma 218 typedef compiler::Node Node; typedef in class:v8::internal::ExitPoint [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
H A D | Construct.java | 18 import org.yaml.snakeyaml.nodes.Node; 21 * Provide a way to construct a Java instance out of the composed Node. Support 23 * Node Graph) 34 * composed Node 37 Object construct(Node node); 44 * composed Node 47 * <code>construct(Node node)</code> for the provided Node 49 void construct2ndStep(Node node, Object object);
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/ |
H A D | NodeTuple.java | 23 private Node keyNode; 24 private Node valueNode; 26 public NodeTuple(Node keyNode, Node valueNode) { 37 public Node getKeyNode() { 46 public Node getValueNode() {
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
H A D | NodeConsumer.java | 23 import org.w3c.dom.Node; 39 public void setOriginatingNode(Node n);
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/representer/ |
H A D | Represent.java | 18 import org.yaml.snakeyaml.nodes.Node; 21 * Create a Node Graph out of the provided Native Data Structure (Java 29 * Create a Node 33 * @return Node to dump 35 Node representData(Object data);
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/serializer/ |
H A D | AnchorGenerator.java | 18 import org.yaml.snakeyaml.nodes.Node; 22 String nextAnchor(Node node);
|