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

1 2 3 4 5 6 7 8

  /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 {};
  /external/mesa3d/src/mesa/sparc/
sparc_clip.S 106 1: ld [%i0 + 0x0c], %f3 ! LSU Group
107 ld [%i0 + 0x0c], %g5 ! LSU Group
108 ld [%i0 + 0x08], %g4 ! LSU Group
110 addcc %g5, %g5, %g5 ! IEU1 Group
111 addx %g0, 0x0, %g3 ! IEU1 Group
112 addcc %g4, %g4, %g4 ! IEU1 Group
113 addx %g3, %g3, %g3 ! IEU1 Group
114 subcc %g5, %g4, %g0 ! IEU1 Group
115 ld [%i0 + 0x04], %g4 ! LSU Group
116 addx %g3, %g3, %g3 ! IEU1 Group
    [all...]
xform.S 77 1: ld [%g1 + 0x00], %f0 ! LSU Group
79 ld [%g1 + 0x00], %f8 ! LSU Group
82 fmuls %f0, M0, %f1 ! FGM Group 1-cycle stall on %f0
83 fmuls %f0, M1, %f2 ! FGM Group
84 fmuls %f0, M2, %f3 ! FGM Group
85 fmuls %f0, M3, %f4 ! FGM Group
86 fmuls %f8, M0, %f9 ! FGM Group f1 available
89 fmuls %f8, M1, %f10 ! FGM Group f2 available
92 fmuls %f8, M2, %f11 ! FGM Group f3 available
95 fmuls %f8, M3, %f12 ! FGM Group f4 availabl
    [all...]
norm.S 60 fmuls %f0, M0, %f3 ! FGM Group
61 fmuls %f1, M1, %f4 ! FGM Group
62 fmuls %f0, M4, %f5 ! FGM Group
63 fmuls %f1, M5, %f6 ! FGM Group
64 fmuls %f0, M8, %f7 ! FGM Group f3 available
65 fmuls %f1, M9, %f8 ! FGM Group f4 available
67 fmuls %f2, M2, %f10 ! FGM Group f5 available
68 fmuls %f2, M6, %f0 ! FGM Group f6 available
70 fmuls %f2, M10, %f4 ! FGM Group f7 available
71 fadds %f7, %f8, %f7 ! FGA Group f8,f3 availabl
    [all...]
  /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
  /libcore/luni/src/main/java/java/security/acl/
