Searched defs:list (Results 1 - 25 of 1364) sorted by relevance

1234567891011>>

/external/chromium/net/websockets/
H A Dwebsocket_net_log_params_unittest.cc14 ListValue* list = new ListValue(); local
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
[all...]
/external/chromium_org/net/websockets/
H A Dwebsocket_net_log_params_test.cc15 base::ListValue* list = new base::ListValue(); local
16 list->Append(new base::StringValue("GET /demo HTTP/1.1"));
17 list->Append(new base::StringValue("Host: example.com"));
18 list->Append(new base::StringValue("Connection: Upgrade"));
19 list->Append(new base::StringValue("Sec-WebSocket-Key2: 12998 5 Y3 1 .P00"));
20 list->Append(new base::StringValue("Sec-WebSocket-Protocol: sample"));
21 list->Append(new base::StringValue("Upgrade: WebSocket"));
22 list->Append(new base::StringValue(
24 list->Append(new base::StringValue("Origin: http://example.com"));
25 list
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DListHashSetTest.cpp8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
35 ListHashSet<int> list; local
36 list.add(1);
37 list.add(2);
38 list.add(3);
40 ASSERT_EQ(1, list.first());
42 list.removeFirst();
43 ASSERT_EQ(2, list.first());
45 list
54 ListHashSet<int> list; local
76 ListHashSet<int> list; local
115 ListHashSet<int> list; local
137 ListHashSet<int> list; local
[all...]
/external/elfutils/libelf/
H A Delf_nextscn.c31 Inc. may make changes or additions to the list of Approved Interfaces.
92 Elf_ScnList *list = scn->list; local
94 if (scn + 1 < &list->data[list->cnt])
96 else if (scn + 1 == &list->data[list->max]
97 && (list = list->next) != NULL)
99 /* If there is another element in the section list i
[all...]
/external/chromium_org/chromeos/network/
H A Dnetwork_util_unittest.cc107 ListValue list; local
110 // Empty list value.
111 EXPECT_TRUE(ParseCellularScanResults(list, &scan_results));
114 list.AppendInteger(0);
115 EXPECT_FALSE(ParseCellularScanResults(list, &scan_results));
118 list.Clear();
121 list.Append(dict_value);
122 EXPECT_TRUE(ParseCellularScanResults(list, &scan_results));
130 list.Append(dict_value);
136 list
[all...]
/external/chromium_org/net/spdy/
H A Dwrite_blocked_list_test.cc17 IntWriteBlockedList list; local
18 EXPECT_FALSE(list.HasWriteBlockedStreams());
19 list.PushBack(1, 1);
20 EXPECT_TRUE(list.HasWriteBlockedStreams());
21 EXPECT_EQ(1, list.GetHighestPriorityWriteBlockedList());
22 list.PushBack(1, 0);
23 EXPECT_TRUE(list.HasWriteBlockedStreams());
24 EXPECT_EQ(0, list.GetHighestPriorityWriteBlockedList());
28 IntWriteBlockedList list; local
29 list
38 IntWriteBlockedList list; local
57 IntWriteBlockedList list; local
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-ast.cc7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
39 List<AstNode*>* list = new List<AstNode*>(0); local
40 CHECK_EQ(0, list->length());
46 list->Add(node);
47 CHECK_EQ(1, list->length());
48 CHECK_EQ(node, list->at(0));
49 CHECK_EQ(node, list->last());
53 list->Add(node);
55 CHECK_EQ(1 + kElements, list
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Dcomplete-ant-cmd.pl42 list( restrict( $word, getArguments() ));
44 list( getBuildFiles($word) );
46 list( restrict( $word, getTargets() ));
51 sub list { subroutine
82 # Run "ant -projecthelp" to list targets. Keep a cache of results in a
/external/v8/test/cctest/
H A Dtest-ast.cc7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
39 List<AstNode*>* list = new List<AstNode*>(0); local
40 CHECK_EQ(0, list->length());
45 list->Add(node);
46 CHECK_EQ(1, list->length());
47 CHECK_EQ(node, list->at(0));
48 CHECK_EQ(node, list->last());
52 list->Add(node);
54 CHECK_EQ(1 + kElements, list
[all...]
/external/chromium/chrome/browser/sync/
H A Djs_arg_list_unittest.cc21 scoped_ptr<ListValue> list(new ListValue());
22 list->Append(Value::CreateBooleanValue(false));
23 list->Append(Value::CreateIntegerValue(5));
25 list->Append(dict);
29 JsArgList arg_list(*list);
32 scoped_ptr<ListValue> list_copy(list->DeepCopy());
33 list.reset();
51 ListValue list; local
52 list.Append(bool_value.DeepCopy());
53 list
[all...]
/external/chromium/net/base/
H A Daddress_list_net_log_param.cc19 ListValue* list = new ListValue(); local
23 list->Append(Value::CreateStringValue(NetAddressToStringWithPort(head)));
26 dict->Set("address_list", list);
/external/chromium_org/gpu/config/
H A Dgpu_blacklist.cc20 GpuBlacklist* list = new GpuBlacklist(); local
21 list->AddSupportedFeature("accelerated_2d_canvas",
23 list->AddSupportedFeature("accelerated_compositing",
25 list->AddSupportedFeature("webgl",
27 list->AddSupportedFeature("multisampling",
29 list->AddSupportedFeature("flash_3d",
31 list->AddSupportedFeature("flash_stage3d",
33 list->AddSupportedFeature("flash_stage3d_baseline",
35 list->AddSupportedFeature("texture_sharing",
37 list
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DLinkRelAttribute.cpp9 * notice, this list of conditions and the following disclaimer.
11 * copyright notice, this list of conditions and the following disclaimer
82 Vector<String> list; local
83 relCopy.split(' ', list);
84 Vector<String>::const_iterator end = list.end();
85 for (Vector<String>::const_iterator it = list.begin(); it != end; ++it) {
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBPendingTransactionMonitor.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in the
52 ThreadSpecific<TransactionList>& list = transactions(); local
53 for (size_t i = 0; i < list->size(); ++i) {
54 RefPtr<IDBTransaction> transaction = list->at(i);
58 list->clear();
/external/clang/test/Analysis/inlining/
H A Dstl.cpp31 void testList_pop_front(std::list<int> list) { argument
32 while(!list.empty())
33 list.pop_front(); // no-warning
/external/clang/test/CodeGen/
H A D2002-08-19-RecursiveLocals.c5 struct list { struct
7 struct list *Next;
10 static struct list B; /* Forward declare static */
11 static struct list A = { 7, &B };
12 static struct list B = { 8, &A };
14 extern struct list D; /* forward declare normal var */
16 struct list C = { 7, &D };
17 struct list D = { 8, &C };
/external/dropbear/
H A Dscpmisc.h32 char **list; member in struct:arglist
/external/emma/core/java12/com/vladium/util/
H A DXProperties.java38 public void list (final PrintStream out) method in class:XProperties
57 public void list (final PrintWriter out) method in class:XProperties
/external/oprofile/daemon/
H A Dopd_kernel.h36 struct list_head list; member in struct:kernel_image
/external/qemu/
H A Dnotify.c17 void notifier_list_init(NotifierList *list) argument
19 QTAILQ_INIT(&list->notifiers);
22 void notifier_list_add(NotifierList *list, Notifier *notifier) argument
24 QTAILQ_INSERT_HEAD(&list->notifiers, notifier, node);
27 void notifier_list_remove(NotifierList *list, Notifier *notifier) argument
29 QTAILQ_REMOVE(&list->notifiers, notifier, node);
32 void notifier_list_notify(NotifierList *list) argument
36 QTAILQ_FOREACH_SAFE(notifier, &list->notifiers, node, next) {
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ListTest.java27 List<Integer> list; // must contain the Integers 0 to 99 in order field in class:Support_ListTest
35 list = l;
43 elem = list.get(counter);
48 assertTrue("ListTest - hashCode failed", hashCode == list.hashCode());
50 list.add(50, new Integer(1000));
51 assertTrue("ListTest - a) add with index failed--did not insert", list
55 list.get(51).equals(new Integer(50)));
58 list.get(49).equals(new Integer(49)));
60 list.set(50, new Integer(2000));
61 assertTrue("ListTest - a) set failed--did not set", list
128 t_listIterator(List<Integer> list) argument
[all...]
/external/chromium/net/proxy/
H A Dproxy_list_unittest.cc45 // If the proxy list string parsed to empty, automatically fall-back to
59 ProxyList list; local
60 list.SetFromPacString(tests[i].pac_input);
61 EXPECT_EQ(tests[i].pac_output, list.ToPacString());
62 EXPECT_FALSE(list.IsEmpty());
85 ProxyList list; local
86 list.SetFromPacString(tests[i].pac_input);
87 list.RemoveProxiesWithoutScheme(tests[i].filter);
88 EXPECT_EQ(tests[i].filtered_pac_output, list.ToPacString());
101 ProxyList list; local
113 ProxyList list; local
130 ProxyList list; local
[all...]
/external/chromium_org/chrome/browser/autocomplete/
H A Durl_prefix.cc34 const URLPrefixes& list = GetURLPrefixes(); local
35 for (URLPrefixes::const_iterator i = list.begin(); i != list.end(); ++i)
44 const URLPrefixes& list = GetURLPrefixes(); local
45 for (URLPrefixes::const_iterator i = list.begin(); i != list.end(); ++i)
/external/chromium_org/chrome/browser/extensions/api/top_sites/
H A Dtop_sites_apitest.cc65 base::ListValue* list; local
66 ASSERT_TRUE(result->GetAsList(&list));
67 EXPECT_GE(list->GetSize(), arraysize(history::kPrepopulatedPages));
/external/chromium_org/chrome/browser/ui/webui/memory_internals/
H A Dmemory_internals_handler.cc37 void MemoryInternalsHandler::OnJSUpdate(const base::ListValue* list) { argument
38 proxy_->StartFetch(list);

Completed in 972 milliseconds

1234567891011>>