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

1 2 3

  /external/libchrome/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/guice/extensions/grapher/src/com/google/inject/grapher/
Alias.java 20 * Alias between two nodes. Causes the 'from' node to be aliased with the 'to' node, which means
26 public final class Alias {
30 public Alias(NodeId fromId, NodeId toId) {
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel3CommandsLib/
Alias.c 2 Main file for Alias shell level 3 function.
21 Print out each alias registered with the Shell.
32 CHAR16 *Alias;
43 Alias = AllocateZeroPool(StrSize(ConstAllAliasList));
44 if (Alias == NULL) {
50 CopyMem(Alias, Walker, StrSize(Walker));
51 Walker = StrStr(Alias, L";");
56 Command = gEfiShellProtocol->GetAlias(Alias, &Volatile);
57 if (ShellCommandIsOnAliasList(Alias)) {
60 ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN (STR_ALIAS_OUTPUT), gShellLevel3HiiHandle, !Volatile?L' ':L'*', Alias, Command);
    [all...]
  /external/llvm/lib/Option/
Option.cpp 32 assert(getAlias().isValid() && "Only alias options can have alias args.");
33 assert(getKind() == FlagClass && "Only Flag aliases can have alias args.");
35 "Cannot provide alias args to a flag option.");
74 const Option Alias = getAlias();
75 if (Alias.isValid()) {
76 O << " Alias:";
77 Alias.print(O);
90 const Option Alias = getAlias();
91 if (Alias.isValid()
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_enum.h 78 struct Alias {
82 vector<Alias> aliases_;
java_enum_lite.h 78 struct Alias {
82 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/python/cpython2/Lib/plat-mac/
applesingle.py 23 class Alias:
120 if isinstance(infile, Carbon.File.Alias):
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
Event.java 26 Alias, DocumentEnd, DocumentStart, MappingEnd, MappingStart, Scalar, SequenceEnd, SequenceStart, StreamEnd, StreamStart
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
applesingle.py 23 class Alias:
120 if isinstance(infile, Carbon.File.Alias):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
applesingle.py 23 class Alias:
120 if isinstance(infile, Carbon.File.Alias):
  /device/linaro/bootloader/edk2/ShellPkg/Include/Library/
ShellCommandLib.h 224 CHAR16 *Alias;
231 If Alias is NULL, then ASSERT().
234 @param[in] Alias The pointer to Alias.
244 IN CONST CHAR16 *Alias
248 Get the list of all shell alias commands. This is a linked list,
261 Determine if a given alias is on the list of built in aliases.
263 @param[in] Alias The alias to test for.
265 @retval TRUE The alias is a built in alias.
    [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 32 /// Try to emit a base destructor as an alias to its primary
38 // Producing an alias to a base class ctor/dtor can degrade debug quality
44 // an alias, unless this class owns no members.
117 /// Try to emit a definition as a global alias for another definition.
118 /// If \p InEveryTU is true, we know that an equivalent alias can be produced
126 // The alias will use the linkage of the referent. If we can't
130 // We can't use an alias if the linkage is not valid for one.
145 // Derive the type for the alias.
157 // Instead of creating as alias to a linkonce_odr, replace all of the uses
171 // If we have a weak, non-discardable alias (weak, weak_odr), like an exter
    [all...]
  /external/llvm/lib/Target/Lanai/InstPrinter/
LanaiInstPrinter.cpp 37 StringRef Alias, unsigned OpNo0,
39 OS << "\t" << Alias << " ";
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
Token.java 23 Alias, Anchor, BlockEnd, BlockEntry, BlockMappingStart, BlockSequenceStart, Directive, DocumentEnd, DocumentStart, FlowEntry, FlowMappingEnd, FlowMappingStart, FlowSequenceEnd, FlowSequenceStart, Key, Scalar, StreamEnd, StreamStart, Tag, Value, Whitespace, Comment, Error
  /frameworks/base/core/java/android/text/
FontConfig.java 36 private final @NonNull Alias[] mAliases;
38 public FontConfig(@NonNull Family[] families, @NonNull Alias[] aliases) {
53 public @NonNull Alias[] getAliases() {
137 * Class that holds information about a Font alias.
139 public static final class Alias {
144 public Alias(@NonNull String name, @NonNull String toName, int weight) {
151 * Returns the new name for the alias.
158 * Returns the existing name to which this alias points to.
165 * Returns the weight associated with this alias.
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Map.c 302 CHAR16 *Alias;
307 Alias = NULL;
336 // Chop off the other names that become "Alias(s)"
376 Alias = StrnCatGrow(&Alias, 0, MapList, 0);
377 if (Alias == NULL) {
380 TempSpot = StrStr(Alias, CurrentName);
390 if (Alias[StrLen(Alias)-1] == L';') {
391 Alias[StrLen(Alias)-1] = CHAR_NULL;
    [all...]
  /external/clang/lib/Analysis/
FormatString.cpp 485 std::string Alias;
488 Alias = Name;
491 Alias += (Alias[Alias.size()-1] == '*') ? "*" : " *";
493 // If Alias is the same as the underlying type, e.g. wchar_t, then drop it.
494 if (S == Alias)
495 Alias.clear();
498 if (!Alias.empty())
499 return std::string("'") + Alias + "' (aka '" + S + "')"
    [all...]
  /external/clang/lib/Format/
SortJavaScriptImports.cpp 43 StringRef Alias;
49 return Symbol == RHS.Symbol && Alias == RHS.Alias;
315 << Reference.Symbols[i].Alias;
396 // {sym as alias, sym2 as ...} from '...';
415 Symbol.Alias = Current->TokenText;
  /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.
166 /// aliases (itself, if the option has no alias).
168 const Option Alias = getAlias();
169 if (Alias.isValid()) return Alias.getUnaliasedOption();
182 /// Note that matches against options which are an alias should never be
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 381 const MCSymbol *Alias = Asm.getContext().lookupSymbol(Begin->getName());
382 if (!Alias || !Alias->isUndefined())
386 std::make_pair(cast<MCSymbolELF>(Alias), cast<MCSymbolELF>(Begin)));
392 const auto &Alias = cast<MCSymbolELF>(A);
393 // Not an alias.
394 if (!Alias.isVariable())
396 auto *Ref = dyn_cast<MCSymbolRefExpr>(Alias.getVariableValue());
401 StringRef AliasName = Alias.getName();
406 // Aliases defined with .symvar copy the binding from the symbol they alias
    [all...]
  /external/swiftshader/third_party/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
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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.
166 /// aliases (itself, if the option has no alias).
168 const Option Alias = getAlias();
169 if (Alias.isValid()) return Alias.getUnaliasedOption();
182 /// Note that matches against options which are an alias should never be

Completed in 463 milliseconds

1 2 3