Searched refs:Create (Results 1 - 25 of 133) sorted by relevance

123456

/frameworks/compile/mclinker/unittests/
H A DSymbolCategoryTest.cpp43 ResolveInfo* a = ResolveInfo::Create("a");
44 ResolveInfo* b = ResolveInfo::Create("b");
45 ResolveInfo* c = ResolveInfo::Create("c");
46 ResolveInfo* d = ResolveInfo::Create("d");
47 ResolveInfo* e = ResolveInfo::Create("e");
55 LDSymbol* aa = LDSymbol::Create(*a);
56 LDSymbol* bb = LDSymbol::Create(*b);
57 LDSymbol* cc = LDSymbol::Create(*c);
58 LDSymbol* dd = LDSymbol::Create(*d);
59 LDSymbol* ee = LDSymbol::Create(*
[all...]
H A DFragmentTest.cpp38 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0);
39 SectionData* s = SectionData::Create(*test);
53 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0);
54 SectionData* s = SectionData::Create(*test);
H A DSectionDataTest.cpp39 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0);
41 SectionData* s = SectionData::Create(*test);
49 LDSection* test = LDSection::Create("test", LDFileFormat::Null, 0, 0);
50 SectionData* s = SectionData::Create(*test);
H A DStaticResolverTest.cpp49 ResolveInfo* old_sym = ResolveInfo::Create("abc");
50 ResolveInfo* new_sym = ResolveInfo::Create("abc");
64 ResolveInfo* old_sym = ResolveInfo::Create("abc");
65 ResolveInfo* new_sym = ResolveInfo::Create("abc");
91 ResolveInfo* old_sym = ResolveInfo::Create("abc");
92 ResolveInfo* new_sym = ResolveInfo::Create("abc");
118 ResolveInfo* old_sym = ResolveInfo::Create("abc");
119 ResolveInfo* new_sym = ResolveInfo::Create("abc");
145 ResolveInfo* old_sym = ResolveInfo::Create("abc");
146 ResolveInfo* new_sym = ResolveInfo::Create("ab
[all...]
/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashEntryFactory.h26 return HashEntryTy::Create(pKey);
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64CA53ErratumStub.cpp81 // Create LDSymbol for the stub.
90 FragmentRef::Create(*this, initSymValue()),
94 // Create the target symbol of the stub to the next instruction of erratum
96 FragmentRef* target = FragmentRef::Create(*pSrcFragRef.frag(),
106 Relocation::Create((*it)->type(),
107 *(FragmentRef::Create(*this, (*it)->offset())),
119 reloc = Relocation::Create((*it)->type(),
120 *(FragmentRef::Create(*this, (*it)->offset())),
/frameworks/compile/mclinker/lib/Target/
H A DOutputRelocSection.cpp38 Relocation* reloc = Relocation::Create();
45 m_pRelocData->append(*Relocation::Create());
/frameworks/compile/slang/
H A Dslang_rs_export_element.cpp64 ElementInfoMap.insert(ElementInfoMapTy::value_type::Create(
71 RSExportType *RSExportElement::Create(RSContext *Context, function in class:slang::RSExportElement
74 // Create RSExportType corresponded to the @T first and then verify
94 RSExportPrimitiveType::Create(Context,
107 RSExportVectorType::Create(Context,
122 fprintf(stderr, "RSExportElement::Create : type '%s' is not exportable\n",
141 return RSExportType::Create(Context, T, NotLegacyKernelArgument);
161 return RSExportType::Create(Context, T, NotLegacyKernelArgument);
163 return RSExportElement::Create(Context, T, EI);
H A Dslang_rs_export_element.h57 static RSExportType *Create(RSContext *Context,
H A Dslang_rs_foreach_lowering.cpp142 // Create an AST node for the declaration of rsForEachInternal
172 clang::FunctionDecl* FD = clang::FunctionDecl::Create(
178 ParamDecls[I] = clang::ParmVarDecl::Create(mASTCtxt, FD, Loc,
193 // Create an expression like the following that references the rsForEachInternal to
203 clang::DeclRefExpr* refExpr = clang::DeclRefExpr::Create(
207 clang::Expr* calleeNew = clang::ImplicitCastExpr::Create(
258 clang::IntegerLiteral::Create(mASTCtxt, APIntSlot, IntTy, Loc);
330 clang::ImplicitCastExpr* Decay = clang::ImplicitCastExpr::Create(
349 clang::IntegerLiteral::Create(mASTCtxt, APIntZero, IntTy, Loc);
353 clang::CStyleCastExpr::Create(mASTCtx
[all...]
H A Dslang_rs_export_func.cpp50 RSExportFunc *RSExportFunc::Create(RSContext *Context, function in class:slang::RSExportFunc
72 clang::RecordDecl::Create(Ctx, clang::TTK_Struct,
89 clang::FieldDecl::Create(Ctx,
108 RSExportType::Create(Context, T.getTypePtr(), NotLegacyKernelArgument);
H A Dslang_rs_context.cpp125 RSExportForEach *EFE = RSExportForEach::Create(this, FD);
152 if (auto *EF = RSExportFunc::Create(this, FD)) {
211 ET = RSExportType::Create(this, T, NotLegacyKernelArgument);
278 // Create a dummy root in slot 0 if a root kernel is not seen
362 clang::VarDecl *const VD = clang::VarDecl::Create(
371 clang::DeclRefExpr *const DRE = clang::DeclRefExpr::Create(mCtx,
376 clang::ImplicitCastExpr *const ICE = clang::ImplicitCastExpr::Create(mCtx, mCtx.getPointerType(FD->getType()),
379 clang::CStyleCastExpr *const CSCE = clang::CStyleCastExpr::Create(mCtx, VoidPtrType, clang::VK_RValue, clang::CK_BitCast,
390 ExportTypeMap::value_type::Create(TypeName,
H A Dslang_rs_export_type.h230 static RSExportType *Create(RSContext *Context,
278 static RSExportType *Create(RSContext *Context, const clang::Type *T,
328 static RSExportPrimitiveType *Create(RSContext *Context,
355 static RSExportPrimitiveType *Create(RSContext *Context,
413 static RSExportPointerType *Create(RSContext *Context,
446 static RSExportVectorType *Create(RSContext *Context,
494 static RSExportMatrixType *Create(RSContext *Context,
520 static RSExportConstantArrayType *Create(RSContext *Context,
602 static RSExportRecordType *Create(RSContext *Context,
/frameworks/base/core/jni/android/graphics/
H A DPathEffect.cpp23 SkPathEffect* effect = SkComposePathEffect::Create(outer, inner);
31 SkPathEffect* effect = SkSumPathEffect::Create(first, second);
44 SkPathEffect* effect = SkDashPathEffect::Create(intervals, count, phase);
52 SkPathEffect* effect = SkPath1DPathEffect::Create(*shape, advance, phase,
58 SkPathEffect* effect = SkCornerPathEffect::Create(radius);
64 SkPathEffect* effect = SkDiscretePathEffect::Create(length, deviation);
/frameworks/compile/mclinker/lib/Fragment/
H A DStub.cpp52 FragmentRef::Create(*this, initSymValue()),
59 Relocation::Create((*it)->type(),
60 *(FragmentRef::Create(*this, (*it)->offset())),
H A DFragmentRef.cpp43 /// Create - create a fragment reference for a given fragment.
50 FragmentRef* FragmentRef::Create(Fragment& pFrag, uint64_t pOffset) { function in class:mcld::FragmentRef
76 FragmentRef* FragmentRef::Create(LDSection& pSection, uint64_t pOffset) { function in class:mcld::FragmentRef
95 return Create(data->front(), pOffset);
/frameworks/av/include/media/stagefright/
H A DDataURISource.h29 static sp<DataURISource> Create(const char *uri);
/frameworks/compile/mclinker/include/mcld/LD/
H A DDebugString.h30 static DebugString* Create(LDSection& pSection);
/frameworks/compile/mclinker/lib/LD/
H A DSectionData.cpp31 SectionData* SectionData::Create(LDSection& pSection) { function in class:mcld::SectionData
H A DLDSymbol.cpp50 LDSymbol* LDSymbol::Create(ResolveInfo& pResolveInfo) { function in class:mcld::LDSymbol
71 g_NullSymbol->setFragmentRef(FragmentRef::Create(*g_NullSymbolFragment, 0));
H A DRelocData.cpp30 RelocData* RelocData::Create(LDSection& pSection) { function in class:mcld::RelocData
H A DSectionSymbolSet.cpp48 LDSymbol* sym = LDSymbol::Create(*sym_info);
86 frag_ref = FragmentRef::Create(data->front(), 0x0);
/frameworks/webview/chromium/plat_support/
H A Dgraphic_buffer_impl.h33 static long Create(int w, int h);
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DFragmentRef.h34 /// Create - create a fragment reference for a given fragment.
41 static FragmentRef* Create(Fragment& pFrag, uint64_t pOffset);
43 static FragmentRef* Create(LDSection& pSection, uint64_t pOffset);
H A DRelocation.h54 /// Create - produce an empty relocation entry
55 static Relocation* Create();
57 /// Create - produce a relocation entry
61 static Relocation* Create(Type pType,

Completed in 541 milliseconds

123456