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

  /external/webkit/JavaScriptCore/wtf/
TCPackedCache.h 73 // void Put(K key, V value) { a_[H(key)] = pair<K, V>(key, value); }
82 // (c.Put(key, value), c.GetOrDefault(key, 0)) == value
84 // (c.Put(key, value), <...>, c.GetOrDefault(key, 0)) == value
85 // if the elided code contains no c.Put calls.
88 // has ever been Put. However, a newly initialized cache will have
92 // equivalent to Put(k, initial_value) for all keys k from 0 to
95 // 3. If key and key' differ then the only way Put(key, value) may
97 // false. Furthermore, a Put() call that doesn't change Has(key')
151 void Put(K key, V value) {
191 // part of the key, and kValuebits determines where in the entry to put
    [all...]
  /external/v8/src/
serialize.h 81 void Put(Address key, int index);
105 void Put(uint32_t key, Address value) {
307 virtual void Put(int byte, const char* description) = 0;
309 Put(byte, description);
compilation-cache.cc 98 void Put(Handle<String> source, Handle<JSFunction> boilerplate);
118 void Put(Handle<String> source,
134 void Put(Handle<String> source,
274 if (generation != 0) Put(source, boilerplate);
284 void CompilationCacheScript::Put(Handle<String> source,
289 CALL_HEAP_FUNCTION_VOID(table->Put(*source, *boilerplate));
312 Put(source, context, boilerplate);
323 void CompilationCacheEval::Put(Handle<String> source,
352 Put(source, flags, data);
363 void CompilationCacheRegExp::Put(Handle<String> source
    [all...]
mksnapshot.cc 167 virtual void Put(int byte, const char* description) {
190 virtual void Put(int byte, const char* description) {
string-stream.cc 54 bool StringStream::Put(char c) {
105 Put(format[offset]);
135 Put(static_cast<char>(value[i]));
148 Put(value);
304 bool StringStream::Put(String* str) {
305 return Put(str, 0, str->length());
309 bool StringStream::Put(String* str, int start, int end) {
317 if (!Put(c)) {
329 Put(str);
358 Put(' ');
    [all...]
serialize.cc 451 Put(external_references->address(i), i);
478 void ExternalReferenceEncoder::Put(Address key, int index) {
493 Put(external_references->code(i), external_references->address(i));
863 Put((static_cast<int>((integer >> shift)) & 0x7f) | 0x80, "IntPart");
890 sink_->Put(SYNCHRONIZE, tag);
    [all...]
debug.cc     [all...]
objects.cc 803 accumulator->Put(buf.GetNext());
805 accumulator->Put('>');
821 accumulator->Put(c);
825 accumulator->Put('.');
826 accumulator->Put('.');
827 accumulator->Put('.');
829 accumulator->Put('>');
853 accumulator->Put(str);
854 accumulator->Put('>');
886 accumulator->Put(str)
    [all...]
  /external/v8/test/cctest/
test-serialize.cc 189 virtual void Put(int byte, const char* description) {

Completed in 163 milliseconds