Searched defs:Append (Results 1 - 25 of 141) sorted by path

123456

/external/chromium_org/base/containers/
H A Dlinked_list.h24 // To add elements to the list, use any of LinkedList::Append,
31 // list.Append(n1);
32 // list.Append(n3);
150 void Append(LinkNode<T>* e) { function in class:base::LinkedList
/external/chromium_org/base/files/
H A Dfile_path.cc298 *path = path->Append(*child_comp);
475 FilePath FilePath::Append(const StringType& component) const { function in class:base::FilePath
488 // Append normally doesn't do any normalization, but as a special case,
519 FilePath FilePath::Append(const FilePath& component) const { function in class:base::FilePath
520 return Append(component.value());
526 return Append(ASCIIToUTF16(component.as_string()));
528 return Append(component.as_string());
/external/chromium_org/base/json/
H A Djson_parser.cc300 void JSONParser::StringBuilder::Append(const char& c) { function in class:base::internal::JSONParser::StringBuilder
567 list->Append(item);
655 string.Append(hex_digit);
680 string.Append('"');
683 string.Append('\\');
686 string.Append('/');
689 string.Append('\b');
692 string.Append('\f');
695 string.Append('\n');
698 string.Append('\
[all...]
/external/chromium_org/base/third_party/symbolize/
H A Ddemangle.cc152 bool append; // Append flag.
262 // Append "str" at "out_cur". If there is an overflow, "overflowed"
265 static void Append(State *state, const char * const str, const int length) { function
320 // Append "str" with some tweaks, iff "append" state is true.
325 // Append a space if the output buffer ends with '<' and "str"
329 Append(state, " ", 1);
336 Append(state, str, length);
1284 // Append trailing version suffix if any.
/external/chromium_org/base/
H A Dvalues.cc36 copy->Append(child_copy);
856 Append(CreateNullValue());
857 Append(in_value);
1015 void ListValue::Append(Value* in_value) { function in class:base::ListValue
1021 Append(new FundamentalValue(in_value));
1025 Append(new FundamentalValue(in_value));
1029 Append(new FundamentalValue(in_value));
1033 Append(new StringValue(in_value));
1037 Append(new StringValue(in_value));
1099 result->Append((*
[all...]
/external/chromium_org/cc/debug/
H A Drendering_stats.cc15 void RenderingStats::TimeDeltaList::Append(base::TimeDelta value) { function in class:cc::RenderingStats::TimeDeltaList
/external/chromium_org/cc/output/
H A Dfilter_operations.cc37 void FilterOperations::Append(const FilterOperation& filter) { function in class:cc::FilterOperations
183 blended_filters.Append(
189 blended_filters.Append(
194 blended_filters.Append(FilterOperation::Blend(NULL, &at(i), progress));
/external/chromium_org/cc/test/
H A Dordered_texture_map.cc16 void OrderedTextureMap::Append(GLuint id, function in class:cc::OrderedTextureMap
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_file_helper.cc271 void DevToolsFileHelper::Append(const std::string& url, function in class:DevToolsFileHelper
/external/chromium_org/chrome/browser/net/
H A Dpredictor.cc631 referral_list->Append(new base::FundamentalValue(kPredictorReferrerVersion));
639 motivator->Append(new base::StringValue(it->first.spec()));
640 motivator->Append(subresource_list);
642 referral_list->Append(motivator);
728 initial_observer_->Append(url, this);
1241 void Predictor::InitialObserver::Append(const GURL& url, function in class:chrome_browser_net::Predictor::InitialObserver
1263 startup_list->Append(
1269 startup_list->Append(new base::StringValue(it->first.spec()));
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dservlet.py55 def Append(self, content): member in class:_ContentBuilder
79 self.content.Append(content)
120 def Append(self, content): member in class:Response
/external/chromium_org/content/browser/quota/
H A Dquota_reservation_manager_unittest.cc136 int64 Append(int64 amount) { function in class:content::__anon7286::FakeWriter
187 file_path_ = work_dir_.path().Append(FILE_PATH_LITERAL("hoge"));
230 cached_reserved_quota -= writer.Append(20);
274 cached_reserved_quota -= writer3.Append(30);
276 cached_reserved_quota -= writer3.Append(40);
314 cached_reserved_quota2 -= writer2->Append(20);
/external/chromium_org/content/browser/speech/
H A Dchunked_byte_buffer.cc40 void ChunkedByteBuffer::Append(const uint8* start, size_t length) { function in class:content::ChunkedByteBuffer
98 void ChunkedByteBuffer::Append(const std::string& string) { function in class:content::ChunkedByteBuffer
99 Append(reinterpret_cast<const uint8*>(string.data()), string.size());
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_spell_check.cc15 void Append(blink::WebVector<blink::WebString>* data, function in namespace:content::__anon7881
128 Append(suggestions, blink::WebString::fromUTF8("welcome"));
130 Append(suggestions, blink::WebString::fromUTF8("uppercase"));
132 Append(suggestions, blink::WebString::fromUTF8("Hello"));
134 Append(suggestions, blink::WebString::fromUTF8("world"));
/external/chromium_org/courgette/
H A Dstreams.cc214 CheckBool SinkStream::Append(SinkStream* other) { function in class:courgette::SinkStream
358 ret = combined_stream->Append(&header);
360 ret = combined_stream->Append(stream(i));
385 ret = this->stream(i)->Append(set->stream(i));
/external/chromium_org/extensions/common/
H A Dvalue_builder.cc67 ListBuilder& ListBuilder::Append(int in_value) { function in class:extensions::ListBuilder
68 list_->Append(new base::FundamentalValue(in_value));
72 ListBuilder& ListBuilder::Append(double in_value) { function in class:extensions::ListBuilder
73 list_->Append(new base::FundamentalValue(in_value));
77 ListBuilder& ListBuilder::Append(const std::string& in_value) { function in class:extensions::ListBuilder
78 list_->Append(new base::StringValue(in_value));
82 ListBuilder& ListBuilder::Append(const base::string16& in_value) { function in class:extensions::ListBuilder
83 list_->Append(new base::StringValue(in_value));
87 ListBuilder& ListBuilder::Append(DictionaryBuilder& in_value) { function in class:extensions::ListBuilder
88 list_->Append(in_valu
92 ListBuilder& ListBuilder::Append(ListBuilder& in_value) { function in class:extensions::ListBuilder
[all...]
/external/chromium_org/media/base/
H A Daudio_buffer_queue.cc25 void AudioBufferQueue::Append(const scoped_refptr<AudioBuffer>& buffer_in) { function in class:media::AudioBufferQueue
H A Dseekable_buffer.cc62 bool SeekableBuffer::Append(const scoped_refptr<DataBuffer>& buffer_in) { function in class:media::SeekableBuffer
89 bool SeekableBuffer::Append(const uint8* data, int size) { function in class:media::SeekableBuffer
92 return Append(data_buffer);
/external/chromium_org/media/filters/
H A Dchunk_demuxer.cc118 bool Append(const uint8* data,
202 // During Append(), if OnNewBuffers() coded frame processing updates the
204 // so Append()'s caller can know the new offset. This pointer is only non-NULL
205 // during the lifetime of an Append() call.
208 // During Append(), coded frame processing triggered by OnNewBuffers()
210 // an Append() call.
240 // During Append(), OnNewConfigs() will trigger the initialization segment
242 // an Append() call. Note, the MSE spec explicitly disallows this algorithm
315 bool SourceState::Append( function in class:media::SourceState
832 bool ChunkDemuxerStream::Append(cons function in class:media::ChunkDemuxerStream
[all...]
H A Dsource_buffer_stream.cc181 bool SourceBufferStream::Append(const BufferQueue& buffers) { function in class:media::SourceBufferStream
182 TRACE_EVENT2("media", "SourceBufferStream::Append",
/external/chromium_org/mojo/public/cpp/bindings/lib/
H A Dfilter_chain.h32 inline void Append();
52 inline void FilterChain::Append() { function in class:mojo::internal::FilterChain
60 inline void FilterChain::Append<PassThroughFilter>() { function in class:mojo::internal::FilterChain
/external/chromium_org/mojo/public/cpp/bindings/tests/
H A Dvalidation_unittest.cc33 void Append(std::vector<uint8_t>* data_vector, T data) { function in namespace:mojo::test::__anon8787
282 // The parser, as well as Append() defined above, assumes that this code is
305 Append(&expected, static_cast<uint8_t>(0x10));
306 Append(&expected, static_cast<uint16_t>(65535));
307 Append(&expected, static_cast<uint32_t>(65536));
308 Append(&expected, static_cast<uint64_t>(0xffffffffffffffff));
309 Append(&expected, static_cast<uint8_t>(0));
310 Append(&expected, static_cast<uint8_t>(0xff));
317 Append(&expected, -static_cast<int64_t>(0x800));
318 Append(
[all...]
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
H A Dast.py42 self.Append(item)
45 self.Append(item_or_items)
69 def Append(self, item): member in class:NodeListBase
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dpath.cc39 Path& Path::Append(const std::string& path) { function in class:nacl_io::Path
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_pepper_interface_html5_fs.cc113 int32_t FakeHtml5FsNode::Append(const char* buffer, int32_t bytes_to_write) { function in class:FakeHtml5FsNode
406 result = file_io_resource->node->Append(buffer, bytes_to_write);

Completed in 1315 milliseconds

123456