Searched refs:Group (Results 1 - 25 of 55) sorted by relevance

123

/freebsd-10.0-release/usr.sbin/pkg_install/add/
H A Dfutil.c84 if (Owner && Group) {
85 if (vsystem("cd %s && /usr/sbin/chown -R %s:%s %s", cd_to, Owner, Group, arg))
87 arg, Owner, Group);
94 } else if (Group)
95 if (vsystem("cd %s && /usr/bin/chgrp -R %s %s", cd_to, Group, arg))
96 warnx("couldn't change group of '%s' to '%s'", arg, Group);
H A Dadd.h37 extern char *Group;
H A Dextract.c138 Group = NULL;
271 Group = p->name;
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DHeaderSearchOptions.h49 frontend::IncludeDirGroup Group; member in struct:clang::HeaderSearchOptions::Entry
59 : Path(path), Group(group), IsFramework(isFramework),
144 /// AddPath - Add the \p Path path to the specified \p Group list.
145 void AddPath(StringRef Path, frontend::IncludeDirGroup Group, argument
147 UserEntries.push_back(Entry(Path, Group, IsFramework, IgnoreSysRoot));
/freebsd-10.0-release/contrib/llvm/include/llvm/MC/
H A DMCSectionELF.h46 const MCSymbol *Group; member in class:llvm::MCSectionELF
53 EntrySize(entrySize), Group(group) {}
70 const MCSymbol *getGroup() const { return Group; }
/freebsd-10.0-release/contrib/llvm/lib/Option/
H A DOption.cpp61 const Option Group = getGroup(); local
62 if (Group.isValid()) {
63 llvm::errs() << " Group:";
64 Group.dump();
89 const Option Group = getGroup(); local
90 if (Group.isValid())
91 return Group.matches(Opt);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Driver/
H A DOption.cpp59 const Option Group = getGroup(); local
60 if (Group.isValid()) {
61 llvm::errs() << " Group:";
62 Group.dump();
87 const Option Group = getGroup(); local
88 if (Group.isValid())
89 return Group.matches(Opt);
/freebsd-10.0-release/contrib/llvm/tools/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp55 const std::vector<Record*> &getParents(const Record *Group) { argument
56 return Mapping[Group];
62 getCategoryFromDiagGroup(const Record *Group, argument
65 std::string CatName = Group->getValueAsString("CategoryName");
70 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
83 if (DefInit *Group = dyn_cast<DefInit>(R->getValueInit("Group"))) {
85 std::string CatName = getCategoryFromDiagGroup(Group->getDef(),
171 DefInit *DI = dyn_cast<DefInit>(R->getValueInit("Group"));
185 Record *Group local
337 isSubGroupOfGroup(const Record *Group, llvm::StringRef GName) argument
363 groupInPedantic(const Record *Group, bool increment) argument
380 markGroup(const Record *Group) argument
440 Record *Group = DiagGroups[i]; local
[all...]
/freebsd-10.0-release/contrib/ofed/libibcm/
H A Dlibibcm.spec8 Group: System Environment/Libraries
19 Group: System Environment/Libraries
/freebsd-10.0-release/contrib/ofed/librdmacm/
H A Dlibrdmacm.spec8 Group: System Environment/Libraries
21 Group: System Environment/Libraries
29 Group: System Environment/Libraries
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DInitHeaderSearch.cpp59 void AddPath(const Twine &Path, IncludeDirGroup Group, bool isFramework);
63 void AddUnmappedPath(const Twine &Path, IncludeDirGroup Group,
121 void InitHeaderSearch::AddPath(const Twine &Path, IncludeDirGroup Group, argument
129 AddUnmappedPath(IncludeSysroot + Path, Group, isFramework);
134 AddUnmappedPath(Path, Group, isFramework);
137 void InitHeaderSearch::AddUnmappedPath(const Twine &Path, IncludeDirGroup Group, argument
147 if (Group == Quoted || Group == Angled || Group == IndexHeaderMap) {
149 } else if (Group
[all...]
/freebsd-10.0-release/contrib/apr-util/
H A Dapr-util.spec9 Group: System Environment/Libraries
23 Group: Development/Libraries
35 Group: Development/Libraries
44 Group: Development/Libraries
54 Group: Development/Libraries
64 Group: Development/Libraries
74 Group: Development/Libraries
84 Group: Development/Libraries
94 Group: Development/Libraries
103 Group
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DDiagnosticIDs.h229 bool getDiagnosticsInGroup(StringRef Group,
237 static StringRef getNearestWarningOption(StringRef Group);
243 void getDiagnosticsInGroup(const WarningOption *Group,
/freebsd-10.0-release/contrib/top/
H A DMakefile.X5 # Written by William LeFebvre, Group sys Consulting
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Basic/
H A DDiagnosticIDs.cpp549 const WarningOption *Group,
552 if (const short *Member = Group->Members) {
558 if (const short *SubGroups = Group->SubGroups) {
565 StringRef Group,
567 WarningOption Key = { Group.size(), Group.data(), 0, 0 };
572 Found->getName() != Group)
585 StringRef DiagnosticIDs::getNearestWarningOption(StringRef Group) { argument
587 unsigned BestDistance = Group.size() + 1; // Sanity threshold.
594 unsigned Distance = i->getName().edit_distance(Group, tru
548 getDiagnosticsInGroup( const WarningOption *Group, SmallVectorImpl<diag::kind> &Diags) const argument
564 getDiagnosticsInGroup( StringRef Group, SmallVectorImpl<diag::kind> &Diags) const argument
[all...]
H A DDiagnostic.cpp234 StringRef Group, diag::Mapping Map, SourceLocation Loc)
238 if (Diags->getDiagnosticsInGroup(Group, GroupDiags))
266 bool DiagnosticsEngine::setDiagnosticGroupWarningAsError(StringRef Group, argument
271 return setDiagnosticGroupMapping(Group, diag::MAP_ERROR);
278 if (Diags->getDiagnosticsInGroup(Group, GroupDiags))
313 bool DiagnosticsEngine::setDiagnosticGroupErrorAsFatal(StringRef Group, argument
318 return setDiagnosticGroupMapping(Group, diag::MAP_FATAL);
325 if (Diags->getDiagnosticsInGroup(Group, GroupDiags))
233 setDiagnosticGroupMapping( StringRef Group, diag::Mapping Map, SourceLocation Loc) argument
/freebsd-10.0-release/contrib/apr/
H A Dapr.spec9 Group: System Environment/Libraries
22 Group: Development/Libraries
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/
H A DAggressiveAntiDepBreaker.h96 unsigned Group,
/freebsd-10.0-release/contrib/llvm/lib/MC/
H A DMCContext.cpp242 SectionKind Kind, unsigned EntrySize, StringRef Group) {
257 if (!Group.empty())
258 GroupSym = GetOrCreateSymbol(Group);
241 getELFSection(StringRef Section, unsigned Type, unsigned Flags, SectionKind Kind, unsigned EntrySize, StringRef Group) argument
H A DMCSectionELF.cpp135 OS << "," << Group->getName() << ",comdat";
/freebsd-10.0-release/contrib/llvm/tools/llvm-readobj/
H A DMachODumper.cpp223 ListScope Group(W, "Sections");
357 DictScope Group(W, "Relocation");
385 ListScope Group(W, "Symbols");
398 ListScope Group(W, "DynamicSymbols");
/freebsd-10.0-release/contrib/byacc/package/
H A Dbyacc.spec10 Group: Applications/Development
/freebsd-10.0-release/contrib/pam_modules/pam_passwdqc/
H A Dpam_passwdqc.spec8 Group: System Environment/Base
/freebsd-10.0-release/contrib/dialog/package/
H A Ddialog.spec11 Group: Applications/Development
/freebsd-10.0-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp251 if (const MCSymbol *Group = FnSection.getGroup()) {
254 FnSection.getEntrySize(), Group->getName());

Completed in 415 milliseconds

123