HomeSort by relevance Sort by last modified time
    Searched refs:temp_value (Results 1 - 11 of 11) sorted by null

  /external/lldb/source/Core/
Scalar.cpp 35 Scalar& temp_value, // A modifiable temp value than can be used to hold either the promoted lhs or rhs object
43 // have the same type), then the temp_value will not get used.
53 temp_value = rhs; // Copy right hand side into the temp value
54 if (temp_value.Promote(lhs_type)) // Promote it
55 promoted_rhs_ptr = &temp_value; // Update the pointer for the promoted right hand side
60 temp_value = lhs; // Copy left hand side value into the temp value
61 if (temp_value.Promote(rhs_type)) // Promote it
62 promoted_lhs_ptr = &temp_value; // Update the pointer for the promoted left hand side
974 Scalar temp_value; local
1517 Scalar temp_value; local
1544 Scalar temp_value; local
1570 Scalar temp_value; local
1600 Scalar temp_value; local
1626 Scalar temp_value; local
1656 Scalar temp_value; local
1686 Scalar temp_value; local
1716 Scalar temp_value; local
    [all...]
  /external/chromium_org/net/websockets/
websocket_basic_handshake_stream.cc 102 std::string temp_value; local
103 while (headers->EnumerateHeader(&state, name, &temp_value)) {
106 *value = temp_value;
193 std::string temp_value; local
195 &state, websockets::kSecWebSocketProtocol, &temp_value))
197 value = temp_value;
  /external/chromium_org/net/http/
http_content_disposition.cc 258 std::string temp_value; local
273 temp_value = t.token();
282 if (temp_charset.empty() || temp_value.empty())
285 value_chars->swap(temp_value);
  /external/chromium_org/chrome/browser/ui/webui/options/
core_options_handler.cc 551 scoped_ptr<base::Value> temp_value;
568 temp_value.reset(new base::FundamentalValue(int_value));
569 value = temp_value.get();
591 temp_value.reset(new base::StringValue(fixed.spec()));
592 value = temp_value.get();
602 temp_value.reset(
604 value = temp_value.get();
  /external/ceres-solver/examples/
libmv_bundle_adjuster.cc 316 unsigned int temp_value = static_cast<unsigned int>(value); local
317 return ((temp_value >> 24)) |
318 ((temp_value << 8) & 0x00ff0000) |
319 ((temp_value >> 8) & 0x0000ff00) |
320 ((temp_value << 24));
  /art/compiler/dex/quick/mips/
target_mips.cc 516 RegStorage temp_value = AllocTempWide(); local
517 OpRegCopyWide(temp_value, r_src);
521 OpRegCopyWide(reg_value, temp_value);
523 FreeTemp(temp_value);
  /external/chromium_org/ui/views/accessibility/
native_view_accessibility_win.cc 746 base::string16 temp_value = state.value; local
748 if (!temp_value.empty()) {
750 *value = SysAllocString(temp_value.c_str());
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
sysinfo.cc 269 const int temp_value = strtol(line, &err, 10); local
271 *value = temp_value;
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
sysinfo.cc 254 const int temp_value = strtol(line, &err, 10); local
256 *value = temp_value;
    [all...]
  /external/bluetooth/bluedroid/stack/btm/
btm_sec.c 196 BT_OCTET16 temp_value = {0}; local
213 if (memcmp(btm_cb.devcb.id_keys.ir, &temp_value, sizeof(BT_OCTET16)) == 0)
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
gbemu.js     [all...]

Completed in 1292 milliseconds