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

1 2

  /external/chromium_org/base/debug/
alias.cc 5 #include "base/debug/alias.h"
15 void Alias(const void* var) {
  /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/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_enum.h 70 struct Alias {
74 vector<Alias> aliases_;
  /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/protobuf/src/google/protobuf/compiler/javanano/
javanano_enum.h 73 struct Alias {
77 vector<Alias> aliases_;
  /external/llvm/lib/Option/
Option.cpp 31 assert(getAlias().isValid() && "Only alias options can have alias args.");
32 assert(getKind() == FlagClass && "Only Flag aliases can have alias args.");
34 "Cannot provide alias args to a flag option.");
75 const Option Alias = getAlias();
76 if (Alias.isValid()) {
77 llvm::errs() << " Alias:";
78 Alias.dump();
89 const Option Alias = getAlias();
90 if (Alias.isValid()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
APIspecutil.py 60 alias, need_conv = impl.match(func, conversions)
61 if not alias:
65 alias = func
69 __aliases[func.name] = (alias, need_conv)
141 alias, need_conv = __aliases[func.name]
143 dst_param = alias.get_param(src_param.name)
252 """Return the prefix of the function the named function is an alias of."""
253 alias = __aliases[funcname][0]
254 return alias.prefix
257 def Alias(funcname)
    [all...]
  /external/mesa3d/src/mesa/main/
APIspecutil.py 60 alias, need_conv = impl.match(func, conversions)
61 if not alias:
65 alias = func
69 __aliases[func.name] = (alias, need_conv)
141 alias, need_conv = __aliases[func.name]
143 dst_param = alias.get_param(src_param.name)
252 """Return the prefix of the function the named function is an alias of."""
253 alias = __aliases[funcname][0]
254 return alias.prefix
257 def Alias(funcname)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
applesingle.py 23 class Alias:
120 if isinstance(infile, Carbon.File.Alias):
  /external/clang/lib/Analysis/
FormatString.cpp 444 std::string Alias;
447 Alias = Name;
450 Alias += (Alias[Alias.size()-1] == '*') ? "*" : " *";
452 // If Alias is the same as the underlying type, e.g. wchar_t, then drop it.
453 if (S == Alias)
454 Alias.clear();
457 if (!Alias.empty())
458 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
37 // Producing an alias to a base class ctor/dtor can degrade debug quality
109 /// Try to emit a definition as a global alias for another definition.
110 /// If \p InEveryTU is true, we know that an equivalent alias can be produced
118 // The alias will use the linkage of the referent. If we can't
122 // We can't use an alias if the linkage is not valid for one.
137 // Derive the type for the alias.
149 // Instead of creating as alias to a linkonce_odr, replace all of the uses
171 // Don't create an alias to a linker weak symbol. This avoids producing
173 // output the alias both for weak_odr and linkonce_odr, but tha
    [all...]
CodeGenModule.cpp 205 if (auto *Alias = dyn_cast<llvm::GlobalAlias>(Replacement)) {
206 NewF = dyn_cast<llvm::Function>(Alias->getAliasee());
257 auto *Alias = cast<llvm::GlobalAlias>(Entry);
258 const llvm::GlobalValue *GV = getAliasedGlobal(*Alias);
267 llvm::Constant *Aliasee = Alias->getAliasee();
281 // We have to handle alias to weak aliases in here. LLVM itself disallows
283 // compatibility with gcc we implement it by just pointing the alias
291 GA->getAliasee(), Alias->getType());
292 Alias->setAliasee(Aliasee);
304 auto *Alias = cast<llvm::GlobalAlias>(Entry)
    [all...]
  /frameworks/base/graphics/java/android/graphics/
FontListParser.java 39 aliases = new ArrayList<Alias>();
42 public List<Alias> aliases;
56 public static class Alias {
96 } else if (parser.getName().equals("alias")) {
128 private static Alias readAlias(XmlPullParser parser)
130 Alias alias = new Alias(); local
131 alias.name = parser.getAttributeValue(null, "name");
132 alias.toName = parser.getAttributeValue(null, "to")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
Cursor.h 74 Alias,
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoframe.cc 42 // * Buffers passed using Alias() are not owned and will not be destroyed on
51 void Alias(uint8* data, size_t length);
80 Alias(data, length);
84 void WebRtcVideoFrame::FrameBuffer::Alias(uint8* data, size_t length) {
128 bool WebRtcVideoFrame::Alias(const CapturedFrame* frame, int dw, int dh) {
134 Alias(static_cast<uint8*>(frame->data),
157 void WebRtcVideoFrame::Alias(
162 video_buffer->Alias(buffer, buffer_size);
  /external/llvm/include/llvm/Option/
Option.h 40 /// of (if any), if the option is an alias, and a number of
107 /// \brief Get the alias arguments as a \0 separated list.
165 /// aliases (itself, if the option has no alias).
167 const Option Alias = getAlias();
168 if (Alias.isValid()) return Alias.getUnaliasedOption();
181 /// Note that matches against options which are an alias should never be
  /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.
160 /// at the function-level. Different IdentifiedFunctionLocals can't alias.
161 /// Further, an IdentifiedFunctionLocal can not alias with any function
449 /// BasicAliasAnalysis - This is the primary alias analysis implementation.
465 AliasResult alias(const Location &LocA, const Location &LocB) override {
469 AliasResult Alias = aliasCheck(LocA.Ptr, LocA.Size, LocA.TBAATag,
477 return Alias;
516 // AliasCache - Track alias queries to guard against recursion
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocFast.cpp 96 // A disabled register is not available for allocation, but an alias may
367 unsigned Alias = *AI;
368 switch (PhysRegState[Alias]) {
372 assert(TRI->isSuperRegister(PhysReg, Alias) &&
375 PhysRegState[Alias] = regFree;
376 MO.getParent()->addRegisterKilled(Alias, TRI, true);
379 if (TRI->isSuperRegister(PhysReg, Alias)) {
381 MO.getParent()->addRegisterKilled(Alias, TRI, true);
384 // Some other alias was in the working set - clear it.
385 PhysRegState[Alias] = regDisabled
    [all...]
  /external/llvm/utils/TableGen/
RegisterInfoEmitter.cpp 397 Record *Alias = DI->getDef();
398 DwarfRegNums[Reg] = DwarfRegNums[Alias];
    [all...]
AsmWriterEmitter.cpp 630 // alias for that pattern.
780 // Emit the method that prints the alias instruction.
793 CodeGenInstAlias *Alias = new CodeGenInstAlias(*I, Variant, Target);
801 AliasMap[getQualifiedName(Op->getDef())].insert(std::make_pair(Alias,
814 for (auto &Alias : Aliases.second) {
815 const CodeGenInstAlias *CGA = Alias.first;
820 // Don't emit the alias if it has more operands than what it's aliasing.
    [all...]
AsmMatcherEmitter.cpp 293 /// instruction or alias which is capable of being matched.
441 MatchableInfo(const CodeGenInstAlias *Alias)
442 : AsmVariantID(0), TheDef(Alias->TheDef), DefRec(Alias),
443 AsmString(Alias->AsmString) {
701 PrintFatalError(Loc, "missing '=' in two-operand alias constraint");
729 "unknown source two-operand alias operand '" + Ops.first +
733 "unknown destination two-operand alias operand '" +
746 // 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 510 const MCSymbol &Alias = OriginalData.getSymbol();
512 // Not an alias.
513 if (!Alias.isVariable())
515 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
521 StringRef AliasName = Alias.getName();
526 // Aliases defined with .symvar copy the binding from the symbol they alias.
540 Renames.insert(std::make_pair(&Symbol, &Alias));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
netioapi.h 175 WCHAR Alias[IF_MAX_STRING_SIZE + 1];

Completed in 1763 milliseconds

1 2