Searched defs:name (Results 226 - 250 of 1033) sorted by last modified time

1234567891011>>

/frameworks/compile/mclinker/lib/Core/
H A DIRBuilder.cpp36 // name rules
37 llvm::StringRef name(pName);
38 if (name.startswith(".debug") ||
39 name.startswith(".zdebug") ||
40 name.startswith(".line") ||
41 name.startswith(".stab"))
43 if (name.startswith(".comment"))
45 if (name.startswith(".interp") || name.startswith(".dynamic"))
47 if (name
418 std::string name = pName; local
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DBranchIsland.cpp31 // island name
86 const std::string& BranchIsland::name() const function in class:BranchIsland
H A DGNUArchiveReader.cpp111 pArchive.addArchiveMember(pArchive.getARFile().name(),
152 /// name table)
175 // parse the member name and nested offset if any
177 llvm::StringRef name_field(header->name, sizeof(header->name));
178 if ('/' != header->name[0]) {
188 // parse the name offset
198 // get the member name from the extended name table
225 // get nested file path, the nested file's member name i
258 const char* name = reinterpret_cast<const char*>(data + number); local
[all...]
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64Relocator.cpp44 : func(pFunc), name(pName), size(pSize) { }
46 const char* name; member in class:ApplyFunctionEntry
87 return ApplyFunctions[pType].name;
143 pSym.name(),
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.cpp330 const char* name; member in struct:ApplyFunctionTriple
364 return ApplyFunctions[pType].name;
423 pSym.name(),
458 << pReloc.symInfo()->name();
526 << pReloc.symInfo()->name();
563 fatal(diag::base_relocation) << (int)pReloc.type() << rsym->name()
655 fatal(diag::base_relocation) << (int)pReloc.type() << rsym->name()
H A DARMToARMStub.cpp92 const std::string& ARMToARMStub::name() const function in class:ARMToARMStub
H A DARMToTHMStub.cpp100 const std::string& ARMToTHMStub::name() const function in class:ARMToTHMStub
H A DTHMToARMStub.cpp112 const std::string& THMToARMStub::name() const function in class:THMToARMStub
H A DTHMToTHMStub.cpp109 const std::string& THMToTHMStub::name() const function in class:THMToTHMStub
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp231 // name can be presented as C symbol
250 if (isCIdentifier(section->name())) {
251 std::string start_name = "__start_" + section->name();
264 std::string stop_name = "__stop_" + section->name();
750 shstrtab += (*sect)->name().size() + 1;
755 /// sizeNamePools - compute the size of regular name pools
756 /// In ELF executable files, regular name pools are .symtab, .strtab,
856 dynstr += (*lib)->name().size() + 1;
912 fatal(diag::fatal_illegal_codegen_type) << pModule.name();
928 strcpy((pStrtab + pStrtabsize), pSymbol.name());
1540 const char* name = pSymbol.name(); local
[all...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonAbsoluteStub.cpp95 const std::string& HexagonAbsoluteStub::name() const function in class:HexagonAbsoluteStub
H A DHexagonRelocator.cpp135 const char *name; member in struct:ApplyFunctionTriple
186 return ApplyFunctions[pType].name;
432 pSym.name(), (ResolveInfo::Type) pSym.type(), ResolveInfo::Define,
446 alias->name(), (ResolveInfo::Type) alias->type(),
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLA25Stub.cpp83 const std::string& MipsLA25Stub::name() const function in class:mcld::MipsLA25Stub
H A DMipsRelocator.cpp163 const char* name; member in struct:ApplyFunctionTriple
218 return ApplyFunctions[pType & 0xff].name;
372 fatal(diag::unknown_relocation) << (int)pReloc.type() << rsym->name();
429 << rsym->name();
473 fatal(diag::unknown_relocation) << (int)pReloc.type() << rsym->name();
528 pSym.name(),
549 alias->name(),
585 return 0 == strcmp("_gp_disp", pReloc.symInfo()->name());
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.cpp160 const char* name; member in struct:X86_32ApplyFunctionTriple
262 pSym.name(),
280 alias->name(),
318 return X86_32ApplyFunctions[pType].name;
449 error(diag::invalid_tls) << rsym->name() << sym_sect->name();
1277 const char* name; member in struct:X86_64ApplyFunctionTriple
1309 return X86_64ApplyFunctions[pType].name;
/frameworks/compile/mclinker/unittests/
H A DFactoriesTest.cpp182 char name[100]; local
183 sprintf(name, "file %d", counter);
186 MCLDFile* file = m_pFileAlloc->produce( string(name),
192 ASSERT_STREQ(name, file->name().data());
199 char name[100]; local
200 sprintf(name, "file %d", counter);
203 MCLDFile* file = m_pFileAlloc->produce( string(name),
216 ASSERT_FALSE((*file).name().empty());
H A DNamePoolTest.cpp70 const char *name = "Hello MCLinker"; local
79 m_pTestee->insertSymbol(name,
89 EXPECT_NE(name, result1.info->name());
90 EXPECT_STREQ(name, result1.info->name());
99 m_pTestee->insertSymbol(name,
109 EXPECT_NE(name, result1.info->name());
110 EXPECT_STREQ(name, result
122 const char *name = "Hello MCLinker"; local
179 const char *name = "Hello MCLinker"; local
212 char name[16]; local
[all...]
/frameworks/compile/slang/
H A Dslang_rs_export_element.cpp35 const char *name; member in struct:slang::DataElementInfo
63 llvm::StringRef Name(DataElementInfoTable[i].name);
143 // Following the typedef chain to see whether it's an element name like
H A Dslang_rs_export_type.cpp95 * the name instead of duplicating the entries.
141 const char *name; member in struct:slang::__anon1148::NameAndPrimitiveType
612 std::string CreateDummyName(const char *type, const std::string &name) { argument
615 if (!name.empty()) {
616 S << ":" << name; local
630 // Get type name
710 // Try to find a name from redeclaration (i.e. typedef)
726 // "*" plus pointee name
746 // Construct name for a constant array is too complicated.
823 // FIXME: free the name (allocate
1216 llvm::StringRef name; local
[all...]
/frameworks/ex/common/java/com/android/common/
H A DOperationScheduler.java224 * @param name of SharedPreferences key
228 private long getTimeBefore(String name, long max) { argument
229 long time = mStorage.getLong(name, 0);
232 SharedPreferencesCompat.apply(mStorage.edit().putLong(name, time));
/frameworks/ex/common/tests/src/com/android/common/widget/
H A DCompositeCursorAdapterTest.java250 private Cursor makeCursor(String name, int count) { argument
251 MatrixCursor cursor = new MatrixCursor(new String[]{name});
/frameworks/ex/framesequence/samples/RastermillSamples/src/com/android/rastermill/samples/
H A DSamplesList.java32 static final String KEY_NAME = "name";
35 static Map<String,?> makeSample(String name, Class<?> activity) { argument
37 ret.put(KEY_NAME, name);
/frameworks/ex/variablespeed/jni/
H A Djni_entry.cc30 explicit MethodLog(const char* name) : name_(name) { argument
31 LOGV("+ %s", name);
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp51 void StripDebugInfoOfFunction(Module* M, const char* name) { argument
52 if (Function* FuncStart = M->getFunction(name)) {
966 // Only apply the type name to a struct type with no name.
3072 const char *name() const LLVM_NOEXCEPT override {
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp292 void StripDebugInfoOfFunction(Module* M, const char* name) { argument
293 if (Function* FuncStart = M->getFunction(name)) {
1282 // Only apply the type name to a struct type with no name.
3407 const char *name() const LLVM_NOEXCEPT override {

Completed in 4257 milliseconds

1234567891011>>