HomeSort by relevance Sort by last modified time
    Searched refs:Name (Results 326 - 350 of 2465) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elfvsb/
internal0.d 7 +Num: +Value +Size +Type +Bind +Vis +Ndx +Name
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-i386/
pr13302.d 0 #name: PR ld/13302
7 Offset Info Type Sym. Value Symbol's Name
11 Offset Info Type Sym. Value Symbol's Name
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mn10300/
i135409-1.d 3 +Num: +Value +Size +Type +Bind +Vis +Ndx +Name
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/
align2a.d 7 Idx +Name +Size +VMA +LMA +File +off +Algn
align2b.d 7 Idx +Name +Size +VMA +LMA +File off +Algn
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/
vxworks4.d 8 Offset Info Type Sym\.Value Sym\. Name \+ Addend
  /external/llvm/include/llvm/ExecutionEngine/Orc/
CompileOnDemandLayer.h 107 JITSymbol findSymbol(StringRef Name, bool ExportedSymbolsOnly) {
108 if (Name.endswith("$stub_ptr") && !ExportedSymbolsOnly) {
110 return StubsMgr->findPointer(Name.drop_back(9));
112 return StubsMgr->findStub(Name, ExportedSymbolsOnly);
167 [Resolver](const std::string &Name) {
168 return Resolver->findSymbol(Name);
187 /// @param Name The name of the symbol to search for.
190 JITSymbol findSymbol(StringRef Name, bool ExportedSymbolsOnly) {
193 if (auto Symbol = findSymbolIn(LDI, Name, ExportedSymbolsOnly)
    [all...]
  /external/llvm/lib/Option/
OptTable.cpp 60 if (int N = StrCmpOptionName(A.Name, B.Name))
73 "Unexpected classes for options with same name.");
78 // Support lower_bound between info and an option name.
79 static inline bool operator<(const OptTable::Info &I, const char *Name) {
80 return StrCmpOptionNameIgnoreCase(I.Name, Name) < 0;
180 ? Rest.startswith_lower(I->Name)
181 : Rest.startswith(I->Name);
183 return Prefix.size() + StringRef(I->Name).size()
    [all...]
  /external/v8/src/compiler/
simplified-operator.cc 106 Handle<Name> name; local
107 if (access.name.ToHandle(&name)) {
108 name->Print(os);
198 #define PURE(Name, properties, input_count) \
199 struct Name##Operator final : public Operator { \
200 Name##Operator() \
201 : Operator(IrOpcode::k##Name, Operator::kPure | properties, #Name, \
    [all...]
  /art/cmdline/
cmdline_type_parser.h 55 // Runtime type name of T, so that we can print more useful error messages.
56 static const char* Name() { assert(false); return "UnspecializedType"; }
  /art/runtime/
dex_instruction_test.cc 24 EXPECT_STREQ("nop", Instruction::Name(nop));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
GrammarRuleAttribute.cs 18 * 3. The name of the author may not be used to endorse or promote products
42 public GrammarRuleAttribute(string name) {
43 this._name = name;
46 public string Name {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
GrammarRuleAttribute.cs 18 * 3. The name of the author may not be used to endorse or promote products
44 public GrammarRuleAttribute(string name)
46 this._name = name;
49 public string Name
  /external/autotest/client/deps/glbench/src/
glinterfacetest.h 22 virtual const char* Name() const = 0;
texturetest.h 27 virtual const char* Name() const = 0;
  /external/chromium-trace/catapult/telemetry/examples/benchmarks/
tbm_benchmark.py 20 def Name(cls):
  /external/clang/lib/Frontend/Rewrite/
HTMLPrint.cpp 69 const char* Name;
71 // there is no entry. Fall back to the memory buffer for a name in those
74 Name = Entry->getName();
76 Name = R.getSourceMgr().getBuffer(FID)->getBufferIdentifier();
79 html::AddHeaderFooterInternalBuiltinCSS(R, FID, Name);
  /external/elfutils/tests/
run-readelf-test1.sh 34 Offset Type Value Name
38 Offset Type Value Name
  /external/icu/icu4c/as_is/os400/
cxxfilt.cpp 8 struct Name *name = Demangle(str, rest); // "f__1XFi" local
12 if(name->Kind() == MemberFunction) {
13 //((MemberFunctionName *) name)->Scope()->Text() is "X"
14 //((MemberFunctionName *) name)->RootName() is "f"
15 //((MemberFunctionName *) name)->Text() is "X::f(int)"
16 printf("\t=> %s\n", ((MemberFunctionName *) name)->Text());
  /external/llvm/include/llvm/CodeGen/
MachinePassRegistry.h 55 const char *Name; // Name of function pass.
63 , Name(N)
71 const char *getName() const { return Name; }
102 void setDefault(StringRef Name);
  /external/llvm/include/llvm/Target/
TargetIntrinsicInfo.h 37 /// Return the name of a target intrinsic, e.g. "llvm.bfin.ssync".
46 /// Look up target intrinsic by name. Return intrinsic ID or 0 for unknown
48 virtual unsigned lookupName(const char *Name, unsigned Len) const =0;
  /external/llvm/include/llvm/Transforms/Utils/
ASanStackFrameLayout.h 30 const char *Name; // Name of the variable that will be displayed by asan
  /external/llvm/lib/IR/
ValueSymbolTable.cpp 29 << *VI->getValue()->getType() << "' Name = '"
53 // Insert a value into the symbol table with the specified name...
58 // Try inserting the name, assuming it won't conflict.
67 // The name is too already used, just free it so we can allocate a new name.
80 /// createValueName - This method attempts to create a value name and insert
81 /// it into the symbol table with the specified name. If it conflicts, it
82 /// auto-renames the name and returns that instead.
83 ValueName *ValueSymbolTable::createValueName(StringRef Name, Value *V) {
84 // In the common case, the name is not already in the symbol table
    [all...]
  /external/llvm/lib/Support/
Timer.cpp 104 Name.assign(N.begin(), N.end());
199 Timer &get(StringRef Name, StringRef GroupName) {
207 Timer &T = GroupEntry.second[Name];
209 T.init(Name, *GroupEntry.first);
219 static Timer &getNamedRegionTimer(StringRef Name) {
222 Timer &T = (*NamedTimers)[Name];
224 T.init(Name);
228 NamedRegionTimer::NamedRegionTimer(StringRef Name,
230 : TimeRegion(!Enabled ? nullptr : &getNamedRegionTimer(Name)) {}
232 NamedRegionTimer::NamedRegionTimer(StringRef Name, StringRef GroupName
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ProvenanceAnalysisEvaluator.cpp 42 StringRef Name = V->getName();
43 if (Name.startswith("\1"))
44 return Name.substr(1);
45 return Name;

Completed in 679 milliseconds

<<11121314151617181920>>