HomeSort by relevance Sort by last modified time
    Searched defs:Names (Results 1 - 17 of 17) sorted by null

  /external/clang/lib/AST/
NSAPI.cpp 263 const char **Names;
266 Names = InstanceSelectorName;
269 Names = ClassSelectorName;
273 Sels[MK] = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get(Names[MK]));
  /external/clang/lib/Basic/
Module.cpp 107 SmallVector<StringRef, 2> Names;
109 // Build up the set of module names (from innermost to outermost).
111 Names.push_back(M->Name);
114 for (SmallVector<StringRef, 2>::reverse_iterator I = Names.rbegin(),
115 IEnd = Names.rend();
TargetInfo.cpp 217 const char * const *Names;
223 getGCCRegNames(Names, NumNames);
232 // Check register names.
234 if (Name == Names[i])
238 // Check any additional names that we have.
243 for (unsigned j = 0; j < llvm::array_lengthof(AddlNames[i].Names); j++) {
244 if (!AddlNames[i].Names[j])
247 // the bounds of the register names from above.
248 if (AddlNames[i].Names[j] == Name && AddlNames[i].RegNum < NumNames)
276 const char * const *Names;
    [all...]
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 179 // If any capture names a function parameter pack, that pack is expanded
217 SmallVector<IdentifierInfo *, 4> Names;
229 Names.push_back(Name);
236 = Names.size() == 0? Diag(Loc, diag::err_unexpanded_parameter_pack_0)
238 : Names.size() == 1? Diag(Loc, diag::err_unexpanded_parameter_pack_1)
239 << (int)UPPC << Names[0]
240 : Names.size() == 2? Diag(Loc, diag::err_unexpanded_parameter_pack_2)
241 << (int)UPPC << Names[0] << Names[1]
243 << (int)UPPC << Names[0] << Names[1]
    [all...]
SemaStmtAsm.cpp 91 unsigned NumInputs, IdentifierInfo **Names,
116 if (Names[i])
117 OutputName = Names[i]->getName();
145 if (Names[i])
146 InputName = Names[i]->getName();
211 NumInputs, Names, Constraints, Exprs, AsmString,
578 SmallVector<IdentifierInfo*, 4> Names;
596 /*NumInputs*/ 0, Names, ConstraintRefs, Exprs,
666 Names.resize(NumExprs);
685 Names[i] = OpDecl->getIdentifier()
    [all...]
TreeTransform.h 91 /// default locations and entity names used for type-checking
430 /// and destructor names and then (if needed) rebuilds the declaration name.
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.cc 72 static const char** Names;
75 static inline const char* Name(E val) { return Names[val]; }
78 if (!find_string(index, name, Names, Size))
95 template<> const char** Enum<e>::Names = n; \
  /external/clang/lib/Parse/
ParseStmt.cpp 963 // Names declared in the for-init-statement, and in the condition of if,
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 1097 // TODO: Process arg names
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 445 // Give section names unique ID's.
455 // Give section names unique ID's.
464 // Same for GC names.
725 SmallVector<StringRef, 4> Names;
726 M->getMDKindNames(Names);
728 if (Names.empty()) return;
732 for (unsigned MDKindID = 0, e = Names.size(); MDKindID != e; ++MDKindID) {
734 StringRef KName = Names[MDKindID];
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 399 // Give section names unique ID's.
409 // Give section names unique ID's.
418 // Same for GC names.
679 SmallVector<StringRef, 4> Names;
680 M->getMDKindNames(Names);
682 if (Names.empty()) return;
686 for (unsigned MDKindID = 0, e = Names.size(); MDKindID != e; ++MDKindID) {
688 StringRef KName = Names[MDKindID];
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 418 // Give section names unique ID's.
430 // Give section names unique ID's.
439 // Same for GC names.
717 SmallVector<StringRef, 4> Names;
718 M->getMDKindNames(Names);
720 if (Names.empty()) return;
724 for (unsigned MDKindID = 0, e = Names.size(); MDKindID != e; ++MDKindID) {
726 StringRef KName = Names[MDKindID];
    [all...]
  /external/clang/include/clang/Basic/
TargetInfo.h 558 const char * const Names[5];
776 virtual void getGCCRegNames(const char * const *&Names,
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 302 SmallVector<IdentifierInfo *, 16> Names;
306 Names.push_back(Reader.GetIdentifierInfo(F, Record, Idx));
317 Names.data(), Constraints.data(),
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 461 // Give section names unique ID's.
473 // Give section names unique ID's.
482 // Same for GC names.
757 SmallVector<StringRef, 8> Names;
758 M->getMDKindNames(Names);
760 if (Names.empty()) return;
764 for (unsigned MDKindID = 0, e = Names.size(); MDKindID != e; ++MDKindID) {
766 StringRef KName = Names[MDKindID];
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 317 // Add the various names to the Dwarf accelerator table names.
621 // Look up the source id with the given directory and source file names.
    [all...]
  /external/clang/include/clang/AST/
Stmt.h     [all...]

Completed in 947 milliseconds