HomeSort by relevance Sort by last modified time
    Searched defs:Placeholder (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 221 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(LocalAddress);
222 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
225 *Placeholder = TruncOffset;
239 uint32_t Placeholder = *Target;
240 *Target = Placeholder + Value + Addend;
244 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(LocalAddress);
245 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
246 *Placeholder = RealOffset;
  /external/chromium/googleurl/src/
url_canon.h 654 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();
731 // Returns a pointer to a static empty string that is used as a placeholder
733 const CHAR* Placeholder() {
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 183 /// as a placeholder for the actual definition for forward constants defs.
256 // Create and return a placeholder, which will later be RAUW'd.
274 // Create and return a placeholder, which will later be RAUW'd.
286 /// a placeholder.
296 Constant *Placeholder = ResolveConstants.back().first;
299 // Loop over all users of the placeholder, updating them to reference the
300 // new value. If they reference more than one placeholder, update them all
302 while (!Placeholder->use_empty()) {
303 Value::use_iterator UI = Placeholder->use_begin();
313 // Otherwise, we have a constant that uses the placeholder. Replace tha
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 202 /// as a placeholder for the actual definition for forward constants defs.
275 // Create and return a placeholder, which will later be RAUW'd.
293 // Create and return a placeholder, which will later be RAUW'd.
305 /// a placeholder.
315 Constant *Placeholder = ResolveConstants.back().first;
318 // Loop over all users of the placeholder, updating them to reference the
319 // new value. If they reference more than one placeholder, update them all
321 while (!Placeholder->use_empty()) {
322 Value::use_iterator UI = Placeholder->use_begin();
332 // Otherwise, we have a constant that uses the placeholder. Replace tha
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 481 /// as a placeholder for the actual definition for forward constants defs.
554 // Create and return a placeholder, which will later be RAUW'd.
572 // Create and return a placeholder, which will later be RAUW'd.
584 /// a placeholder.
594 Constant *Placeholder = ResolveConstants.back().first;
597 // Loop over all users of the placeholder, updating them to reference the
598 // new value. If they reference more than one placeholder, update them all
600 while (!Placeholder->use_empty()) {
601 Value::use_iterator UI = Placeholder->use_begin();
611 // Otherwise, we have a constant that uses the placeholder. Replace tha
    [all...]

Completed in 177 milliseconds