HomeSort by relevance Sort by last modified time
    Searched refs:Root (Results 1 - 25 of 348) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
p3.cpp 6 namespace Root {
12 using namespace Root;
16 using namespace Root;
30 using Root::i;
31 using Root::f;
  /external/llvm/include/llvm/ADT/
ImmutableMap.h 71 TreeTy* Root;
74 /// Constructs a map from a pointer to a tree root. In general one
78 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {
79 if (Root) { Root->retain(); }
82 ImmutableMap(const ImmutableMap &X) : Root(X.Root) {
83 if (Root) { Root->retain(); }
87 if (Root != X.Root)
    [all...]
ImmutableSet.h 266 // Mutating operations. A tree root can be manipulated as
454 // in an existing root if that root is still marked mutable.
595 /// markImmutable - Clears the mutable bits of a root and all of its
659 ImutAVLTreeGenericIterator(const TreeTy *Root) {
660 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root));
768 ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) {
769 if (Root)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
ImmutableMap.h 72 TreeTy* Root;
75 /// Constructs a map from a pointer to a tree root. In general one
79 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) {
80 if (Root) { Root->retain(); }
82 ImmutableMap(const ImmutableMap &X) : Root(X.Root) {
83 if (Root) { Root->retain(); }
86 if (Root != X.Root)
    [all...]
ImmutableSet.h 266 // Mutating operations. A tree root can be manipulated as
451 // in an existing root if that root is still marked mutable.
592 /// markImmutable - Clears the mutable bits of a root and all of its
655 inline ImutAVLTreeGenericIterator(const TreeTy* Root) {
656 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root));
765 ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) {
766 if (Root) operator++(); // Advance to first element
    [all...]
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
MtpDatabaseConstants.java 22 import android.provider.DocumentsContract.Root;
40 * Table representing documents including root documents.
45 * Table containing additional information only available for root documents.
62 Root.COLUMN_ROOT_ID);
118 static final String SELECTION_ROOT_ID = Root.COLUMN_ROOT_ID + " = ?";
141 Root.COLUMN_ROOT_ID + " INTEGER PRIMARY KEY," +
142 Root.COLUMN_FLAGS + " INTEGER NOT NULL," +
143 Root.COLUMN_AVAILABLE_BYTES + " INTEGER," +
144 Root.COLUMN_CAPACITY_BYTES + " INTEGER," +
145 Root.COLUMN_MIME_TYPES + " TEXT NOT NULL);"
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXPeephole.cpp 74 static bool isCVTAToLocalCombinationCandidate(MachineInstr &Root) {
75 auto &MBB = *Root.getParent();
78 if (Root.getOpcode() != NVPTX::cvta_to_local_yes_64 &&
79 Root.getOpcode() != NVPTX::cvta_to_local_yes)
82 auto &Op = Root.getOperand(1);
105 static void CombineCVTAToLocal(MachineInstr &Root) {
106 auto &MBB = *Root.getParent();
110 auto &Prev = *MRI.getUniqueVRegDef(Root.getOperand(1).getReg());
113 BuildMI(MF, Root.getDebugLoc(), TII->get(Prev.getOpcode()),
114 Root.getOperand(0).getReg()
    [all...]
  /external/mockito/src/test/java/org/mockitousage/junitrunner/
DeepStubbingWithJUnitRunnerTest.java 14 @Mock(answer = Answers.RETURNS_DEEP_STUBS) private Root root; field in class:DeepStubbingWithJUnitRunnerTest
19 someClass.someMethod(root);
25 void someMethod(Root root) {
26 root.getFoo().getBar();
30 interface Root {
  /external/clang/include/clang/Rewrite/Core/
DeltaTree.h 29 void *Root; // "DeltaTreeNode *"
  /external/clang/utils/TableGen/
ClangASTNodesEmitter.cpp 32 Record Root;
44 // the record's name plus the base suffix, but if it is the root node and
47 if (&R == &Root && !BaseSuffix.empty())
58 : Records(R), Root(N, SMLoc(), R), BaseSuffix(S)
97 OS << "ABSTRACT_" << macroName(Root.getName()) << "(" << NodeName << "("
124 if (Base == &Root)
125 OS << "LAST_" << macroName(Root.getName()) << "_RANGE(";
127 OS << macroName(Root.getName()) << "_RANGE(";
139 OS << "#ifndef ABSTRACT_" << macroName(Root.getName()) << "\n";
140 OS << "# define ABSTRACT_" << macroName(Root.getName()) << "(Type) Type\n"
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.canonical/
canonical.pass.cpp 45 const path Root = StaticEnv::Root;
46 const path RootName = Root.filename();
53 TestCase(path p1, path e, path b = StaticEnv::Root)
57 { ".", Root, Root},
58 { DirName / ".." / "." / DirName, StaticEnv::Dir, Root},
62 { Root / "." / DirName / ".." / DirName, StaticEnv::Dir},
63 { path("..") / "." / RootName / DirName / ".." / DirName, StaticEnv::Dir, Root},
65 { SymlinkName, StaticEnv::File, StaticEnv::Root}
    [all...]
  /frameworks/base/tools/preload/
PrintPsTree.java 38 Root root = (Root) oin.readObject(); local
40 for (Proc proc : root.processes.values()) {
  /packages/apps/DocumentsUI/tests/common/com/android/documentsui/
BrokenProvider.java 20 import android.provider.DocumentsContract.Root;
29 // Root information for a root that throws when querying its root document
31 private static final String BROKEN_ROOT_DOCUMENT_TITLE = "Broken Root Doc";
42 Root.FLAG_SUPPORTS_CREATE,
TestRootProvider.java 26 import android.provider.DocumentsContract.Root;
32 * Simple test provider that provides a single root. Subclasess provider support
38 Root.COLUMN_ROOT_ID,
39 Root.COLUMN_FLAGS,
40 Root.COLUMN_TITLE,
41 Root.COLUMN_DOCUMENT_ID,
42 Root.COLUMN_AVAILABLE_BYTES
71 row.add(Root.COLUMN_ROOT_ID, mRootId);
72 row.add(Root.COLUMN_TITLE, mRootName);
73 row.add(Root.COLUMN_FLAGS, mFlags)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
AST.stg 99 Root[0] := nil;<\n>
104 Root: array [0..63] of I<ASTLabelType>;
129 Root[0] := Adaptor.GetNilNode as I<ASTLabelType>;
215 <prevRuleRootRef()>.Tree := Root[0];
217 Root[0] := Adaptor.GetNilNode as I<ASTLabelType>;
222 <prevRuleRootRef()>.Tree = (<ASTLabelType>)adaptor.rulePostProcessing(root[0]);
231 <prevRuleRootRef()>.Tree := Root[0];<\n>
234 <prevRuleRootRef()>.Tree := Root[0];<\n>
323 rewriteEmptyAlt() ::= "Root[0] = null;"
325 rewriteTree(root,children,description,enclosingTreeLevel,treeLevel) ::= <
    [all...]
ASTParser.stg 37 * child, root
60 Adaptor.AddChild(Root[0], <label>_tree);
77 Root[0] := Adaptor.BecomeRoot(<label>_tree, Root[0]) as I<ASTLabelType>;
109 // the code generator call matchSet then add root code or ruleroot code
115 <super.matchSet(..., postmatchCode={<if(backtracking)>if (State.Backtracking = 0) then <endif>Adaptor.AddChild(Root[0], <createNodeFromToken(...)>);})>
131 <super.matchSet(..., postmatchCode={<if(backtracking)>if (State.Backtracking = 0) then <endif>Root[0] := Adaptor.BecomeRoot(<createNodeFromToken(...)>, Root[0]) as I<ASTLabelType>;})>
139 <if(backtracking)>if (State.Backtracking = 0) then <endif>Adaptor.AddChild(Root[0], <label>.Tree);
148 <if(backtracking)>if (State.Backtracking = 0) then <endif>Root[0] := Adaptor.BecomeRoot(<label>.Tree, Root[0]) as I<ASTLabelType>
    [all...]
ASTTreeParser.stg 37 * child, root
72 /** match ^(root children) in tree parser; override here to
75 tree(root, actionsAfterRoot, children, nullableChildList,
82 Root[<treeLevel>] := Adaptor.GetNilNode as I<ASTLabelType>;<\n>
84 <root:element()>
87 <if(root.el.rule)>
88 if (_First[<enclosingTreeLevel>] = nil) then _First[<enclosingTreeLevel>] := <root.el.label>.Tree;
90 if (_First[<enclosingTreeLevel>] = nil) then _First[<enclosingTreeLevel>] := <root.el.label>;
107 Adaptor.AddChild(Root[<enclosingTreeLevel>], Root[<treeLevel>])
    [all...]
  /prebuilts/go/darwin-x86/src/context/
benchmark_test.go 17 b.Run("Root=Background", func(b *testing.B) {
22 b.Run("Root=OpenCanceler", func(b *testing.B) {
29 b.Run("Root=ClosedCanceler", func(b *testing.B) {
40 func buildContextTree(root Context, depth int) {
42 root, _ = WithCancel(root)
  /prebuilts/go/linux-x86/src/context/
benchmark_test.go 17 b.Run("Root=Background", func(b *testing.B) {
22 b.Run("Root=OpenCanceler", func(b *testing.B) {
29 b.Run("Root=ClosedCanceler", func(b *testing.B) {
40 func buildContextTree(root Context, depth int) {
42 root, _ = WithCancel(root)
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportStorageProvider.java 28 import android.provider.DocumentsContract.Root;
40 Root.COLUMN_ROOT_ID, Root.COLUMN_FLAGS, Root.COLUMN_ICON, Root.COLUMN_TITLE,
41 Root.COLUMN_DOCUMENT_ID,
61 row.add(Root.COLUMN_ROOT_ID, DOC_ID_ROOT);
62 row.add(Root.COLUMN_FLAGS, Root.FLAG_LOCAL_ONLY | Root.FLAG_ADVANCED)
    [all...]
  /device/linaro/bootloader/edk2/DuetPkg/FvbRuntimeService/
FileIo.c 154 EFI_FILE_HANDLE Root;
181 // Open the root directory of the volume
183 Root = NULL;
186 &Root
189 ASSERT (Root != NULL);
194 Status = Root->Open (
195 Root,
206 // Close the Root directory
208 Root->Close (Root);
    [all...]
  /external/clang/test/CodeGenCXX/
derived-to-base-conv.cpp 46 struct Root {
52 struct Base : Root {
  /external/clang/include/clang/Tooling/
FileMatchTrie.h 41 /// /<project-root>/src/<path>/<somefile>.cc (used as input for the tool)
42 /// /<project-root>/build/<symlink-to-src>/<path>/<somefile>.cc (stored in DB)
81 FileMatchTrieNode *Root;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/FvSimpleFileSystemDxe/
FvSimpleFileSystemEntryPoint.c 61 Open the root directory on a volume.
63 @param This A pointer to the volume to open the root directory.
65 root directory.
88 FV_FILESYSTEM_FILE *Root;
107 if (Instance->Root == NULL) {
109 // Allocate file structure for root file
111 Root = AllocateZeroPool (sizeof (FV_FILESYSTEM_FILE));
112 if (Root == NULL) {
116 Instance->Root = Root;
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
RootInfo.java 34 import android.provider.DocumentsContract.Root;
52 * Representation of a {@link Root}.
100 // Currently, we are not persisting this and we should be asking Provider whether a Root
174 final RootInfo root = new RootInfo();
175 DurableUtils.readFromParcel(in, root);
176 return root;
186 final RootInfo root = new RootInfo(); local
187 root.authority = authority;
188 root.rootId = getCursorString(cursor, Root.COLUMN_ROOT_ID)
    [all...]

Completed in 4793 milliseconds

1 2 3 4 5 6 7 8 91011>>