Searched defs:Placeholder (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/tools/grit/grit/
H A Dtclib.py84 if isinstance(part, Placeholder):
91 assert isinstance(placeholder, Placeholder)
146 if isinstance(part, Placeholder):
147 ph = grit.extern.tclib.Placeholder(
202 class Placeholder(grit.extern.tclib.Placeholder): class in inherits:grit.extern.tclib.Placeholder
/external/chromium_org/tools/grit/grit/extern/
H A Dtclib.py56 # The Placeholder class represents a placeholder in a message.
58 class Placeholder(object): class in inherits:object
86 if type(other) is not Placeholder:
111 # placeholders = [Placeholder("NUM_BUGS", "%d", "33")],
125 if not isinstance(placeholder, Placeholder):
139 if isinstance(item, Placeholder) and placeholder.EqualTo(item):
154 if not isinstance(s0, Placeholder):
160 if not isinstance(s0, Placeholder):
187 if isinstance(item, Placeholder):
204 if isinstance(item, Placeholder)
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp303 uint32_t *Placeholder = local
307 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
316 uint64_t *Placeholder = local
320 *Target = *Placeholder + Value + Addend - FinalAddress;
333 uint32_t *Placeholder = local
336 *Target = *Placeholder + Value + Addend;
342 uint32_t *Placeholder = local
346 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
503 uint32_t *Placeholder =
526 *TargetPtr = *Placeholder
[all...]
/external/chromium_org/url/
H A Durl_canon.h657 sources_.username = Placeholder();
668 sources_.password = Placeholder();
679 sources_.host = Placeholder();
690 sources_.port = Placeholder();
701 sources_.path = Placeholder();
712 sources_.query = Placeholder();
723 sources_.ref = Placeholder();
736 const CHAR* Placeholder() { function in class:url::Replacements
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp169 CodeCompletionString::Chunk::CreatePlaceholder(const char *Placeholder) { argument
170 return Chunk(CK_Placeholder, Placeholder);
357 void CodeCompletionBuilder::AddPlaceholderChunk(const char *Placeholder) { argument
358 Chunks.push_back(Chunk::CreatePlaceholder(Placeholder));
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp345 Constant *Placeholder = ResolveConstants.back().first; local
351 while (!Placeholder->use_empty()) {
352 auto UI = Placeholder->user_begin();
371 } else if (*I == Placeholder) {
406 Placeholder->replaceAllUsesWith(RealVal);
407 delete Placeholder;
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp2241 Value *Placeholder local
2243 V = insertInteger(DL, IRB, Placeholder, V, NewBeginOffset,
2246 Placeholder->replaceAllUsesWith(&LI);
2247 delete Placeholder;
/external/clang/lib/CodeGen/
H A DCGCall.cpp1954 llvm::Value *Placeholder = local
1956 Placeholder = CGF.Builder.CreateLoad(Placeholder);
1957 return AggValueSlot::forAddr(Placeholder, CharUnits::Zero(),
2681 llvm::Instruction *Placeholder = local
2684 Builder.SetInsertPoint(Placeholder);
2688 deferPlaceholderReplacement(Placeholder, Addr);

Completed in 2558 milliseconds