HomeSort by relevance Sort by last modified time
    Searched refs:Append (Results 76 - 100 of 135) sorted by null

1 2 34 5 6

  /external/chromium/net/base/
load_log.h 182 void Append(const LoadLog* log);
  /external/chromium/base/
base.scons 12 'Append' : dict(
116 'Append' : dict(
225 env.Append(**config['Append'])
586 _result.append(infile)
file_path_unittest.cc 228 TEST_F(FilePathTest, Append) {
246 // Append introduces the default separator character, so these test cases
300 FilePath observed_str = root.Append(leaf);
303 FilePath observed_path = root.Append(FilePath(leaf));
307 // TODO(erikkay): It would be nice to have a unicode test append value to
497 observed.append(FILE_PATH_LITERAL("|"), 1);
498 observed.append(comps[j]);
630 EXPECT_EQ(base.Append(cases[i].expected).value(), result.value()) <<
700 FilePath jpg = base_dir.Append(FILE_PATH_LITERAL("foo.jpg"));
706 FilePath path_no_ext = base_dir.Append(base)
    [all...]
file_util_win.cc 51 std::wstring filename_spec = path.Append(L"*").value();
205 FilePath directory = from_path.Append(L"*.*");
511 new_dir_name.append(IntToWString(rand() % kint16max));
512 path_to_create = path_to_create.Append(new_dir_name);
670 source.append(1, L'\0');
671 target.append(1, L'\0');
767 src = src.Append(L"*"); // No pattern = match everything.
769 src = src.Append(pattern_);
800 cur_file = root_path_.Append(cur_file);
values.cc 26 copy->Append(child_copy);
672 Append(CreateNullValue());
673 Append(in_value);
801 void ListValue::Append(Value* in_value) {
819 result->Append((*i)->DeepCopy());
tracked_objects.h 298 // implementation serialized calls to Append).
299 void Append(const ThreadData& thread_data);
479 // For a given about:objects URL, develop resulting HTML, and append to
directory_watcher_unittest.cc 47 test_dir_ = path.Append(FILE_PATH_LITERAL("DirectoryWatcherTest"));
values.h 395 void Append(Value* in_value);
file_path.cc 218 *path = path->Append(*child_comp);
332 ret.append(suffix);
333 ret.append(ext);
368 str.append(1, kExtensionSeparator);
369 str.append(extension);
384 FilePath FilePath::Append(const StringType& component) const {
387 // Append normally doesn't do any normalization, but as a special case,
400 // Don't append a separator if the path is empty (indicating the current
402 // append).
404 // Don't append a separator if the path still ends with a trailin
    [all...]
  /external/chromium/net/
net_base.scons 12 'Append' : dict(
138 'Append' : dict(
269 env.Append(**config['Append'])
461 _result.append(infile)
net_unittests.scons 12 'Append' : dict(
175 'Append' : dict(
343 env.Append(**config['Append'])
507 _result.append(infile)
net.scons 12 'Append' : dict(
139 'Append' : dict(
271 env.Append(**config['Append'])
595 _result.append(infile)
  /external/chromium/third_party/icu/
icui18n.scons 12 'Append' : dict(
104 'Append' : dict(
201 env.Append(**config['Append'])
415 _result.append(infile)
icuuc.scons 12 'Append' : dict(
106 'Append' : dict(
205 env.Append(**config['Append'])
422 _result.append(infile)
  /external/chromium/net/url_request/
url_request_unittest.cc 167 proxy.append(IntToString(kHTTPDefaultPort));
192 proxy.append(IntToString(kHTTPDefaultPort));
565 path = path.Append(FILE_PATH_LITERAL("net"));
566 path = path.Append(FILE_PATH_LITERAL("data"));
567 path = path.Append(FILE_PATH_LITERAL("url_request_unittest"));
568 path = path.Append(FILE_PATH_LITERAL("with-headers.html"));
937 file_path = file_path.Append(FILE_PATH_LITERAL("net"));
938 file_path = file_path.Append(FILE_PATH_LITERAL("data"));
960 path = path.Append(FILE_PATH_LITERAL("net"));
961 path = path.Append(FILE_PATH_LITERAL("data"))
    [all...]
  /external/sonivox/jet_tools/JetCreator/
JetCtrls.py 267 self.Append(val)
286 def Append(self, val):
288 self.cmb.Append(val)
345 def Append(self, val):
347 self.txt.Append(val)
  /external/chromium/net/proxy/
proxy_config_service_linux_unittest.cc 330 FilePath path = kde_home_.Append(FILE_PATH_LITERAL("share"));
332 path = path.Append(FILE_PATH_LITERAL("config"));
334 kioslaverc_ = path.Append(FILE_PATH_LITERAL("kioslaverc"));
    [all...]
proxy_config_service_linux.cc 418 kde_home = FilePath(kde_home).Append(FILE_PATH_LITERAL(".kde")).value();
420 kde_config_dir_ = FilePath(kde_home).Append(
421 FILE_PATH_LITERAL("share")).Append(FILE_PATH_LITERAL("config"));
540 // would only append it right back again. So we just leave the port
649 FilePath kioslaverc = kde_config_dir_.Append(
    [all...]
single_threaded_proxy_resolver.cc 176 load_log_->Append(worker_log);
  /external/chromium/net/socket/
client_socket_pool_base.cc 221 request->load_log()->Append(job_load_log);
485 r->load_log()->Append(job_load_log);
500 r->load_log()->Append(job_load_log);
  /external/chromium/googleurl/src/
url_canon_fileurl.cc 127 output->Append("file://", 7);
130 // Append the host. For many file URLs, this will be empty. For UNC, this
url_canon_host.cc 153 // host valid. We append an escaped percent so the URL looks reasonable
358 output->Append(canon_ip.data(), canon_ip.length());
  /external/webkit/WebCore/platform/wx/wxcode/gtk/
non-kerned-drawing.cpp 233 text = text.Append((wxChar)glyphs[i]);
  /external/astl/include/
string 142 // @param str The string to be append.
144 string& operator+=(const string& str) { return this->append(str); }
146 // @param str The C string to be append.
148 string& operator+=(const value_type *str) { return this->append(str); }
150 // @param c A character to be append.
154 // @param c A character to be append.
158 string& append(const value_type *str);
160 string& append(const value_type *str, size_type n);
162 string& append(const value_type *str, size_type pos, size_type n);
163 string& append(const string& str)
    [all...]
  /external/chromium/base/third_party/symbolize/
demangle.cc 149 bool append; // Append flag. member in struct:__anon2450
185 state->append = true;
248 // Append "str" at "out_cur". If there is an overflow, "overflowed"
251 static void Append(State *state, const char * const str, const int length) {
276 // Append "str" with some tweaks, iff "append" state is true.
280 if (state->append && length > 0) {
281 // Append a space if the output buffer ends with '<' and "str"
285 Append(state, " ", 1)
    [all...]

Completed in 438 milliseconds

1 2 34 5 6