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

1 2 3

  /frameworks/compile/slang/
RSCCOptions.td 32 def target_api_EQ : Joined<["-"], "target-api=">, Alias<target_api>;
40 def _I : Separate<["-", "--"], "include-path">, MetaVarName<"<directory>">, Alias<I>;
54 def _emit_asm : Flag<["-"], "S">, Alias<emit_asm>;
76 Alias<java_reflection_path_base>;
80 Alias<java_reflection_package_name>;
84 def _bitcode_storage : Separate<["-"], "s">, Alias<bitcode_storage>;
89 def rs_package_name_EQ : Joined<["-"], "rs-package-name=">, Alias<rs_package_name>;
104 def emit_dep : Flag<["-"], "emit-dep">, Alias<M>;
109 def _output_dep_dir : Separate<["-"], "d">, Alias<output_dep_dir>;
113 def _additional_dep_target : Separate<["-"], "a">, Alias<additional_dep_target>
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_enum.h 70 struct Alias {
74 vector<Alias> aliases_;
  /external/clang/include/clang/Sema/
Weak.h 26 IdentifierInfo *alias; // alias (optional) member in class:clang::WeakInfo
31 : alias(0), loc(SourceLocation()), used(false) {}
32 WeakInfo(IdentifierInfo *Alias, SourceLocation Loc)
33 : alias(Alias), loc(Loc), used(false) {}
34 inline IdentifierInfo * getAlias() const { return alias; }
39 return alias == RHS.getAlias() && loc == RHS.getLocation();
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_enum.h 73 struct Alias {
77 vector<Alias> aliases_;
javamicro_enum.cc 60 Alias alias; local
61 alias.value = value;
62 alias.canonical_value = canonical_value;
63 aliases_.push_back(alias);
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_enum.h 73 struct Alias {
77 vector<Alias> aliases_;
javanano_enum.cc 60 Alias alias; local
61 alias.value = value;
62 alias.canonical_value = canonical_value;
63 aliases_.push_back(alias);
  /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/clang/test/Preprocessor/
warning_tests.c 38 #error Alias expansion not allowed
feature_tests.c 44 #error Alias expansion not allowed
  /external/clang/lib/Driver/
Option.cpp 23 // Multi-level aliases are not supported, and alias options cannot
65 const Option Alias = getAlias();
66 if (Alias.isValid()) {
67 llvm::errs() << " Alias:";
68 Alias.dump();
79 const Option Alias = getAlias();
80 if (Alias.isValid())
81 return Alias.matches(Opt);
98 // If the option was an alias, get the spelling from the unaliased one.
  /external/llvm/lib/Option/
Option.cpp 25 // Multi-level aliases are not supported, and alias options cannot
67 const Option Alias = getAlias();
68 if (Alias.isValid()) {
69 llvm::errs() << " Alias:";
70 Alias.dump();
81 const Option Alias = getAlias();
82 if (Alias.isValid())
83 return Alias.matches(Opt);
100 // If the option was an alias, get the spelling from the unaliased one.
  /external/llvm/include/llvm/Option/
Option.h 40 /// of (if any), if the option is an alias, and a number of
153 /// aliases (itself, if the option has no alias).
155 const Option Alias = getAlias();
156 if (Alias.isValid()) return Alias.getUnaliasedOption();
169 /// Note that matches against options which are an alias should never be
  /external/clang/test/SemaCXX/
using-directive.cpp 110 namespace Alias = Aliased;
111 using namespace Alias;
  /external/clang/include/clang/Driver/
Option.h 51 /// of (if any), if the option is an alias, and a number of
164 /// aliases (itself, if the option has no alias).
166 const Option Alias = getAlias();
167 if (Alias.isValid()) return Alias.getUnaliasedOption();
180 /// Note that matches against options which are an alias should never be
  /external/llvm/lib/Target/Mips/
Mips16ISelDAGToDAG.h 34 SDValue &Offset, SDValue &Alias);
MipsISelDAGToDAG.h 69 SDValue &Offset, SDValue &Alias);
Mips16ISelDAGToDAG.cpp 87 // Insert instructions to initialize the Mips16 SP Alias register in the
154 SDValue &Alias) {
157 Alias = CurDAG->getTargetConstant(0, ValTy);
163 getMips16SPRefReg(Parent, Alias);
186 getMips16SPRefReg(Parent, 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:__anon11337::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/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/llvm/lib/CodeGen/
RegAllocFast.cpp 95 // A disabled register is not available for allocation, but an alias may
369 unsigned Alias = *AI;
370 switch (PhysRegState[Alias]) {
374 assert(TRI->isSuperRegister(PhysReg, Alias) &&
377 PhysRegState[Alias] = regFree;
378 MO.getParent()->addRegisterKilled(Alias, TRI, true);
381 if (TRI->isSuperRegister(PhysReg, Alias)) {
383 MO.getParent()->addRegisterKilled(Alias, TRI, true);
386 // Some other alias was in the working set - clear it.
387 PhysRegState[Alias] = regDisabled
    [all...]
ScheduleDAGInstrs.cpp 143 // For now, ignore PseudoSourceValues which may alias LLVM IR values
248 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
249 Alias.isValid(); ++Alias) {
250 if (!Uses.contains(*Alias))
252 for (Reg2SUnitsMap::iterator I = Uses.find(*Alias); I != Uses.end(); ++I) {
265 Dep = SDep(SU, SDep::Data, *Alias);
295 for (MCRegAliasIterator Alias(MO.getReg(), TRI, true);
296 Alias.isValid(); ++Alias) {
    [all...]
  /external/llvm/include/llvm/MC/
MCObjectStreamer.h 78 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
  /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/webkit/Source/WebCore/platform/
Cursor.cpp 118 case Cursor::Alias:
213 case Cursor::Alias:
214 return "Alias";
310 DEFINE_STATIC_LOCAL(Cursor, c, (Cursor::Alias));

Completed in 1116 milliseconds

1 2 3