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

1 2 3 4

  /external/guice/core/src/com/google/inject/name/
Names.java 31 public class Names {
33 private Names() {}
47 binder = binder.skipSources(Names.class);
61 binder = binder.skipSources(Names.class);
  /external/swiftshader/third_party/subzero/src/
IceRangeSpec.h 39 // Set of names explicitly provided.
40 std::unordered_set<std::string> Names;
58 // construct explicit names for functions even in a non-DUMP build so that
  /external/python/cpython2/Demo/rpc/
rnusersclient.py 46 def Names(self):
75 list = c.Names()
91 all = c.Names()
  /prebuilts/go/darwin-x86/src/go/types/
scope.go 50 // Names returns the scope's element names in sorted order.
51 func (s *Scope) Names() []string {
52 names := make([]string, len(s.elems))
55 names[i] = name
58 sort.Strings(names)
59 return names
171 for _, name := range s.Names() {
  /prebuilts/go/linux-x86/src/go/types/
scope.go 50 // Names returns the scope's element names in sorted order.
51 func (s *Scope) Names() []string {
52 names := make([]string, len(s.elems))
55 names[i] = name
58 sort.Strings(names)
59 return names
171 for _, name := range s.Names() {
  /external/clang/lib/Basic/
TargetInfo.cpp 366 ArrayRef<const char *> Names = getGCCRegNames();
372 return n < Names.size();
375 // Check register names.
376 if (std::find(Names.begin(), Names.end(), Name) != Names.end())
379 // Check any additional names that we have.
381 for (const char *AN : ARN.Names) {
385 // the bounds of the register names from above.
386 if (AN == Name && ARN.RegNum < Names.size()
    [all...]
Module.cpp 124 SmallVector<StringRef, 2> Names;
126 // Build up the set of module names (from innermost to outermost).
128 Names.push_back(M->Name);
131 for (SmallVectorImpl<StringRef>::reverse_iterator I = Names.rbegin(),
132 IEnd = Names.rend();
  /external/clang/lib/AST/
NSAPI.cpp 364 const char **Names;
367 Names = InstanceSelectorName;
370 Names = ClassSelectorName;
374 Sels[MK] = Ctx.Selectors.getUnarySelector(&Ctx.Idents.get(Names[MK]));
  /external/llvm/include/llvm/ProfileData/
SampleProfReader.h 44 // Function names must be mangled in order for the profile loader to
159 // NAMES
245 /// * A list of functions included in the profile (mangled names).
437 /// Function names in this profile.
438 std::vector<std::string> Names;
  /external/llvm/lib/DebugInfo/CodeView/
TypeRecord.cpp 255 std::vector<StringRef> Names;
256 CV_DESERIALIZE(Data, L, Name, CV_ARRAY_FIELD_TAIL(Names));
258 Name, Names);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ProfileData/
SampleProfReader.h 44 // Function names must be mangled in order for the profile loader to
159 // NAMES
253 /// * A list of functions included in the profile (mangled names).
287 // profile, the function names are all stripped, so we need to strip
450 /// Function names in this profile.
451 std::vector<std::string> Names;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ProfileData/
SampleProfReader.h 44 // Function names must be mangled in order for the profile loader to
159 // NAMES
253 /// * A list of functions included in the profile (mangled names).
287 // profile, the function names are all stripped, so we need to strip
450 /// Function names in this profile.
451 std::vector<std::string> Names;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ProfileData/
SampleProfReader.h 44 // Function names must be mangled in order for the profile loader to
159 // NAMES
253 /// * A list of functions included in the profile (mangled names).
287 // profile, the function names are all stripped, so we need to strip
450 /// Function names in this profile.
451 std::vector<std::string> Names;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/
SampleProfReader.h 44 // Function names must be mangled in order for the profile loader to
159 // NAMES
253 /// * A list of functions included in the profile (mangled names).
287 // profile, the function names are all stripped, so we need to strip
450 /// Function names in this profile.
451 std::vector<std::string> Names;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ProfileData/
SampleProfReader.h 44 // Function names must be mangled in order for the profile loader to
159 // NAMES
253 /// * A list of functions included in the profile (mangled names).
287 // profile, the function names are all stripped, so we need to strip
450 /// Function names in this profile.
451 std::vector<std::string> Names;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ProfileData/
SampleProfReader.h 44 // Function names must be mangled in order for the profile loader to
159 // NAMES
253 /// * A list of functions included in the profile (mangled names).
287 // profile, the function names are all stripped, so we need to strip
450 /// Function names in this profile.
451 std::vector<std::string> Names;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ProfileData/
SampleProfReader.h 44 // Function names must be mangled in order for the profile loader to
159 // NAMES
253 /// * A list of functions included in the profile (mangled names).
287 // profile, the function names are all stripped, so we need to strip
450 /// Function names in this profile.
451 std::vector<std::string> Names;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ProfileData/
SampleProfReader.h 44 // Function names must be mangled in order for the profile loader to
159 // NAMES
253 /// * A list of functions included in the profile (mangled names).
287 // profile, the function names are all stripped, so we need to strip
450 /// Function names in this profile.
451 std::vector<std::string> Names;
  /external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 298 std::vector<std::string> Names;
300 Names.emplace_back(*Name);
302 new internal::HasNameMatcher(std::move(Names)));
309 Names(std::move(N)) {
311 for (StringRef Name : Names)
364 PatternSet(ArrayRef<std::string> Names) {
365 for (StringRef Name : Names)
408 return std::any_of(Names.begin(), Names.end(), [&](StringRef Name) {
414 PatternSet Patterns(Names);
    [all...]
  /external/clang/lib/Parse/
ParseStmtAsm.cpp 725 SmallVector<IdentifierInfo *, 4> Names;
746 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs))
750 unsigned NumOutputs = Names.size();
762 if (!AteExtraColon && ParseAsmOperandsOpt(Names, Constraints, Exprs))
766 assert(Names.size() == Constraints.size() &&
769 unsigned NumInputs = Names.size() - NumOutputs;
794 AsmLoc, false, isVolatile, NumOutputs, NumInputs, Names.data(),
811 bool Parser::ParseAsmOperandsOpt(SmallVectorImpl<IdentifierInfo *> &Names,
833 Names.push_back(II);
836 Names.push_back(nullptr)
    [all...]
  /external/clang/unittests/ASTMatchers/
ASTMatchersNarrowingTest.cpp     [all...]
  /external/llvm/unittests/ProfileData/
CoverageMappingTest.cpp 480 std::vector<std::string> Names;
482 Names.push_back(Func.Name);
483 ASSERT_EQ(1U, Names.size());
484 ASSERT_EQ("func", Names[0]);
495 std::vector<std::string> Names;
497 Names.push_back(Func.Name);
498 ASSERT_EQ(1U, Names.size());
499 ASSERT_EQ("func", Names[0]);
  /external/lzma/CPP/7zip/Archive/7z/
7zOut.h 121 UStringVector Names;
152 Names.Clear();
174 Names.ReserveDown();
  /external/nanopb-c/generator/
nanopb_generator.py 65 class Names:
66 '''Keeps a set of nested names and formats them to C identifier.'''
68 if isinstance(parts, Names):
77 return Names(self.parts + (other,))
79 return Names(self.parts + other)
84 return isinstance(other, Names) and self.parts == other.parts
87 '''Parse Names() from FieldDescriptorProto type_name'''
89 raise NotImplementedError("Lookup of non-absolute type names is not supported")
90 return Names(type_name[1:].split('.'))
107 if isinstance(value, (str, Names))
    [all...]
  /external/spirv-llvm/lib/SPIRV/
OCLUtil.cpp 22 // Neither the names of Advanced Micro Devices, Inc., nor the names of its
567 auto Names = getSrcAndDstElememntTypeName(BIC);
568 if (Names.second == getSPIRVTypeName(kSPIRVTypeName::Sampler) &&
569 Names.first == getSPIRVTypeName(kSPIRVTypeName::ConstantSampler))
578 auto Names = getSrcAndDstElememntTypeName(BIC);
579 if (Names.second == getSPIRVTypeName(kSPIRVTypeName::PipeStorage) &&
580 Names.first == getSPIRVTypeName(kSPIRVTypeName::ConstantPipeStorage))

Completed in 748 milliseconds

1 2 3 4