/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/ |
DIBuilder.h | 56 /// Map Macro parent (which can be DIMacroFile or nullptr) to a list of 58 /// DIMacroNode's with nullptr parent are DICompileUnit direct children. 130 /// \param Parent Macro parent (could be nullptr). 135 DIMacro *createMacro(DIMacroFile *Parent, unsigned Line, unsigned MacroType, 140 /// using the \p Parent relationship. 141 /// \param Parent Macro file parent (could be nullptr). 144 DIMacroFile *createTempMacroFile(DIMacroFile *Parent, unsigned Line, 232 /// \param Ty Parent type [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/ |
DIBuilder.h | 56 /// Map Macro parent (which can be DIMacroFile or nullptr) to a list of 58 /// DIMacroNode's with nullptr parent are DICompileUnit direct children. 130 /// \param Parent Macro parent (could be nullptr). 135 DIMacro *createMacro(DIMacroFile *Parent, unsigned Line, unsigned MacroType, 140 /// using the \p Parent relationship. 141 /// \param Parent Macro file parent (could be nullptr). 144 DIMacroFile *createTempMacroFile(DIMacroFile *Parent, unsigned Line, 232 /// \param Ty Parent type [all...] |
/prebuilts/go/darwin-x86/src/os/ |
path.go | 29 // Slow path: make sure parent exists and then call Mkdir for path. 41 // Create parent 48 // Parent now exists; invoke Mkdir and use its result.
|
/prebuilts/go/linux-x86/src/os/ |
path.go | 29 // Slow path: make sure parent exists and then call Mkdir for path. 41 // Create parent 48 // Parent now exists; invoke Mkdir and use its result.
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/ |
TianoCompress.c | 547 Find child node given the parent node and the edge character
551 NodeQ - the parent node
577 IN NODE Parent,
585 Create a new child for a given parent node.
589 Parent - the parent node
600 Node1 = (NODE) HASH (Parent, CharC);
606 mParent[Child] = Parent;
607 mChildCount[Parent]++;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/ |
TianoCompress.c | 567 Find child node given the parent node and the edge character
571 NodeQ - the parent node
597 IN NODE Parent,
605 Create a new child for a given parent node.
609 Parent - the parent node
620 Node1 = (NODE) HASH (Parent, CharC);
626 mParent[Child] = Parent;
627 mChildCount[Parent]++;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/ |
PciBus.h | 199 PCI_IO_DEVICE *Parent;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/AcpiTableDxe/ |
AcpiSdt.h | 74 EFI_AML_NODE_LIST *Parent;
303 @param[in] ParentHandle Parent handle.
486 @param[in] AmlParentHandle Parent handle. It is Root Handle.
504 @param[in] AmlParentHandle Parent handle. It is Non-Root Handle.
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/ |
Tcp4Proto.h | 166 TCP_CB *Parent; ///< The parent TCP_CB structure
|
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/ |
TcpProto.h | 243 TCP_CB *Parent; ///< The parent TCP_CB structure
|
/device/linaro/bootloader/edk2/ShellPkg/Include/Protocol/ |
EfiShellEnvironment2.h | 83 EFI_FILE_HANDLE Parent; ///< What is the Parent file of this file.
85 CHAR16 *ParentName; ///< String representation of parent.
86 EFI_DEVICE_PATH_PROTOCOL *ParentDevicePath; ///< DevicePath for Parent.
732 or it's parent device (if required) will be used to obtain the name of the
[all...] |
/device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/ |
kfile.h | 141 struct _Device_Node *Parent; ///< Points to the parent Device Node.
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformDxe/ |
PciBus.h | 191 PCI_IO_DEVICE *Parent;
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
BaseTreeAdaptor.cs | 91 public virtual object DupTree(object t, object parent) { 96 // ensure new subtree root has parent/child index set 98 SetParent(newTree, parent); 186 // whoever invokes rule will set parent and child index 187 r.Parent = null; 312 public abstract void SetParent(object t, object parent); 315 public abstract void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t);
|
/external/clang/lib/Format/ |
TokenAnnotator.cpp | 307 FormatToken *Parent = Left->getPreviousNonComment(); 312 (!Parent || 313 Parent->isOneOf(tok::colon, tok::l_square, tok::l_paren, 315 Parent->isUnaryOperator() || 316 Parent->isOneOf(TT_ObjCForIn, TT_CastRParen) || 317 getBinOpPrecedence(Parent->Tok.getKind(), true, true) > prec::Unknown); 324 } else if (Style.Language == FormatStyle::LK_JavaScript && Parent && 326 Parent->isOneOf(tok::l_brace, tok::comma)) { 329 (Parent && 330 Parent->isOneOf(TT_BinaryOperator, TT_TemplateCloser, tok::at [all...] |
/external/llvm/include/llvm/CodeGen/ |
SelectionDAGISel.h | 240 virtual bool CheckComplexPattern(SDNode *Root, SDNode *Parent, SDValue N,
|
/external/llvm/include/llvm/IR/ |
Metadata.h | [all...] |
/external/llvm/lib/CodeGen/ |
AggressiveAntiDepBreaker.cpp | 81 assert(GroupNodes[0] == 0 && "GroupNode 0 not parent!"); 88 // if either group is 0, then that must become the parent 89 unsigned Parent = (Group1 == 0) ? Group1 : Group2; 90 unsigned Other = (Parent == Group1) ? Group2 : Group1; 91 GroupNodes.at(Other) = Parent; 92 return Parent; [all...] |
MachineLICM.cpp | 608 while (MachineDomTreeNode *Parent = ParentMap[Node]) { 609 unsigned Left = --OpenChildren[Parent]; 612 ExitScope(Parent->getBlock()); 613 Node = Parent; [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstructionCombining.cpp | [all...] |
/external/mesa3d/src/mesa/drivers/x11/ |
xmesaP.h | 157 XMesaBuffer Parent; /**< The XMesaBuffer this renderbuffer belongs to */
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
SelectionDAGISel.h | 253 virtual bool CheckComplexPattern(SDNode *Root, SDNode *Parent, SDValue N,
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
IVUsers.cpp | 271 Parent->IVUses.erase(this);
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
AggressiveAntiDepBreaker.cpp | 82 assert(GroupNodes[0] == 0 && "GroupNode 0 not parent!"); 89 // if either group is 0, then that must become the parent 90 unsigned Parent = (Group1 == 0) ? Group1 : Group2; 91 unsigned Other = (Parent == Group1) ? Group2 : Group1; 92 GroupNodes.at(Other) = Parent; 93 return Parent; [all...] |
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
Metadata.h | [all...] |