HomeSort by relevance Sort by last modified time
    Searched refs:Alias (Results 76 - 100 of 135) sorted by null

1 2 34 5 6

  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/composer/
Composer.java 132 if (parser.checkEvent(Event.ID.Alias)) {
136 throw new ComposerException(null, null, "found undefined alias " + anchor,
  /external/snakeyaml/src/test/java/org/pyyaml/
CanonicalParser.java 77 // node: ALIAS | ANCHOR? TAG? (SCALAR|sequence|mapping)
79 if (scanner.checkToken(Token.ID.Alias)) {
  /external/clang/test/CodeGenCXX/
mangle.cpp 695 typedef A Alias;
698 template <class T> void b(decltype(T().Alias::meth()) &object) {}
  /external/curl/packages/vms/
stage_curl_install.com 88 $! Alias links needed.
  /external/libchrome/base/
logging.cc 63 #include "base/debug/alias.h"
732 base::debug::Alias(str_stack);
854 // field) and use Alias in hopes that it makes it into crash dumps.
856 base::debug::Alias(&last_error);
  /external/llvm/lib/MC/
MCELFStreamer.cpp 162 void MCELFStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
166 Alias->setVariableValue(Value);
MCAsmStreamer.cpp 136 void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) override;
409 void MCAsmStreamer::EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol) {
411 Alias->print(OS, MAI);
    [all...]
MCObjectStreamer.cpp 191 void MCObjectStreamer::EmitWeakReference(MCSymbol *Alias,
  /external/llvm/lib/Target/X86/
X86AsmPrinter.cpp 679 for (const auto &Alias : M.aliases())
680 TLOFCOFF.emitLinkerFlagsForGlobal(FlagsOS, &Alias, *Mang);
  /external/llvm/unittests/IR/
ConstantsTest.cpp 365 auto *Alias = GlobalAlias::create(IntTy, 0, GlobalValue::ExternalLinkage,
366 "alias", Global, M.get());
367 Placeholder->replaceAllUsesWith(Alias);
369 ASSERT_EQ(GEP->getOperand(0), Alias);
  /external/clang/lib/CodeGen/
CodeGenModule.cpp 225 if (auto *Alias = dyn_cast<llvm::GlobalAlias>(Replacement)) {
226 NewF = dyn_cast<llvm::Function>(Alias->getAliasee());
290 auto *Alias = cast<llvm::GlobalAlias>(Entry);
291 const llvm::GlobalValue *GV = getAliasedGlobal(*Alias);
300 llvm::Constant *Aliasee = Alias->getAliasee();
314 // We have to handle alias to weak aliases in here. LLVM itself disallows
316 // compatibility with gcc we implement it by just pointing the alias
324 GA->getAliasee(), Alias->getType());
325 Alias->setAliasee(Aliasee);
335 auto *Alias = cast<llvm::GlobalAlias>(Entry)
    [all...]
ItaniumCXXABI.cpp     [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 305 /// instruction or alias which is capable of being matched.
453 /// If this is an alias, this is use to determine whether or not to using
455 /// or to use the function generated by the alias.
463 MatchableInfo(std::unique_ptr<const CodeGenInstAlias> Alias)
464 : AsmVariantID(0), AsmString(Alias->AsmString), TheDef(Alias->TheDef),
465 DefRec(Alias.release()),
740 PrintFatalError(Loc, "missing '=' in two-operand alias constraint");
768 "unknown source two-operand alias operand '" + Ops.first +
772 "unknown destination two-operand alias operand '"
    [all...]
AsmWriterEmitter.cpp 636 // alias for that pattern.
790 // Emit the method that prints the alias instruction.
824 for (auto &Alias : Aliases.second) {
825 const CodeGenInstAlias &CGA = Alias.first;
830 // Don't emit the alias if it has more operands than what it's aliasing.
    [all...]
  /external/llvm/include/llvm/MC/
MCStreamer.h 408 /// \brief Emit an weak reference from \p Alias to \p Symbol.
411 /// .weakref alias, symbol
413 /// \param Alias - The alias that is being created.
415 virtual void EmitWeakReference(MCSymbol *Alias, const MCSymbol *Symbol);
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 97 ATTRIBUTE Ascend-Authen-Alias 203 string
118 ATTRIBUTE Ascend-IPX-Alias 224 integer
  /frameworks/base/graphics/java/android/graphics/
Typeface.java 365 for (FontListParser.Alias alias : fontConfig.aliases) {
366 Typeface base = systemFonts.get(alias.toName);
368 int weight = alias.weight;
372 systemFonts.put(alias.name, newFace);
  /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];
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
aepack.py 155 return Carbon.File.Alias(rawdata=desc.data)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aepack.py 155 return Carbon.File.Alias(rawdata=desc.data)
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 339 // In general, the is-alias-of (as defined by typedefs) relation
702 // Returns true if 'TypeNode' has an alias that matches the given matcher.
708 for (const TypedefNameDecl *Alias : TypeAliases.lookup(CanonicalType)) {
710 if (Matcher.matches(*Alias, this, &Result)) {
783 // Now it can still be that we have an alias template.
    [all...]
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 94 // Look through type alias templates, per C++0x [temp.dep.type]p1.
685 if (NamespaceAliasDecl *Alias = dyn_cast<NamespaceAliasDecl>(SD)) {
686 SS.Extend(Context, Alias, IdentifierLoc, CCLoc);
    [all...]
  /external/libchrome/crypto/
nss_util.cc 32 #include "base/debug/alias.h"
212 base::debug::Alias(&nss_error);
213 base::debug::Alias(&os_error);
    [all...]
  /external/llvm/lib/Transforms/IPO/
LowerBitSets.cpp 395 // Create an alias instead of RAUW'ing the gep directly. On x86 this ensures
401 GlobalAlias *Alias = GlobalAlias::create(
403 BAI->ByteArray->replaceAllUsesWith(Alias);
441 // Each use of the byte array uses a different alias. This makes the
    [all...]
  /external/clang/include/clang/AST/
DeclCXX.h     [all...]

Completed in 635 milliseconds

1 2 34 5 6