OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nullablestring16
(Results
26 - 46
of
46
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/public/platform/
WebString.h
147
WebString(const base::
NullableString16
& s)
155
WebString& operator=(const base::
NullableString16
& s)
164
operator base::
NullableString16
() const
166
return base::
NullableString16
(operator base::string16(), m_private.isNull());
/external/chromium_org/content/browser/dom_storage/
dom_storage_area.cc
117
base::
NullableString16
DOMStorageArea::Key(unsigned index) {
119
return base::
NullableString16
();
124
base::
NullableString16
DOMStorageArea::GetItem(const base::string16& key) {
126
return base::
NullableString16
();
133
base::
NullableString16
* old_value) {
142
commit_batch->changed_values[key] = base::
NullableString16
(value, false);
157
commit_batch->changed_values[key] = base::
NullableString16
();
dom_storage_area_unittest.cc
50
base::
NullableString16
old_value;
79
base::
NullableString16
old_nullable_value;
151
base::
NullableString16
old_value;
180
base::
NullableString16
old_value;
223
base::
NullableString16
old_value;
298
base::
NullableString16
old_value;
330
base::
NullableString16
old_value;
399
base::
NullableString16
old_value;
dom_storage_context_impl.h
26
class
NullableString16
;
74
const base::
NullableString16
& old_value,
144
const base::
NullableString16
& old_value,
dom_storage_database.cc
68
(*result)[key] = base::
NullableString16
(value, false);
99
base::
NullableString16
value = it->second;
277
base::
NullableString16
value(statement.ColumnString16(1), false);
session_storage_database_unittest.cc
75
const base::
NullableString16
kValue1;
76
const base::
NullableString16
kValue2;
77
const base::
NullableString16
kValue3;
78
const base::
NullableString16
kValue4;
79
const base::
NullableString16
kValueNull;
334
base::
NullableString16
val1 = it->second;
335
base::
NullableString16
val2 = map2.find(key)->second;
704
changes[kKey1] = base::
NullableString16
(string_with_raw_data, false);
dom_storage_database.h
39
// |changes| will be examined - keys mapped to a null
NullableString16
dom_storage_namespace.h
117
base::
NullableString16
value;
dom_storage_namespace.cc
308
base::
NullableString16
other_value = area->GetItem(transaction.key);
340
base::
NullableString16
old_value;
session_storage_database.h
51
// in |changes| will be examined - keys mapped to a null
NullableString16
will
session_storage_database.cc
577
(*result)[key16] = base::
NullableString16
();
585
base::
NullableString16
(base::string16(data_ptr, len), false);
597
base::
NullableString16
value = it->second;
dom_storage_context_impl.cc
205
const base::
NullableString16
& old_value,
/external/chromium_org/content/browser/web_contents/
web_drag_dest_mac.mm
268
data->text = base::
NullableString16
(
276
data->html = base::
NullableString16
(base::SysNSStringToUTF16(html), false);
279
data->html = base::
NullableString16
(base::SysNSStringToUTF16(html), false);
282
data->html = base::
NullableString16
(base::SysNSStringToUTF16(html), false);
web_contents_view_aura.cc
404
drop_data->text = base::
NullableString16
(plain_text, false);
419
drop_data->html = base::
NullableString16
(html, false);
[
all
...]
/external/chromium_org/content/test/
mock_webclipboard_impl.cc
188
m_plainText = base::
NullableString16
();
189
m_htmlText = base::
NullableString16
();
/external/chromium_org/content/common/
page_state_serialization_unittest.cc
25
base::
NullableString16
NS16(const char* s) {
26
return s ? base::
NullableString16
(base::ASCIIToUTF16(s), false) :
27
base::
NullableString16
();
112
std::vector<base::
NullableString16
>* referenced_files) {
/external/chromium_org/content/renderer/dom_storage/
dom_storage_dispatcher.cc
119
const base::
NullableString16
& value) OVERRIDE;
258
const base::
NullableString16
& value) {
/external/chromium_org/content/renderer/
history_serialization.cc
28
std::vector<base::
NullableString16
>* output) {
/external/chromium_org/ipc/
ipc_message_utils.cc
530
void ParamTraits<base::
NullableString16
>::Write(Message* m,
536
bool ParamTraits<base::
NullableString16
>::Read(const Message* m,
545
*r = base::
NullableString16
(string, is_null);
549
void ParamTraits<base::
NullableString16
>::Log(const param_type& p,
ipc_message_utils.h
54
class
NullableString16
;
470
struct IPC_EXPORT ParamTraits<base::
NullableString16
> {
471
typedef base::
NullableString16
param_type;
/external/chromium_org/tools/ipc_fuzzer/mutate/
generate.cc
430
struct GenerateTraits<base::
NullableString16
> {
431
static bool Generate(base::
NullableString16
* p, Generator* generator) {
432
*p = base::
NullableString16
();
[
all
...]
Completed in 319 milliseconds
1
2