Searched refs:Placeholder (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.2-release/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp268 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress local
272 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
281 uint64_t *Placeholder = reinterpret_cast<uint64_t*>(Section.ObjAddress local
285 *Target = *Placeholder + Value + Addend - FinalAddress;
300 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress local
303 *Target = *Placeholder + Value + Addend;
309 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress local
313 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
431 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress + local
453 *TargetPtr = *Placeholder
503 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress + local
[all...]
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp170 CodeCompletionString::Chunk::CreatePlaceholder(const char *Placeholder) { argument
171 return Chunk(CK_Placeholder, Placeholder);
358 void CodeCompletionBuilder::AddPlaceholderChunk(const char *Placeholder) { argument
359 Chunks.push_back(Chunk::CreatePlaceholder(Placeholder));
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DCodeCompleteConsumer.h411 static Chunk CreatePlaceholder(const char *Placeholder);
608 void AddPlaceholderChunk(const char *Placeholder);
/freebsd-10.2-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp311 Constant *Placeholder = ResolveConstants.back().first; local
317 while (!Placeholder->use_empty()) {
318 Value::use_iterator UI = Placeholder->use_begin();
337 } else if (*I == Placeholder) {
372 Placeholder->replaceAllUsesWith(RealVal);
373 delete Placeholder;
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Scalar/
H A DSROA.cpp2141 Value *Placeholder local
2143 V = insertInteger(DL, IRB, Placeholder, V, NewBeginOffset,
2146 Placeholder->replaceAllUsesWith(&LI);
2147 delete Placeholder;

Completed in 101 milliseconds