Group.java 24 * A {@code Principal} that represents a group of principals.
28 public interface Group extends Principal {
31 * Adds a member to this group.
40 * Removes a member from this group.
49 * Returns whether the specified principal is a member of this group.
58 * Returns the members of this group.
60 * @return the members of this group.
  /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/clang/include/clang/Lex/
HeaderSearchOptions.h 23 /// IncludeDirGroup - Identifiers the group a include entry belongs to, which
25 /// path starts at the -iquote group, then searches the Angled group, then
26 /// searches the system group, etc.
49 frontend::IncludeDirGroup Group;
57 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework,
59 : Path(path), Group(group), IsFramework(isFramework),
180 /// AddPath - Add the \p Path path to the specified \p Group list.
181 void AddPath(StringRef Path, frontend::IncludeDirGroup Group,
    [all...]
  /external/llvm/include/llvm/MC/
MCSectionELF.h 49 const MCSymbol *Group;
57 unsigned entrySize, const MCSymbol *group, unsigned UniqueID,
60 Flags(flags), UniqueID(UniqueID), EntrySize(entrySize), Group(group),
76 const MCSymbol *getGroup() const { return Group; }
  /external/llvm/tools/llvm-pdbdump/
ClassDefinitionDumper.cpp 116 const SymbolGroup &Group) {
117 if (Group.Functions.empty() && Group.Data.empty() && Group.Unknown.empty())
135 for (auto iter = Group.Functions.begin(), end = Group.Functions.end();
140 for (auto iter = Group.Data.begin(), end = Group.Data.end(); iter != end;
145 for (auto iter = Group.Unknown.begin(), end = Group.Unknown.end()
    [all...]
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 139 static void benchmark( llvm::TimerGroup &Group
142 llvm::Timer BaseLine((Name + ": Loop").str(), Group);
151 llvm::Timer Tokenizing((Name + ": Tokenizing").str(), Group);
158 llvm::Timer Parsing((Name + ": Parsing").str(), Group);
209 llvm::TimerGroup Group("YAML parser benchmark");
210 benchmark(Group, "Fast", createJSONText(10, 500));
212 llvm::TimerGroup Group("YAML parser benchmark");
213 benchmark(Group, "Small Values", createJSONText(MemoryLimitMB, 5));
214 benchmark(Group, "Medium Values", createJSONText(MemoryLimitMB, 500));
215 benchmark(Group, "Large Values", createJSONText(MemoryLimitMB, 50000))
    [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/clang/tools/diagtool/
TreeView.cpp 58 void printGroup(const GroupRecord &Group, unsigned Indent = 0) {
62 out << "-W" << Group.getName() << "\n";
66 for (GroupRecord::subgroup_iterator I = Group.subgroup_begin(),
67 E = Group.subgroup_end();
73 for (GroupRecord::diagnostics_iterator I = Group.diagnostics_begin(),
74 E = Group.diagnostics_end();
90 llvm::errs() << "No such diagnostic group exists\n";
98 llvm::errs() << "No such diagnostic group exists\n";
143 llvm::errs() << "Usage: diagtool tree [--flags-only] [<diagnostic-group>]\n";
  /external/ppp/pppd/plugins/radius/etc/
dictionary.merit 9 ATTRIBUTE Login-LAT-Group 36 string
  /frameworks/native/services/surfaceflinger/RenderEngine/
GLES20RenderEngine.h 46 struct Group {
55 Vector<Group> mGroupStack;
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/readwrite/
gml.py 208 ZeroOrMore, Group, Dict, Optional, Combine,\
215 ZeroOrMore, Group, Dict, Optional, Combine,\
233 keyvalue = Group(key+value)
234 value << (value_atom | Group( lbrack + ZeroOrMore(keyvalue) + rbrack ))
235 node = Group(Literal("node") + lbrack + Group(OneOrMore(keyvalue)) + rbrack)
236 edge = Group(Literal("edge") + lbrack + Group(OneOrMore(keyvalue)) + rbrack)
238 creator = Group(Literal("Creator")+ Optional( restOfLine ))
239 version = Group(Literal("Version")+ Optional( restOfLine )
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
WorkingSetGroup.java 22 import org.eclipse.swt.widgets.Group;
30 * Creates the working set group with controls that allow
48 Group workingSetGroup = new Group(composite, SWT.NONE);
  /external/libexif/
libexif.spec 7 Group: System Environment/Libraries
21 Group: Development/Libraries
  /hardware/intel/common/libmix/mix_audio/
mixaudio.spec 14 Group: System Environment/Libraries
25 Group: Development/Libraries
  /hardware/intel/common/libmix/mix_common/
mixcommon.spec 8 Group: System Environment/Libraries
17 Group: Development/Libraries
  /hardware/intel/common/libmix/mix_vbp/
mixvbp.spec 14 Group: System Environment/Libraries
23 Group: Development/Libraries
  /external/llvm/lib/Option/
Option.cpp 66 const Option Group = getGroup();
67 if (Group.isValid()) {
68 llvm::errs() << " Group:";
69 Group.dump();
94 const Option Group = getGroup();
95 if (Group.isValid())
96 return Group.matches(Opt);
  /hardware/intel/common/libmix/mix_video/
mixvideo.spec 14 Group: System Environment/Libraries
26 Group: Development/Libraries
36 Group: Development/Libraries
  /external/clang/lib/Frontend/
InitHeaderSearch.cpp 56 /// AddPath - Add the specified path to the specified group list, prefixing
58 void AddPath(const Twine &Path, IncludeDirGroup Group, bool isFramework);
60 /// AddUnmappedPath - Add the specified path to the specified group list,
62 void AddUnmappedPath(const Twine &Path, IncludeDirGroup Group,
120 void InitHeaderSearch::AddPath(const Twine &Path, IncludeDirGroup Group,
123 // group.
128 AddUnmappedPath(IncludeSysroot + Path, Group, isFramework);
133 AddUnmappedPath(Path, Group, isFramework);
136 void InitHeaderSearch::AddUnmappedPath(const Twine &Path, IncludeDirGroup Group,
146 if (Group == Quoted || Group == Angled || Group == IndexHeaderMap)
    [all...]

Completed in 899 milliseconds

1 2 3 4 5 6 7 8