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

1 2 3 4

  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file.rb 7 purpose: Loads the ANTLR recognition code for ANTLR Template Group files
10 require 'antlr3/template/group-file-lexer'
11 require 'antlr3/template/group-file-parser'
15 class Group
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
group.py 24 class Group(object):
launchspecification.py 30 from boto.ec2.group import Group
67 self.groups = ResultSet([('item', Group)])
networkinterface.py 29 from boto.ec2.group import Group
126 self.groups = ResultSet([('item', Group)])
instance.py 34 from boto.ec2.group import Group
85 :ivar group_name: The name of the placement group the instance is
119 :ivar groups: A list of Group objects representing the security
139 self.groups = ResultSet([('item', Group)])
162 :ivar groups: A list of Group objects representing the security
178 :ivar placement_group: The name of the placement group the instance
189 :ivar ami_launch_index: This instances position within it's launch group.
305 self.groups = ResultSet([('item', Group)])
648 self[name] = ResultSet([('item', Group)])
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
Group.h 1 //===- Group.h ------------------------------------------------------------===//
14 /** \class Group
15 * \brief Group records the grouping of all regions
17 class Group {};
LDFileFormat.h 41 Group,
  /libcore/ojluni/src/main/java/java/security/acl/
Group.java 32 * This interface is used to represent a group of principals. (A principal
35 * Note that Group extends Principal. Thus, either a Principal or a Group can
37 * example, you can add either a Principal or a Group to a Group object by
39 * Principal or Group.
43 public interface Group extends Principal {
46 * Adds the specified member to the group.
48 * @param user the principal to add to this group.
56 * Removes the specified member from the group
    [all...]
  /external/llvm/lib/Option/
Option.cpp 67 const Option Group = getGroup();
68 if (Group.isValid()) {
69 O << " Group:";
70 Group.print(O);
97 const Option Group = getGroup();
98 if (Group.isValid())
99 return Group.matches(Opt);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
Group.java 25 * A named group of zero or more mailboxes.
29 public class Group extends Address {
34 * @param name The group name.
35 * @param mailboxes The mailboxes in this group.
37 public Group(String name, MailboxList mailboxes) {
43 * Returns the group name.
50 * Returns the mailboxes in this group.
  /packages/services/Telephony/src/org/apache/james/mime4j/field/address/
Group.java 25 * A named group of zero or more mailboxes.
29 public class Group extends Address {
34 * @param name The group name.
35 * @param mailboxes The mailboxes in this group.
37 public Group(String name, MailboxList mailboxes) {
43 * Returns the group name.
50 * Returns the mailboxes in this group.
  /external/autotest/frontend/
apache_auth.py 1 from django.contrib.auth.models import User, Group, check_password
28 user.groups.add(Group.objects.get(
  /frameworks/native/services/surfaceflinger/RenderEngine/
GLES20RenderEngine.h 46 struct Group {
55 Vector<Group> mGroupStack;
  /external/deqp/scripts/
testset.py 52 class Group:
120 group = line.strip()
121 if group != "":
122 groups.append(group)
130 group = Group(groupName)
131 groups.append(group)
138 die("Case '%s' matched by multiple groups (when processing '%s')" % (case.name, group.name))
139 group.cases.append(case)
153 group = Group(groupName
    [all...]
  /external/fonttools/Lib/fontTools/pens/
reportLabPen.py 62 from reportlab.graphics.shapes import Group, Drawing, scale
64 # Everything is wrapped in a group to allow transformations.
65 g = Group(pen.path)
  /external/llvm/include/llvm/MC/
MCSectionELF.h 48 const MCSymbolELF *Group;
56 unsigned entrySize, const MCSymbolELF *group, unsigned UniqueID,
59 Flags(flags), UniqueID(UniqueID), EntrySize(entrySize), Group(group),
61 if (Group)
62 Group->setIsSignature();
78 const MCSymbolELF *getGroup() const { return Group; }
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
template.rb 16 @template_library ||= ANTLR3::Template::Group.new
25 ANTLR3::Template::Group.load( group_file )
40 self.class.template_library or ANTLR3::Template::Group.new
88 autoload :GroupFile, 'antlr3/template/group-file'
90 class Group < Module
91 autoload :Lexer, 'antlr3/template/group-file'
92 autoload :Parser, 'antlr3/template/group-file'
98 return( parser.group( namespace ) )
105 end or raise( LoadError, "no such template group file to load %s" % group_file )
112 return( parser.group( namespace )
    [all...]
  /external/clang/include/clang/Lex/
HeaderSearchOptions.h 23 /// IncludeDirGroup - Identifies the group an include Entry belongs to,
26 /// start searching at the Quoted group (specified by '-iquote'),
27 /// then search the Angled group, then the System group, etc.
50 frontend::IncludeDirGroup Group;
58 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework,
60 : Path(path), Group(group), IsFramework(isFramework),
186 /// AddPath - Add the \p Path path to the specified \p Group list.
187 void AddPath(StringRef Path, frontend::IncludeDirGroup Group,
    [all...]
  /external/clang/include/clang/Basic/
VirtualFileSystem.h 37 uint32_t Group;
49 llvm::sys::TimeValue MTime, uint32_t User, uint32_t Group,
68 uint32_t getGroup() const { return Group; }
  /external/llvm/include/llvm/Object/
ELFYAML.h 89 Group,
123 struct Group : Section {
124 // Members of a group contain a flag and a list of section indices
125 // that are part of the group.
127 Group() : Section(SectionKind::Group) {}
129 return S->Kind == SectionKind::Group;
  /external/llvm/lib/MC/
MCContext.cpp 301 if (const MCSymbol *Group = Section->getGroup())
302 GroupName = Group->getName();
317 const MCSymbolELF *Group,
325 EntrySize, Group, true, nullptr, Associated);
330 StringRef Group, unsigned UniqueID,
333 if (!Group.empty())
334 GroupSym = cast<MCSymbolELF>(getOrCreateSymbol(Group));
346 StringRef Group = "";
348 Group = GroupSym->getName();
351 std::make_pair(ELFSectionKey{Section, Group, UniqueID}, nullptr))
    [all...]
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 410 bool Group = Flags & ELF::SHF_GROUP;
411 if (Group && UseLastGroup)
412 return TokError("Section cannot specifiy a group name while also acting "
413 "as a member of the last group");
418 if (Group)
419 return TokError("Group section must specify the type");
442 if (Group) {
444 return TokError("expected group name");
514 if (const MCSymbol *Group = Section->getGroup()) {
515 GroupName = Group->getName()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Canvas.py 126 class Group:
129 tag = 'Group%d' % id(self)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Canvas.py 126 class Group:
129 tag = 'Group%d' % id(self)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Canvas.py 126 class Group:
129 tag = 'Group%d' % id(self)

Completed in 945 milliseconds

1 2 3 4