HomeSort by relevance Sort by last modified time
    Searched defs:Group (Results 26 - 50 of 88) sorted by null

12 3 4

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Canvas.py 126 class Group:
129 tag = 'Group%d' % id(self)
  /external/clang/lib/Driver/
SanitizerArgs.cpp 105 /// Sets group bits for every group that has at least one representative already
111 Kinds |= SanitizerKind::ID##Group;
206 // -fsanitize= flags (directly or via group
272 // Group expansion may have enabled a sanitizer which is disabled later.
275 // group expansion.
287 // We disable the vptr sanitizer if it was enabled by group expansion but RTTI
329 SanitizerMask Group = G.first;
330 if (Kinds & Group) {
333 << lastArgumentForMask(D, Args, Group)
    [all...]
  /external/deqp/scripts/khr_util/
registry.py 44 class Group(Located): pass
78 group=None variable in class:Command
182 self.groups = ElemNameIndex(eRegistry.findall('groups/group'))
185 groupName = eEnum.get('group')
312 groupName = elem.get('group')
324 group=extractGroup(eParam))
336 group=extractGroup(eProto),
341 info('Add group %s', name)
345 return Group(name=name)
347 Group, eGroup
    [all...]
  /frameworks/base/libs/hwui/
VectorDrawable.cpp 320 Group::Group(const Group& group) : Node(group) {
321 mStagingProperties.syncProperties(group.mStagingProperties);
324 void Group::draw(SkCanvas* outCanvas, const SkMatrix& currentMatrix, float scaleX,
328 // Calculate current group's matrix by preConcat the parent's and
331 // Mi the local matrix at level i of the group tree.
337 // Save the current clip information, which is local to this group
    [all...]
VectorDrawable.h 50 * Each node can be a group node, or a path.
51 * A group node can have groups or paths as children, but a path node has
54 * Root Group
56 * Group Path Group
408 class ANDROID_API Group: public Node {
497 Group(const Group& group);
498 Group() {}
    [all...]
  /external/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 56 const std::vector<Record*> &getParents(const Record *Group) {
57 return Mapping[Group];
63 getCategoryFromDiagGroup(const Record *Group,
66 std::string CatName = Group->getValueAsString("CategoryName");
69 // The diag group may the subgroup of one or more other diagnostic groups,
71 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
83 // If the diagnostic is in a group, and that group has a category, use it.
84 if (DefInit *Group = dyn_cast<DefInit>(R->getValueInit("Group"))) {
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/loader/
ObjLoader.java 83 final Array<Group> groups = new Array<Group>(10);
111 // Create a "default" Group and set it as the active group, in case
113 Group activeGroup = new Group("default");
166 // This implementation only supports single object or group
168 // as the active group, while group_b will simply be
188 // If the "default" group or any others were not used, get rid of them
205 Group group = groups.get(g) local
296 Group group = new Group(name); local
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Group.java 31 * Actors have a z-order equal to the order they were inserted into the group. Actors inserted later will be drawn on top of
35 public class Group extends Actor implements Cullable {
53 /** Draws the group and its children. The default implementation calls {@link #applyTransform(Batch, Matrix4)} if needed, then
63 * these methods don't need to be called, children positions are temporarily offset by the group position when drawn. This
85 // No transform for this group, offset each child.
113 // No transform for this group, offset each child.
145 * these methods don't need to be called, children positions are temporarily offset by the group position when drawn. This
155 if (!child.getDebug() && !(child instanceof Group)) continue;
160 // No transform for this group, offset each child.
167 if (!child.getDebug() && !(child instanceof Group)) continue
    [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 354 SmallBitVector Group;
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 212 StringRef Group = "";
215 Group = C->getName();
220 /*EntrySize=*/0, Group);
268 StringRef Group = "";
271 Group = C->getName();
302 EntrySize, Group, UniqueID);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PGOInstrumentation.cpp 191 BBInfo *Group;
195 BBInfo(unsigned IX) : Group(this), Index(IX), Rank(0) {}
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 119 static void addDiagnosticArgs(ArgList &Args, OptSpecifier Group,
122 for (Arg *A : Args.filtered(Group)) {
128 // This is -Wfoo= or -Rfoo=, where foo is the name of the diagnostic group.
    [all...]
  /external/llvm/lib/Target/WebAssembly/
Relooper.cpp 406 // For each entry, find the independent group reachable by it. The
407 // independent group is the entry itself, plus all the blocks it can
633 // We can handle a group in a multiple if its entry cannot be reached
634 // by another group.
641 BlockSet &Group = iter->second;
646 if (!contains(Group, Origin)) {
647 // Reached from outside the group, so we cannot handle this
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.cpp 127 int Group;
133 RINOZ_COMP(p1->Group, p2->Group);
733 static bool Is86Group(int group) { return (group & 1) != 0; }
734 static bool IsEncryptedGroup(int group) { return (group & 2) != 0; }
834 rep.Group = GetGroupIndex(isEncrypted, Is86FilteredFolder(f));
1038 const CSolidGroup &group = groups[groupIndex]; local
1065 if (rep.Group != groupIndex)
    [all...]
  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 360 RegisterGroup Group;
367 bool parseRegister(Register &Reg, RegisterGroup Group, const unsigned *Regs,
371 RegisterGroup Group, const unsigned *Regs,
519 Reg.Group = RegGR;
521 Reg.Group = RegFP;
523 Reg.Group = RegV;
525 Reg.Group = RegAccess;
534 // Parse a register of group Group. If Regs is nonnull, use it to map
537 // register appears in an address context. Allow FP Group if expectin
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 155 "max-interleave-group-factor", cl::Hidden,
156 cl::desc("Maximum factor for an interleaved access group (default = 8)"),
425 /// Try to vectorize the interleaved access group that \p Instr belongs to.
653 /// \brief The group of interleaved loads/stores sharing the same stride and
656 /// Each member in this group has an index starting from 0, and the largest
660 /// E.g. An interleaved load group of factor 4:
668 /// An interleaved store group of factor 4:
677 /// Note: the interleaved load group could have gaps (missing members), but
678 /// the interleaved store group doesn't allow gaps.
701 /// \returns false if the instruction doesn't belong to the group
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntdef.h 603 USHORT Group;
626 USHORT Group;
wtypes.h 273 PSID Group;
adoctint.h 95 typedef class ADOGroup Group;
97 typedef struct ADOGroup Group;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.services_3.2.100.v20100503.jar 
  /external/clang/lib/Sema/
SemaDecl.cpp 55 Decl *Group[2] = { OwnedType, Ptr };
56 return DeclGroupPtrTy::make(DeclGroupRef::Create(Context, Group, 2));
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.osgi.services_3.3.100.v20130513-1956.jar 
  /external/guice/lib/build/
bnd-0.0.384.jar 

Completed in 2087 milliseconds

12 3 4