/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) {
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/attributes/ |
DirectionalLightsAttribute.java | 14 public final static String Alias = "directionalLights"; 15 public final static long Type = register(Alias);
|
PointLightsAttribute.java | 14 public final static String Alias = "pointLights"; 15 public final static long Type = register(Alias);
|
SpotLightsAttribute.java | 14 public final static String Alias = "spotLights"; 15 public final static long Type = register(Alias);
|
BlendingAttribute.java | 25 public final static String Alias = "blended";
26 public final static long Type = register(Alias);
|
DepthTestAttribute.java | 26 public final static String Alias = "depthStencil";
27 public final static long Type = register(Alias);
|
/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."); 73 const Option Alias = getAlias(); 74 if (Alias.isValid()) { 75 O << " Alias:"; 76 Alias.print(O); 89 const Option Alias = getAlias(); 90 if (Alias.isValid() [all...] |
/external/protobuf/src/google/protobuf/compiler/java/ |
java_enum.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/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...] |
/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):
|
/external/clang/lib/Analysis/ |
FormatString.cpp | 454 std::string Alias; 457 Alias = Name; 460 Alias += (Alias[Alias.size()-1] == '*') ? "*" : " *"; 462 // If Alias is the same as the underlying type, e.g. wchar_t, then drop it. 463 if (S == Alias) 464 Alias.clear(); 467 if (!Alias.empty()) 468 return std::string("'") + Alias + "' (aka '" + S + "')" [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/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
|
/external/v8/src/compiler/ |
escape-analysis.h | 90 typedef NodeId Alias; 141 void DebugPrintObject(VirtualObject* state, Alias id); 143 Alias NextAlias() { return next_free_alias_++; } 144 Alias AliasCount() const { return next_free_alias_; } 150 static const Alias kNotReachable; 151 static const Alias kUntrackable; 159 ZoneVector<Alias> aliases_; 160 Alias next_free_alias_;
|
/external/llvm/include/llvm/Option/ |
Option.h | 40 /// of (if any), if the option is an alias, and a number of 106 /// \brief Get the alias arguments as a \0 separated list. 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
|
/frameworks/base/graphics/java/android/graphics/ |
FontListParser.java | 40 aliases = new ArrayList<Alias>(); 43 public List<Alias> aliases; 70 public static class Alias { 111 } else if (tag.equals("alias")) { 202 private static Alias readAlias(XmlPullParser parser) 204 Alias alias = new Alias(); local 205 alias.name = parser.getAttributeValue(null, "name"); 206 alias.toName = parser.getAttributeValue(null, "to") [all...] |
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/ |
ShaderTest.java | 51 public final static String Alias = "Test";
52 public final static long ID = register(Alias);
|
/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/llvm/lib/CodeGen/ |
RegAllocFast.cpp | 95 // A disabled register is not available for allocation, but an alias may 366 unsigned Alias = *AI; 367 switch (PhysRegState[Alias]) { 371 // Either PhysReg is a subregister of Alias and we mark the 373 // Alias and we mark all the aliases as disabled before freeing 380 assert((TRI->isSuperRegister(PhysReg, Alias) || 381 TRI->isSuperRegister(Alias, PhysReg)) && 385 if (TRI->isSuperRegister(PhysReg, Alias)) { 387 PhysRegState[Alias] = regFree; 388 MO.getParent()->addRegisterKilled(Alias, TRI, true) [all...] |