Searched refs:Append (Results 176 - 200 of 1689) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Ddiff.py27 def Append(self, line): member in class:DiffLines
50 def Append(self, line): member in class:DiffHunk
53 self.left.Append(line)
55 self.right.Append(line)
57 self.left.Append(line)
58 self.right.Append(line)
121 hunk.Append(line)
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/BWEStandAlone/
H A DMatlabPlot.h40 virtual void Append(double x, double y);
41 virtual void Append(double y);
79 void Append(double y);
101 void Append(int lineIndex, double x, double y);
102 void Append(int lineIndex, double y);
103 int Append(const char *name, double x, double y);
104 int Append(const char *name, double y);
/external/libvpx/libvpx/tools/
H A Ddiff.py27 def Append(self, line): member in class:DiffLines
50 def Append(self, line): member in class:DiffHunk
53 self.left.Append(line)
55 self.right.Append(line)
57 self.left.Append(line)
58 self.right.Append(line)
121 hunk.Append(line)
/external/chromium_org/net/quic/
H A Diovector_test.cc27 iov1.Append(const_cast<char*>(test_data[i]), strlen(test_data[i]));
41 iov1.Append(const_cast<char*>(test_data[i]), strlen(test_data[i]));
44 iov2.Append(const_cast<char*>("ephemeral string"), 16);
56 TEST(IOVectorTest, Append) {
67 iov.Append(const_cast<char*>(test_data[i]), append_len);
72 iov.Append(const_cast<char*>(test_data[i] + append_len),
106 iov.Append(static_cast<char*>(test_iov[1].iov_base) + 2, 1);
122 iov.Append(const_cast<char*>(test_data[i]), str_len);
166 iov.Append(const_cast<char*>(test_data[i]), str_len);
197 iov.Append(const_cas
[all...]
/external/chromium_org/chrome/browser/prefs/
H A Dprefs_syncable_service_unittest.cc245 url_list->Append(new base::StringValue(kExampleUrl0));
246 url_list->Append(new base::StringValue(kExampleUrl1));
265 url_list->Append(new base::StringValue(kExampleUrl0));
266 url_list->Append(new base::StringValue(kExampleUrl1));
273 urls_to_restore.Append(new base::StringValue(kExampleUrl1));
274 urls_to_restore.Append(new base::StringValue(kExampleUrl2));
287 expected_urls->Append(new base::StringValue(kExampleUrl1));
288 expected_urls->Append(new base::StringValue(kExampleUrl2));
289 expected_urls->Append(new base::StringValue(kExampleUrl0));
307 urls_to_restore.Append(ne
[all...]
/external/chromium_org/components/component_updater/test/
H A Dcomponent_patcher_unittest.cc81 input_dir_.path().Append(FILE_PATH_LITERAL("binary_output.bin"))));
103 unpack_dir_.path().Append(FILE_PATH_LITERAL("output.bin")),
111 installed_dir_.path().Append(FILE_PATH_LITERAL("binary_output.bin"))));
133 unpack_dir_.path().Append(FILE_PATH_LITERAL("output.bin")),
141 installed_dir_.path().Append(FILE_PATH_LITERAL("binary_input.bin"))));
143 input_dir_.path().Append(FILE_PATH_LITERAL(
168 unpack_dir_.path().Append(FILE_PATH_LITERAL("output.bin")),
176 installed_dir_.path().Append(FILE_PATH_LITERAL("binary_input.bin"))));
179 input_dir_.path().Append(FILE_PATH_LITERAL("binary_bsdiff_patch.bin"))));
203 unpack_dir_.path().Append(FILE_PATH_LITERA
[all...]
/external/chromium_org/v8/src/
H A Dlog.cc806 msg.Append("profiler,\"begin\",%d", kSamplingIntervalMs);
819 msg.Append("%s,\"%s\"", name, value);
837 msg.Append("%s,%d", name, value);
845 msg.Append("%s,%" V8_PTR_PREFIX "d", name, value);
853 msg.Append("%s,0x%" V8PRIxPTR, name, location);
901 msg.Append("shared-library,\"%s\",0x%08" V8PRIxPTR ",0x%08" V8PRIxPTR,
912 msg.Append("code-deopt,%ld,%d", since_epoch, code->CodeSize());
922 msg.Append("current-time,%ld", since_epoch);
934 msg.Append(format, name, since_epoch);
984 msg.Append("n
[all...]
/external/chromium_org/cc/debug/
H A Drendering_stats_instrumentation.cc149 impl_thread_rendering_stats_.draw_duration.Append(draw_duration);
150 impl_thread_rendering_stats_.draw_duration_estimate.Append(
161 impl_thread_rendering_stats_.begin_main_frame_to_commit_duration.Append(
164 .Append(begin_main_frame_to_commit_duration_estimate);
174 impl_thread_rendering_stats_.commit_to_activate_duration.Append(
176 impl_thread_rendering_stats_.commit_to_activate_duration_estimate.Append(
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dpassword_manager_handler.cc160 entry->Append(new base::StringValue(net::FormatUrl(password_list[i]->origin,
162 entry->Append(new base::StringValue(password_list[i]->username_value));
164 entry->Append(new base::StringValue(password_list[i]->password_value));
167 entry->Append(new base::StringValue(
170 entries.Append(entry);
181 entries.Append(new base::StringValue(
H A Dfont_settings_handler.cc207 font->Append(new base::StringValue(has_rtl_chars ? "rtl" : "ltr"));
229 option->Append(new base::StringValue(encoding));
230 option->Append(new base::StringValue(name));
231 option->Append(new base::StringValue(has_rtl_chars ? "rtl" : "ltr"));
234 option->Append(new base::StringValue(std::string()));
235 option->Append(new base::StringValue(std::string()));
237 encoding_list.Append(option);
241 selected_values.Append(new base::StringValue(MaybeGetLocalizedFontName(
243 selected_values.Append(new base::StringValue(MaybeGetLocalizedFontName(
245 selected_values.Append(ne
[all...]
/external/chromium_org/third_party/mesa/src/
H A DSConstruct76 env.Append(CPPPATH = [
84 env.Append(CPPPATH = ['#include/c99'])
119 host_env.Append(CPPPATH = ['#include/c99'])
/external/mesa3d/
H A DSConstruct76 env.Append(CPPPATH = [
84 env.Append(CPPPATH = ['#include/c99'])
119 host_env.Append(CPPPATH = ['#include/c99'])
/external/chromium_org/chrome/browser/component_updater/
H A Dev_whitelist_component_installer.cc56 return base.Append(FILE_PATH_LITERAL("_platform_specific"))
57 .Append(FILE_PATH_LITERAL("all"))
58 .Append(kCompressedEVWhitelistFileName);
/external/chromium_org/chrome/browser/extensions/api/commands/
H A Dcommands.cc37 command_list->Append(CreateCommandValue(browser_action, active));
45 command_list->Append(CreateCommandValue(page_action, active));
61 command_list->Append(CreateCommandValue(iter->second, active));
/external/chromium_org/chrome/browser/extensions/
H A Dextension_install_prompt_unittest.cc76 permissions.Append("http://*/*");
77 permissions.Append("http://www.google.com/");
78 permissions.Append("tabs");
/external/chromium_org/chrome/common/
H A Dchrome_paths_win.cc49 *result = result->Append(dist->GetInstallSubDir());
50 *result = result->Append(chrome::kUserDataDirname);
72 *result = result->Append(L"Downloads");
/external/chromium_org/components/autofill/core/browser/
H A Ddata_driven_test.cc56 base::FilePath output_file = output_directory.Append(
72 .Append(test_name)
81 .Append(test_name)
/external/chromium_org/content/shell/browser/
H A Dshell_layout_tests_android.cc74 base::FilePath stdout_fifo(files_dir.Append(FILE_PATH_LITERAL("test.fifo")));
78 files_dir.Append(FILE_PATH_LITERAL("stderr.fifo")));
81 base::FilePath stdin_fifo(files_dir.Append(FILE_PATH_LITERAL("stdin.fifo")));
/external/chromium_org/remoting/base/
H A Dcompound_buffer.h44 void Append(net::IOBuffer* buffer, int size);
45 void Append(net::IOBuffer* buffer, const char* start, int size);
46 void Append(const CompoundBuffer& buffer);
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dlog_writer.cc44 dest_->Append(Slice("\x00\x00\x00\x00\x00\x00", leftover));
91 Status s = dest_->Append(Slice(buf, kHeaderSize));
93 s = dest_->Append(Slice(ptr, n));
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DHashList.cs205 result.Append("[");
211 result.Append(", ");
213 result.Append(keys[i]);
215 result.Append("]");
300 result.Append("[");
304 result.Append((iter.Current == null) ? "null" : iter.Current);
307 result.Append(", ");
308 result.Append((iter.Current == null) ? "null" : iter.Current);
311 result.Append("]");
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringBuilderExtensions.cs46 buffer.Append( value );
/external/chromium_org/base/test/
H A Dperf_test_suite.cc31 log_path = tmp_dir.Append(log_path.BaseName());
/external/chromium_org/cc/test/
H A Dordered_texture_map.h23 void Append(GLuint id, scoped_refptr<TestTexture> texture);
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Ddevice_local_account_external_policy_loader_unittest.cc131 cache_dir_ = temp_dir_.path().Append(kCacheDir);
247 EXPECT_TRUE(base::ReadFileToString(test_dir_.Append(kExtensionUpdateManifest),
266 test_dir_.Append(kExtensionCRXSourceDir).Append(kExtensionCRXFile),
267 temp_dir_.path().Append(kExtensionCRXFile)));
269 fetcher->SetResponseFilePath(temp_dir_.path().Append(kExtensionCRXFile));
274 const base::FilePath cached_crx_path = cache_dir_.Append(base::StringPrintf(
293 test_dir_.Append(kExtensionCRXSourceDir).Append(kExtensionCRXFile),

Completed in 550 milliseconds

1234567891011>>