HomeSort by relevance Sort by last modified time
    Searched defs:Alias (Results 1 - 15 of 15) sorted by null

  /external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
p3.cpp 18 // Alias declarations. clang implements the proposed resolution to N1044.
19 namespace Alias {
  /external/protobuf/src/google/protobuf/compiler/java/
java_enum.h 70 struct Alias {
74 vector<Alias> aliases_;
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_enum.h 73 struct Alias {
77 vector<Alias> aliases_;
  /external/clang/lib/CodeGen/
CGCXX.cpp 31 /// Try to emit a base destructor as an alias to its primary
101 /// Try to emit a definition as a global alias for another definition.
107 // The alias will use the linkage of the referrent. If we can't
140 // Derive the type for the alias.
152 // Create the alias with no name.
153 llvm::GlobalAlias *Alias =
156 // Switch any previous uses to the alias.
160 assert(Entry->isDeclaration() && "definition already exists for alias");
163 Alias->takeName(Entry);
164 Entry->replaceAllUsesWith(Alias);
    [all...]
  /external/clang/include/clang/Driver/
Option.h 30 /// of (if any), if the option is an alias, and a number of
68 /// Option that this is an alias for, if any.
69 const Option *Alias;
96 const OptionGroup *Group, const Option *Alias);
104 const Option *getAlias() const { return Alias; }
134 /// aliases (itself, if the option has no alias).
136 if (Alias) return Alias->getUnaliasedOption();
149 /// Note that matches against options which are an alias should never be
215 const Option *Alias);
    [all...]
  /external/clang/lib/Driver/
OptTable.cpp 136 const Option *Alias = getOption(info.AliasID);
147 Opt = new FlagOption(id, info.Name, Group, Alias); break;
149 Opt = new JoinedOption(id, info.Name, Group, Alias); break;
151 Opt = new SeparateOption(id, info.Name, Group, Alias); break;
153 Opt = new CommaJoinedOption(id, info.Name, Group, Alias); break;
155 Opt = new MultiArgOption(id, info.Name, Group, Alias, info.Param); break;
157 Opt = new JoinedOrSeparateOption(id, info.Name, Group, Alias); break;
159 Opt = new JoinedAndSeparateOption(id, info.Name, Group, Alias); break;
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 169 Record *Alias = DI->getDef();
170 DwarfRegNums[Reg] = DwarfRegNums[Alias];
315 // Now that register alias and sub-registers sets have been emitted, emit the
AsmWriterEmitter.cpp 611 // alias for that pattern.
809 // Emit the method that prints the alias instruction.
819 CodeGenInstAlias *Alias = new CodeGenInstAlias(*I, Target);
822 continue; // We were told not to emit the alias, but to emit the aliasee.
825 AliasMap[getQualifiedName(Op->getDef())].push_back(Alias);
843 // Don't emit the alias if it has more operands than what it's aliasing.
    [all...]
AsmMatcherEmitter.cpp 275 /// instruction or alias which is capable of being matched.
412 MatchableInfo(const CodeGenInstAlias *Alias)
413 : TheDef(Alias->TheDef), DefRec(Alias), AsmString(Alias->AsmString) {
    [all...]
  /external/webkit/Source/WebCore/platform/
Cursor.h 141 Alias,
  /external/llvm/lib/Analysis/
BasicAliasAnalysis.cpp 1 //===- BasicAliasAnalysis.cpp - Stateless Alias Analysis Impl -------------===//
11 // Alias Analysis interface that implements identities (two different
12 // globals cannot alias, etc), but does no stateful analysis.
453 /// BasicAliasAnalysis - This is the primary alias analysis implementation.
460 // elements on each alias query. This really wants
475 virtual AliasResult alias(const Location &LocA, function in struct:__anon8033::BasicAliasAnalysis
480 AliasResult Alias = aliasCheck(LocA.Ptr, LocA.Size, LocA.TBAATag,
483 return Alias;
518 // AliasCache - Track alias queries to guard against recursion.
556 "Basic Alias Analysis (stateless AA impl)"
    [all...]
  /external/clang/test/CodeGenCXX/
mangle.cpp 690 typedef A Alias;
693 template <class T> void b(decltype(T().Alias::meth()) &object) {}
  /external/icu4c/tools/genpname/
genpname.cpp 71 class Alias {
76 Alias(int32_t enumValue,
82 Alias::Alias(int32_t anEnumValue,
89 class Property : public Alias {
92 const Alias* valueList;
97 const Alias* valueList);
103 const Alias* _valueList) :
104 Alias(_enumValue, _nameGroupIndex),
118 int32_t Alias::getUniqueNames(int32_t* stringIndices) const
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 209 const MCSymbol &Alias = it->getSymbol();
210 const MCSymbol &Symbol = Alias.AliasedSymbol();
213 // Not an alias.
214 if (&Symbol == &Alias)
217 StringRef AliasName = Alias.getName();
222 // Aliases defined with .symvar copy the binding from the symbol they alias.
236 Renames.insert(std::make_pair(&Symbol, &Alias));
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 516 milliseconds