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/chromium/googleurl/src/
H A Durl_canon.h654 sources_.username = Placeholder();
665 sources_.password = Placeholder();
676 sources_.host = Placeholder();
687 sources_.port = Placeholder();
698 sources_.path = Placeholder();
709 sources_.query = Placeholder();
720 sources_.ref = Placeholder();
733 const CHAR* Placeholder() { function in class:url_canon::Replacements
/external/chromium_org/url/
H A Durl_canon.h659 sources_.username = Placeholder();
670 sources_.password = Placeholder();
681 sources_.host = Placeholder();
692 sources_.port = Placeholder();
703 sources_.path = Placeholder();
714 sources_.query = Placeholder();
725 sources_.ref = Placeholder();
738 const CHAR* Placeholder() { function in class:url_canon::Replacements
/external/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));
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp233 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress local
237 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
255 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress local
258 *Target = *Placeholder + Value + Addend;
264 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress local
268 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
387 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress + local
409 *TargetPtr = *Placeholder + Value;
417 assert((*Placeholder & 0x000F0FFF) == 0);
419 *TargetPtr = *Placeholder | (Valu
459 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress + local
[all...]
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp310 Constant *Placeholder = ResolveConstants.back().first; local
316 while (!Placeholder->use_empty()) {
317 Value::use_iterator UI = Placeholder->use_begin();
336 } else if (*I == Placeholder) {
371 Placeholder->replaceAllUsesWith(RealVal);
372 delete Placeholder;
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp2075 Value *Placeholder local
2077 V = insertInteger(DL, IRB, Placeholder, V, NewBeginOffset,
2080 Placeholder->replaceAllUsesWith(&LI);
2081 delete Placeholder;

Completed in 850 milliseconds