HomeSort by relevance Sort by last modified time
    Searched defs:Alias (Results 1 - 16 of 16) 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/Analysis/
FormatString.cpp 423 std::string Alias;
426 Alias = Name;
429 Alias += (Alias[Alias.size()-1] == '*') ? "*" : " *";
431 // If Alias is the same as the underlying type, e.g. wchar_t, then drop it.
432 if (S == Alias)
433 Alias.clear();
436 if (!Alias.empty())
437 return std::string("'") + Alias + "' (aka '" + S + "')"
    [all...]
  /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 45 /// of (if any), if the option is an alias, and a number of
80 /// Option that this is an alias for, if any.
81 const Option *Alias;
85 const Option *Group, const Option *Alias);
92 const Option *getAlias() const { return Alias; }
141 /// aliases (itself, if the option has no alias).
143 if (Alias) return Alias->getUnaliasedOption();
156 /// Note that matches against options which are an alias should never be
  /external/clang/lib/Driver/
OptTable.cpp 139 const Option *Alias = getOption(info.AliasID);
141 Option *Opt = new Option(&info, id, Group, Alias);
  /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.
428 /// BasicAliasAnalysis - This is the primary alias analysis implementation.
444 virtual AliasResult alias(const Location &LocA, function in struct:__anon10130::BasicAliasAnalysis
449 AliasResult Alias = aliasCheck(LocA.Ptr, LocA.Size, LocA.TBAATag,
456 return Alias;
491 // AliasCache - Track alias queries to guard against recursion.
530 "Basic Alias Analysis (stateless AA impl)",
534 "Basic Alias Analysis (stateless AA impl)"
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocFast.cpp 95 // A disabled register is not available for allocation, but an alias may
354 unsigned Alias = *AI;
355 switch (PhysRegState[Alias]) {
359 assert(TRI->isSuperRegister(PhysReg, Alias) &&
362 PhysRegState[Alias] = regFree;
363 UsedInInstr.set(Alias);
364 MO.getParent()->addRegisterKilled(Alias, TRI, true);
367 if (TRI->isSuperRegister(PhysReg, Alias)) {
369 UsedInInstr.set(Alias);
370 MO.getParent()->addRegisterKilled(Alias, TRI, true)
    [all...]
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 329 Record *Alias = DI->getDef();
330 DwarfRegNums[Reg] = DwarfRegNums[Alias];
    [all...]
AsmMatcherEmitter.cpp 283 /// instruction or alias which is capable of being matched.
428 MatchableInfo(const CodeGenInstAlias *Alias)
429 : AsmVariantID(0), TheDef(Alias->TheDef), DefRec(Alias),
430 AsmString(Alias->AsmString) {
682 throw TGError(Loc, "missing '=' in two-operand alias constraint");
710 "unknown source two-operand alias operand '" +
714 "unknown destination two-operand alias operand '" +
727 // Remove the AsmOperand for the alias operand.
    [all...]
  /external/clang/test/CodeGenCXX/
mangle.cpp 695 typedef A Alias;
698 template <class T> void b(decltype(T().Alias::meth()) &object) {}
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 504 const MCSymbol &Alias = it->getSymbol();
505 const MCSymbol &Symbol = Alias.AliasedSymbol();
508 // Not an alias.
509 if (&Symbol == &Alias)
512 StringRef AliasName = Alias.getName();
517 // Aliases defined with .symvar copy the binding from the symbol they alias.
531 Renames.insert(std::make_pair(&Symbol, &Alias));
    [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]
  /tools/motodev/src/plugins/preflighting.core/apktool/
apktool.jar 

Completed in 670 milliseconds