HomeSort by relevance Sort by last modified time
    Searched defs:Leaf (Results 1 - 15 of 15) sorted by null

  /external/llvm/unittests/IR/
PatternMatch.cpp 53 // Leaf = (Two + 8) + (Two + 13)
57 Value *Leaf = IRB.CreateAdd(IRB.CreateAdd(Two, IRB.getInt32(8)),
65 EXPECT_FALSE(m_OneUse(m_Value()).match(Leaf));
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Include/Protocol/
Observable.h 187 OBS_LEAF* Leaf;
  /external/swiftshader/third_party/subzero/src/
IceTimerTree.cpp 64 // Creates a mapping from TimerIdT (leaf) values in the Src timer stack into
105 // Constructs a path consisting of the sequence of leaf values leading to a
106 // given node, with the Mapping translation applied to the leaf values. The
107 // path ends up being in "reverse" order, i.e. from leaf to root.
119 // Given a parent node and a leaf ID, returns the index of the parent's child
139 // The path is in reverse order (leaf to root), so it needs to be followed in
187 TimerIdT Leaf = Nodes[StackTop].Interior;
188 if (Leaf >= LeafTimes.size()) {
189 LeafTimes.resize(Leaf + 1);
190 LeafCounts.resize(Leaf + 1)
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
OhciUrb.c 217 static UINT32 Leaf[32] = {0, 16, 8, 24, 4, 20, 12, 28, 2, 18, 10, 26, 6, 22, 14, 30, 1, 17,
236 Ohc->IntervalList[0][Index] = (ED_DESCRIPTOR *)(UINTN)HccaInterruptTable[Leaf[Index]];
857 static UINT32 Leaf[] = {32,16,8,4,2,1};
862 for (Index = 0; Index < Leaf[Level]; Index++) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
pytree.py 35 Abstract base class for Node and Leaf.
114 Set the prefix for the node (see Leaf class).
124 Return the prefix for the node (see Leaf class).
158 while not isinstance(node, Leaf):
351 class Leaf(Base):
353 """Concrete implementation for leaf nodes."""
402 return Leaf(self.type, self.value,
431 Convert raw node information to a Node or Leaf instance.
445 return Leaf(type, value, context=context)
459 - LeafPattern matches a single leaf node;
    [all...]
  /external/python/cpython2/Lib/lib2to3/
pytree.py 35 Abstract base class for Node and Leaf.
114 Set the prefix for the node (see Leaf class).
124 Return the prefix for the node (see Leaf class).
158 while not isinstance(node, Leaf):
351 class Leaf(Base):
353 """Concrete implementation for leaf nodes."""
402 return Leaf(self.type, self.value,
431 Convert raw node information to a Node or Leaf instance.
445 return Leaf(type, value, context=context)
459 - LeafPattern matches a single leaf node
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
pytree.py 35 Abstract base class for Node and Leaf.
114 Set the prefix for the node (see Leaf class).
124 Return the prefix for the node (see Leaf class).
158 while not isinstance(node, Leaf):
351 class Leaf(Base):
353 """Concrete implementation for leaf nodes."""
402 return Leaf(self.type, self.value,
431 Convert raw node information to a Node or Leaf instance.
445 return Leaf(type, value, context=context)
459 - LeafPattern matches a single leaf node
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
pytree.py 35 Abstract base class for Node and Leaf.
114 Set the prefix for the node (see Leaf class).
124 Return the prefix for the node (see Leaf class).
158 while not isinstance(node, Leaf):
351 class Leaf(Base):
353 """Concrete implementation for leaf nodes."""
402 return Leaf(self.type, self.value,
431 Convert raw node information to a Node or Leaf instance.
445 return Leaf(type, value, context=context)
459 - LeafPattern matches a single leaf node
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
pytree.py 35 Abstract base class for Node and Leaf.
114 Set the prefix for the node (see Leaf class).
124 Return the prefix for the node (see Leaf class).
158 while not isinstance(node, Leaf):
351 class Leaf(Base):
353 """Concrete implementation for leaf nodes."""
402 return Leaf(self.type, self.value,
431 Convert raw node information to a Node or Leaf instance.
445 return Leaf(type, value, context=context)
459 - LeafPattern matches a single leaf node
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
pytree.py 35 Abstract base class for Node and Leaf.
114 Set the prefix for the node (see Leaf class).
124 Return the prefix for the node (see Leaf class).
158 while not isinstance(node, Leaf):
351 class Leaf(Base):
353 """Concrete implementation for leaf nodes."""
402 return Leaf(self.type, self.value,
431 Convert raw node information to a Node or Leaf instance.
445 return Leaf(type, value, context=context)
459 - LeafPattern matches a single leaf node
    [all...]
  /external/clang/lib/Lex/
PPMacroExpansion.cpp 106 // If we were the first overrider for any macro, it's no longer a leaf.
116 // The new macro is always a leaf macro.
141 auto Leaf = LeafModuleMacros.find(II);
142 if (Leaf == LeafModuleMacros.end()) {
156 for (auto *LeafMM : Leaf->second) {
157 assert(LeafMM->getNumOverridingMacros() == 0 && "leaf macro overridden");
212 ArrayRef<ModuleMacro*> Leaf;
215 Leaf = LeafIt->second;
243 llvm::SmallVector<ModuleMacro *, 16> Worklist(Leaf.begin(), Leaf.end())
    [all...]
  /external/selinux/python/sepolgen/src/sepolgen/
refpolicy.py 60 The Node class is used as the base class for any non-leaf
151 class Leaf(PolicyBase):
175 leaf objects. The iteration can perform a depth first or a breadth
198 # be a leaf - so no need to add it to the stack
262 class SecurityContext(Leaf):
271 Leaf.__init__(self, parent)
337 class ObjectClass(Leaf):
346 Leaf.__init__(self, parent)
352 class TypeAttribute(Leaf):
358 Leaf.__init__(self, parent
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
refpolicy.py 60 The Node class is used as the base class for any non-leaf
151 class Leaf(PolicyBase):
175 leaf objects. The iteration can perform a depth first or a breadth
198 # be a leaf - so no need to add it to the stack
262 class SecurityContext(Leaf):
271 Leaf.__init__(self, parent)
337 class ObjectClass(Leaf):
346 Leaf.__init__(self, parent)
352 class TypeAttribute(Leaf):
358 Leaf.__init__(self, parent
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
link.go 375 func (a Attribute) Leaf() bool { return a&AttrLeaf != 0 }
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
link.go 375 func (a Attribute) Leaf() bool { return a&AttrLeaf != 0 }

Completed in 1433 milliseconds