HomeSort by relevance Sort by last modified time
    Searched refs:Append (Results 276 - 300 of 479) sorted by null

<<11121314151617181920

  /frameworks/compile/libbcc/runtime/make/
subdir.mk 35 $(call Append,SubDirKeys,$(DirKey))
  /external/chromium/base/
file_util_win.cc 98 std::wstring filename_spec = path.Append(L"*").value();
300 FilePath directory = from_path.Append(L"*.*");
633 new_dir_name.append(base::IntToString16(rand() % kint16max));
635 path_to_create = base_dir.Append(new_dir_name);
798 source.append(1, L'\0');
799 target.append(1, L'\0');
903 src = src.Append(L"*"); // No pattern = match everything.
905 src = src.Append(pattern_);
935 cur_file = root_path_.Append(find_data_.cFileName);
    [all...]
values.cc 26 copy->Append(child_copy);
709 Append(CreateNullValue());
710 Append(in_value);
835 void ListValue::Append(Value* in_value) {
871 result->Append((*i)->DeepCopy());
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...]
  /external/chromium/chrome/browser/extensions/
extensions_ui.cc 254 extensions_list->Append(CreateExtensionDetailValue(
265 extensions_list->Append(CreateExtensionDetailValue(
277 extensions_list->Append(CreateExtensionDetailValue(
514 arguments.Append(Value::CreateStringValue(message));
615 results.Append(Value::CreateStringValue(path.value()));
739 views->Append(view_value);
    [all...]
extension_menu_manager.cc 421 args.Append(properties);
425 args.Append(ExtensionTabUtil::CreateTabValue(tab_contents));
427 args.Append(new DictionaryValue());
extension_service_unittest.cc 354 ? FilePath() : GetPath().Append(chrome::kAppCacheDirname),
436 path_ = path_.Append(FILE_PATH_LITERAL("TestingExtensionsPath"));
439 FilePath temp_prefs = path_.Append(FILE_PATH_LITERAL("Preferences"));
442 extensions_install_dir_ = path_.Append(FILE_PATH_LITERAL("Extensions"));
462 path_ = path_.Append(FILE_PATH_LITERAL("TestingExtensionsPath"));
466 .Append(FILE_PATH_LITERAL("TestPreferences"));
467 extensions_install_dir_ = path_.Append(FILE_PATH_LITERAL("Extensions"));
654 path = path.Append(in_path.BaseName());
848 list_value->Append(Value::CreateStringValue(*iter));
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
extension_settings_handler.cc 350 extensions_list->Append(CreateExtensionDetailValue(
362 extensions_list->Append(CreateExtensionDetailValue(
375 extensions_list->Append(CreateExtensionDetailValue(
607 arguments.Append(Value::CreateStringValue(message));
708 results.Append(Value::CreateStringValue(path.value()));
    [all...]
certificate_manager_handler.cc     [all...]
core_options_handler.cc 376 result_value.Append(Value::CreateStringValue(pref_name->c_str()));
381 result_value.Append(dict);
  /external/chromium/net/proxy/
proxy_config_service_linux.cc 456 FilePath kde_path = FilePath(home).Append(".kde");
469 FilePath kde3_path = FilePath(home).Append(".kde");
471 FilePath kde4_path = FilePath(home).Append(".kde4");
616 return kde_home.Append("share").Append("config");
624 // would only append it right back again. So we just leave the port
745 FilePath kioslaverc = kde_config_dir_.Append("kioslaverc");
    [all...]
  /external/chromium/net/url_request/
url_request_unittest.cc 795 path = path.Append(FILE_PATH_LITERAL("net"));
796 path = path.Append(FILE_PATH_LITERAL("data"));
797 path = path.Append(FILE_PATH_LITERAL("url_request_unittest"));
798 path = path.Append(FILE_PATH_LITERAL("with-headers.html"));
    [all...]
  /external/chromium/testing/gtest/scripts/
pump.py 571 atomic_code_list.append(atomic_code_node)
652 def Append(self, s):
680 output.Append(sep)
682 output.Append(node.raw_code.value)
691 output.Append('%s' % (value,))
693 output.Append('$')
723 output.append(before_comment)
735 output.append(prefix + cur_line.rstrip())
738 output.append(prefix + cur_line.strip())
755 output.append(prefix + seg[:split_at].strip() + line_concat
    [all...]
  /external/gtest/scripts/
pump.py 571 atomic_code_list.append(atomic_code_node)
652 def Append(self, s):
680 output.Append(sep)
682 output.Append(node.raw_code.value)
691 output.Append('%s' % (value,))
693 output.Append('$')
723 output.append(before_comment)
735 output.append(prefix + cur_line.rstrip())
738 output.append(prefix + cur_line.strip())
755 output.append(prefix + seg[:split_at].strip() + line_concat
    [all...]
  /external/regex-re2/re2/
compile.cc 44 static PatchList Append(Prog::Inst *inst0, PatchList l1, PatchList l2);
81 PatchList PatchList::Append(Prog::Inst* inst0, PatchList l1, PatchList l2) {
341 return Frag(id, PatchList::Append(inst_, a.end, b.end));
387 return Frag(id, PatchList::Append(inst_, pl, a.end));
489 rune_range_.end = PatchList::Append(inst_, rune_range_.end, f.end);
    [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/chrome/browser/
about_flags.cc 47 // gather statistics about the usage of your flag, you should append a marker
357 experiments_list->Append(new StringValue(*it));
466 result->Append(value);
510 experiments_data->Append(data);
  /external/chromium/chrome/browser/chromeos/login/
user_manager.cc 321 prefs_users_update->Append(Value::CreateStringValue(email));
328 prefs_users_update->Append(Value::CreateStringValue(user_email));
377 prefs_users_update->Append(Value::CreateStringValue(user_email));
  /external/chromium/chrome/browser/chromeos/
user_cros_settings_provider.cc 156 user_list->Append(user);
159 cached_whitelist_update->Append(Value::CreateStringValue(email));
582 cached_whitelist_update->Append(Value::CreateStringValue(email));
  /external/chromium/chrome/common/
service_process_util_unittest.cc 379 *bundle_root = dst.Append(name + std::string(".app"));
382 *executable = mac_os.Append(name);
383 FilePath info_plist = contents.Append("Info.plist");
  /external/chromium/net/socket/
client_socket_pool_manager.cc 53 list->Append(it->second->GetInfoAsValue(it->first.ToString(),
566 list->Append(transport_socket_pool_->GetInfoAsValue("transport_socket_pool",
572 list->Append(ssl_socket_pool_->GetInfoAsValue("ssl_socket_pool",
ssl_client_socket_pool.cc 611 list->Append(transport_pool_->GetInfoAsValue("transport_socket_pool",
616 list->Append(socks_pool_->GetInfoAsValue("socks_pool",
621 list->Append(http_proxy_pool_->GetInfoAsValue("http_proxy_pool",
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 398 void Append(char *Start, char *End, char *&Buffer, unsigned &BufferSize,
423 Append(reinterpret_cast<char *>(&Raw),
431 Append(reinterpret_cast<char *>(&Ptr),
  /external/chromium/chrome/browser/policy/
user_policy_cache_unittest.cc 189 expected.Append(Value::CreateStringValue("ponies"));
190 expected.Append(Value::CreateStringValue("more ponies"));
  /external/chromium/chrome/browser/profiles/
profile_impl_io_data.cc 301 FilePath cookie_path = app_path.Append(chrome::kCookieFilename);
302 FilePath cache_path = app_path.Append(chrome::kCacheDirname);

Completed in 1223 milliseconds

<<11121314151617181920