/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):
|
/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...] |
/prebuilts/go/darwin-x86/src/internal/singleflight/ |
singleflight.go | 27 // Group represents a class of work and forms a namespace in 29 type Group struct { 47 func (g *Group) Do(key string, fn func() (interface{}, error)) (v interface{}, err error, shared bool) { 69 func (g *Group) DoChan(key string, fn func() (interface{}, error)) <-chan Result { 92 func (g *Group) doCall(c *call, key string, fn func() (interface{}, error)) { 107 func (g *Group) Forget(key string) {
|
/prebuilts/go/linux-x86/src/internal/singleflight/ |
singleflight.go | 27 // Group represents a class of work and forms a namespace in 29 type Group struct { 47 func (g *Group) Do(key string, fn func() (interface{}, error)) (v interface{}, err error, shared bool) { 69 func (g *Group) DoChan(key string, fn func() (interface{}, error)) <-chan Result { 92 func (g *Group) doCall(c *call, key string, fn func() (interface{}, error)) { 107 func (g *Group) Forget(key string) {
|
/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.
|
/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/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)
|
/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...] |