HomeSort by relevance Sort by last modified time
    Searched defs:temp (Results 701 - 725 of 1947) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/browser/extensions/
extension_assets_manager_chromeos.cc 304 std::string temp; local
305 if (users->GetString(i, &temp) && temp == user_id) {
  /external/chromium_org/chrome/browser/media/
native_desktop_media_list.cc 344 Source temp = sources_[old_pos]; local
346 sources_.insert(sources_.begin() + pos, temp);
  /external/chromium_org/chrome/installer/util/
browser_distribution.cc 76 DistributionClass* temp = new DistributionClass(); local
79 reinterpret_cast<base::subtle::AtomicWord>(temp)) != NULL)
80 delete temp;
  /external/chromium_org/chrome/test/chromedriver/
element_util.cc 247 scoped_ptr<base::Value> temp; local
249 session->GetCurrentFrameId(), script, arguments, &temp);
253 if (!temp->IsType(base::Value::TYPE_NULL)) {
255 value->reset(temp.release());
259 if (!temp->GetAsList(&result))
263 value->reset(temp.release());
  /external/chromium_org/components/nacl/zygote/
nacl_fork_delegate_linux.cc 436 std::string temp; local
437 if (env->GetVar(pass_through_vars[i].c_str(), &temp))
438 options->environ[pass_through_vars[i]] = temp;
  /external/chromium_org/content/child/
child_thread.cc 303 int temp; local
304 if (base::StringToInt(connection_override, &temp))
305 connection_timeout = temp;
  /external/chromium_org/content/renderer/media/
webrtc_audio_capturer.cc 97 WebRtcLocalAudioTrack* temp = delegate_; local
99 temp->Stop();
  /external/chromium_org/content/renderer/
v8_value_converter_impl_unittest.cc 65 std::string temp; local
66 if (!value->GetString(key, &temp)) {
70 return temp;
74 v8::Handle<v8::String> temp = local
77 if (temp.IsEmpty()) {
81 v8::String::Utf8Value utf8(temp);
86 std::string temp; local
87 if (!value->GetString(static_cast<size_t>(index), &temp)) {
91 return temp;
95 v8::Handle<v8::String> temp = value->Get(index).As<v8::String>() local
165 base::Value* temp = NULL; local
179 base::Value* temp = NULL; local
186 base::Value* temp = NULL; local
    [all...]
  /external/chromium_org/courgette/
disassembler_elf_32_arm.cc 34 uint32 temp = (arm_op & 0x00FF) << 1; local
35 if (temp & 0x0100)
36 temp |= 0xFFFFFE00;
37 temp += 4; // Offset from _next_ PC.
40 (*addr) = temp;
47 uint32 temp = (arm_op & 0x07FF) << 1; local
48 if (temp & 0x00000800)
49 temp |= 0xFFFFF000;
50 temp += 4; // Offset from _next_ PC.
52 (*addr) = temp;
59 uint32 temp = (arm_op & 0x00FFFFFF) << 2; local
69 uint32 temp = 0; local
108 uint32 temp = 0; local
150 uint32 temp = 0; local
179 uint32 temp = 0xF0008000; local
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_unittest_attribs.cc 266 GLuint temp = kNewClientId; local
267 cmd->Init(1, &temp);
268 EXPECT_EQ(error::kNoError, ExecuteImmediateCmd(*cmd, sizeof(temp)));
298 GLuint temp = kInvalidClientId; local
299 cmd.Init(1, &temp);
300 EXPECT_EQ(error::kNoError, ExecuteImmediateCmd(cmd, sizeof(temp)));
  /external/chromium_org/net/url_request/
url_request_throttler_unittest.cc 395 std::string temp = manager.DoGetUrlIdFromUrl(test_values[i].url); local
396 EXPECT_EQ(temp, test_values[i].result) <<
  /external/chromium_org/ppapi/proxy/
video_decoder_resource.cc 487 scoped_refptr<TrackedCallback> temp; local
488 callback->swap(temp);
489 temp->Run(decoder_last_error_);
  /external/chromium_org/third_party/WebKit/PerformanceTests/resources/
runner.js 115 var temp = {i: "ab" + i + (i / 100000)};
116 temp += "foo";
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSSelector.cpp 77 unsigned temp = 0; local
80 temp = total + selector->specificityForOneSelector();
82 if ((temp & idMask) < (total & idMask))
84 else if ((temp & classMask) < (total & classMask))
86 else if ((temp & elementMask) < (total & elementMask))
89 total = temp;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGRootInlineBox.cpp 250 InlineBox* temp = *first; local
252 *last = temp;
271 InlineBox* temp = *first; local
273 *last = temp;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLTProcessorLibxslt.cpp 210 const char** temp = params; local
214 while (*temp) {
215 fastFree(const_cast<char*>(*(temp++)));
216 fastFree(const_cast<char*>(*(temp++)));
  /external/chromium_org/third_party/WebKit/Source/web/
WebDocument.cpp 169 Vector<WebElement> temp; local
170 temp.reserveCapacity(sourceLength);
174 temp.append(WebElement(element));
176 results.assign(temp);
183 Vector<WebFormElement> temp; local
184 temp.reserveCapacity(sourceLength);
189 temp.append(WebFormElement(toHTMLFormElement(element)));
191 results.assign(temp);
  /external/chromium_org/third_party/WebKit/Source/wtf/
CheckedArithmetic.h 249 ResultType temp = lhs - std::numeric_limits<ResultType>::min(); variable
250 if (rhs < -temp)
306 ResultType temp = lhs + rhs; variable
307 if (temp < lhs)
309 result = temp;
315 ResultType temp = lhs - rhs; variable
316 if (temp > lhs)
318 result = temp;
341 int64_t temp = lhs + rhs; local
342 if (temp < std::numeric_limits<ResultType>::min()
352 int64_t temp = lhs - rhs; local
363 int64_t temp = lhs * rhs; local
    [all...]
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
cldutil.h 1079 uint32 temp = (longwordhash + (longwordhash >> 12)) & (bucketcount - 1); local
    [all...]
getonescriptspan.cc 297 // TEMP
321 char temp[4]; local
323 temp, &tlen, &plen);
324 sc = getone::GetUTF8LetterScriptNum(temp);
325 // printf("#(%02x%02x)=%d ", temp[0], temp[1], sc);
333 // TEMP
  /external/chromium_org/third_party/freetype/src/base/
ftcalc.c 398 FT_Int64 temp, temp2; local
401 ft_multo64( (FT_Int32)a, (FT_Int32)b, &temp );
405 FT_Add64( &temp, &temp2, &temp );
406 a = ft_div64by32( temp.hi, temp.lo, (FT_Int32)c );
435 FT_Int64 temp; local
438 ft_multo64( (FT_Int32)a, (FT_Int32)b, &temp );
439 a = ft_div64by32( temp.hi, temp.lo, (FT_Int32)c )
576 FT_Int64 temp, temp2; local
    [all...]
ftrfork.c 161 FT_Long temp; local
205 if ( FT_READ_LONG( temp ) )
210 ref[j].offset = temp & 0xFFFFFFL;
  /external/chromium_org/third_party/icu/source/common/
ucnv_u32.c 219 unsigned char temp[sizeof(uint32_t)]; local
238 temp[0] = 0;
287 temp[1] = (uint8_t) (ch >> 16 & 0x1F);
288 temp[2] = (uint8_t) (ch >> 8); /* unsigned cast implicitly does (ch & FF) */
289 temp[3] = (uint8_t) (ch); /* unsigned cast implicitly does (ch & FF) */
293 *(myTarget++) = temp[indexToWrite];
296 args->converter->charErrorBuffer[args->converter->charErrorBufferLength++] = temp[indexToWrite];
322 unsigned char temp[sizeof(uint32_t)]; local
342 temp[0] = 0;
391 temp[1] = (uint8_t) (ch >> 16 & 0x1F)
697 unsigned char temp[sizeof(uint32_t)]; local
807 unsigned char temp[sizeof(uint32_t)]; local
    [all...]
umutex.c 470 void *temp; local
478 temp = *dest;
479 if (temp == oldval) {
486 return temp;
ustrcase.c 459 UChar *temp; local
489 temp=buffer;
492 temp=(UChar *)uprv_malloc(destCapacity*U_SIZEOF_UCHAR);
493 if(temp==NULL) {
499 temp=dest;
505 destLength=ustr_foldCase(csm->csp, temp, destCapacity, src, srcLength,
515 temp, destCapacity,
521 temp, destCapacity,
530 destLength=_toTitle((UCaseMap *)csm, temp, destCapacity,
536 if(temp!=dest)
    [all...]

Completed in 656 milliseconds

<<21222324252627282930>>