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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/net/websockets/
websocket_net_log_params_unittest.cc 15 list->Append(new StringValue("GET /demo HTTP/1.1"));
16 list->Append(new StringValue("Host: example.com"));
17 list->Append(new StringValue("Connection: Upgrade"));
18 list->Append(new StringValue("Sec-WebSocket-Key2: 12998 5 Y3 1 .P00"));
19 list->Append(new StringValue("Sec-WebSocket-Protocol: sample"));
20 list->Append(new StringValue("Upgrade: WebSocket"));
21 list->Append(new StringValue("Sec-WebSocket-Key1: 4 @1 46546xW%0l 1 5"));
22 list->Append(new StringValue("Origin: http://example.com"));
23 list->Append(new StringValue(""));
24 list->Append(new StringValue("\\x00\\x01\\x0a\\x0d\\xff\\xfe\\x0d\\x0a"))
    [all...]
  /external/chromium/third_party/libjingle/source/talk/xmpp/
saslplainmechanism.h 50 credential.Append("\0", 1);
51 credential.Append(user_jid_.node());
52 credential.Append("\0", 1);
53 credential.Append(&password_);
  /external/chromium/chrome/browser/extensions/
external_policy_extension_loader_unittest.cc 106 forced_extensions.Append(Value::CreateStringValue(
108 forced_extensions.Append(Value::CreateStringValue(
121 valid_extensions.Append(valid.DeepCopy());
122 forced_extensions.Append(valid.DeepCopy());
124 forced_extensions.Append(Value::CreateStringValue(""));
125 forced_extensions.Append(Value::CreateStringValue(";"));
126 forced_extensions.Append(Value::CreateStringValue(";;"));
127 forced_extensions.Append(Value::CreateStringValue(
129 forced_extensions.Append(Value::CreateStringValue(
131 forced_extensions.Append(Value::CreateStringValue
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 400 buf.Append(Version);
401 buf.Append('\t');
402 buf.Append(parser.GetType().Name);
403 // buf.Append('\t');
404 // buf.Append(numRuleInvocations);
405 // buf.Append('\t');
406 // buf.Append(maxRuleInvocationDepth);
407 // buf.Append('\t');
408 // buf.Append(numFixedDecisions);
409 // buf.Append('\t')
    [all...]
DebugEventSocketProxy.cs 222 buf.Append("exception\t");
223 buf.Append(e.GetType().Name);
225 buf.Append("\t");
226 buf.Append(e.Index);
227 buf.Append("\t");
228 buf.Append(e.Line);
229 buf.Append("\t");
230 buf.Append(e.CharPositionInLine);
244 buf.Append("semanticPredicate\t");
245 buf.Append(result)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 445 buf.Append(Version);
446 buf.Append('\t');
447 buf.Append(parser.GetType().Name);
448 // buf.Append('\t');
449 // buf.Append(numRuleInvocations);
450 // buf.Append('\t');
451 // buf.Append(maxRuleInvocationDepth);
452 // buf.Append('\t');
453 // buf.Append(numFixedDecisions);
454 // buf.Append('\t')
    [all...]
DebugEventSocketProxy.cs 256 buf.Append( "exception\t" );
257 buf.Append( e.GetType().Name );
259 buf.Append( "\t" );
260 buf.Append( e.Index );
261 buf.Append( "\t" );
262 buf.Append( e.Line );
263 buf.Append( "\t" );
264 buf.Append( e.CharPositionInLine );
281 buf.Append( "semanticPredicate\t" );
282 buf.Append( result )
    [all...]
  /external/chromium/chrome/common/
chrome_paths.cc 66 *result = result->Append("Internet Plug-Ins");
147 cur = cur.Append(FILE_PATH_LITERAL("Crash Reports"));
157 cur = cur.Append(FILE_PATH_LITERAL("Resources"));
161 cur = cur.Append(FILE_PATH_LITERAL("resources"));
167 cur = cur.Append(FILE_PATH_LITERAL("shared"));
172 cur = cur.Append(FILE_PATH_LITERAL("inspector"));
186 cur = cur.Append(FILE_PATH_LITERAL("Dictionaries"));
192 cur = cur.Append(FILE_PATH_LITERAL("Temp"));
201 *result = result->Append("Libraries");
209 cur = cur.Append(chrome::kLocalStateFilename)
    [all...]
chrome_paths_unittest.cc 20 test_profile_dir = test_profile_dir.Append("foobar");
23 expected_cache_dir = expected_cache_dir.Append("foobar");
28 test_profile_dir = homedir.Append(".config/foobar");
29 FilePath expected_cache_dir = homedir.Append(".cache/foobar");
chrome_paths_linux.cc 34 *result = config_dir.Append("google-chrome");
36 *result = config_dir.Append("chromium");
74 *result = config_dir.Append("google-chrome-frame");
76 *result = config_dir.Append("chrome-frame");
96 *result = home.Append(kDownloadsDir);
103 *result = home.Append(kDownloadsDir);
chrome_paths_win.cc 25 *result = result->Append(dist->GetInstallSubDir());
26 *result = result->Append(chrome::kUserDataDirname);
35 *result = result->Append(dist->GetInstallSubDir());
36 *result = result->Append(chrome::kUserDataDirname);
62 *result = result->Append(L"Downloads");
  /external/chromium/chrome/browser/importer/
firefox_importer_utils_linux.cc 15 ini_file = home.Append(".mozilla/firefox/profiles.ini");
  /external/chromium/chrome/browser/sync/
js_sync_manager_observer.cc 31 return_args.Append(Value::CreateStringValue(
34 return_args.Append(change_values);
36 change_values->Append(changes[i].ToValue(trans));
45 return_args.Append(Value::CreateStringValue(
54 return_args.Append(snapshot->ToValue());
62 return_args.Append(auth_error.ToValue());
69 return_args.Append(Value::CreateStringValue("<redacted>"));
76 return_args.Append(Value::CreateBooleanValue(for_decryption));
88 return_args.Append(Value::CreateStringValue("<redacted>"));
96 return_args.Append(syncable::ModelTypeSetToValue(encrypted_types))
    [all...]
js_arg_list_unittest.cc 22 list->Append(Value::CreateBooleanValue(false));
23 list->Append(Value::CreateIntegerValue(5));
25 list->Append(dict);
52 list.Append(bool_value.DeepCopy());
53 list.Append(int_value.DeepCopy());
54 list.Append(dict.DeepCopy());
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreePatternLexer.cs 77 sval.Append((char)c);
81 sval.Append((char)c);
112 sval.Append('\\');
114 sval.Append((char)c);
116 sval.Append((char)c);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreePatternLexer.cs 83 sval.Append( (char)c );
88 sval.Append( (char)c );
129 sval.Append( '\\' );
131 sval.Append( (char)c );
135 sval.Append( (char)c );
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
language_hangul_handler.cc 38 option->Append(Value::CreateStringValue(
40 option->Append(Value::CreateStringValue(l10n_util::GetStringUTF16(
42 keyboard_layout_list->Append(option);
  /external/chromium/chrome/browser/ui/webui/options/
font_settings_utils_gtk.cc 32 font_item->Append(Value::CreateStringValue(*iter));
33 font_item->Append(Value::CreateStringValue(*iter)); // localized name.
35 font_list->Append(font_item);
  /external/chromium/base/
linked_list_unittest.cc 71 TEST(LinkedList, Append) {
76 list.Append(&n1);
86 list.Append(&n2);
96 list.Append(&n3);
115 list.Append(&n1);
116 list.Append(&n2);
117 list.Append(&n3);
118 list.Append(&n4);
119 list.Append(&n5);
167 list.Append(&n1)
    [all...]
file_util_unittest.cc 325 temp_dir_.path().Append(FILE_PATH_LITERAL("Old File.txt"));
343 temp_dir_.path().Append(FILE_PATH_LITERAL("New File.txt"));
357 FilePath file_01 = temp_dir_.path().Append(FPL("The file 01.txt"));
363 FilePath subdir_path = temp_dir_.path().Append(FPL("Level2"));
366 FilePath file_02 = subdir_path.Append(FPL("The file 02.txt"));
372 FilePath subsubdir_path = subdir_path.Append(FPL("Level3"));
375 FilePath file_03 = subsubdir_path.Append(FPL("The file 03.txt"));
392 FilePath file_a_path = temp_dir_.path().Append(FPL("file_a"));
393 FilePath dir_path = temp_dir_.path().Append(FPL("dir"));
394 FilePath file_b_path = dir_path.Append(FPL("file_b"))
    [all...]
base_paths_linux.cc 70 if (file_util::PathExists(path.Append(kThisSourceFile))) {
82 if (file_util::PathExists(path.Append(kThisSourceFile))) {
91 path = path.DirName().DirName().Append("Source/WebKit/chromium");
92 if (file_util::PathExists(path.Append(kThisSourceFile))) {
100 file_util::PathExists(path.Append(kThisSourceFile))) {
  /external/chromium/chrome/browser/download/
save_page_browsertest.cc 60 FilePath(kTestDir).Append(file_name));
66 FilePath full_file_name = save_dir_.path().Append(file_name);
79 test_dir_.Append(FilePath(kTestDir)).Append(file_name),
86 FilePath(kTestDir).Append(file_name));
88 FilePath(kTestDir).Append(file_name));
94 FilePath full_file_name = save_dir_.path().Append(file_name);
108 test_dir_.Append(FilePath(kTestDir)).Append(file_name),
115 FilePath(kTestDir).Append(file_name))
    [all...]
  /external/chromium/net/disk_cache/
cache_util_unittest.cc 18 cache_dir_ = tmp_dir_.path().Append(FILE_PATH_LITERAL("Cache"));
19 file1_ = FilePath(cache_dir_.Append(FILE_PATH_LITERAL("file01")));
20 file2_ = FilePath(cache_dir_.Append(FILE_PATH_LITERAL(".file02")));
21 dir1_ = FilePath(cache_dir_.Append(FILE_PATH_LITERAL("dir01")));
30 dest_dir_ = tmp_dir_.path().Append(FILE_PATH_LITERAL("old_Cache_001"));
31 dest_file1_ = FilePath(dest_dir_.Append(FILE_PATH_LITERAL("file01")));
32 dest_file2_ = FilePath(dest_dir_.Append(FILE_PATH_LITERAL(".file02")));
33 dest_dir1_ = FilePath(dest_dir_.Append(FILE_PATH_LITERAL("dir01")));
  /external/chromium/third_party/libjingle/source/talk/site_scons/site_tools/
talk_noops.py 17 env.Append(BUILDERS={'RES': builder, 'Grit': builder})
  /external/chromium/net/test/
python_utils.cc 32 new_path.append(";");
34 new_path.append(":");
36 new_path.append(dir_path.c_str());
50 while (!file_util::DirectoryExists(dir.Append(to_try))) {
91 .Append(FILE_PATH_LITERAL("out"))
92 .Append(FILE_PATH_LITERAL("Release"));
101 *dir = generated_code_dir.Append(kPyProto);
110 *dir = dir->Append(FILE_PATH_LITERAL("third_party"))
111 .Append(FILE_PATH_LITERAL("python_26"))
112 .Append(FILE_PATH_LITERAL("python.exe"))
    [all...]

Completed in 506 milliseconds

1 2 3 4 5 6 7 8 91011>>