OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:utf8_key
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/ui/cocoa/
ui_localizer.mm
31
const char*
utf8_key
= reinterpret_cast<const char*>(utf8Void);
34
return strcmp(
utf8_key
, res_map->name);
69
const char*
utf8_key
= [string UTF8String];
70
if (
utf8_key
) {
71
const void* valVoid = bsearch(
utf8_key
,
91
DLOG_IF(WARNING, [string hasPrefix:@"^ID"]) << "Key '" <<
utf8_key
/external/chromium_org/ppapi/shared_impl/
dictionary_var.cc
91
bool DictionaryVar::SetWithStringKey(const std::string&
utf8_key
,
93
if (!base::IsStringUTF8(
utf8_key
))
96
key_value_map_[
utf8_key
] = value;
100
void DictionaryVar::DeleteWithStringKey(const std::string&
utf8_key
) {
101
key_value_map_.erase(
utf8_key
);
dictionary_var.h
45
bool SetWithStringKey(const std::string&
utf8_key
, const PP_Var& value);
46
void DeleteWithStringKey(const std::string&
utf8_key
);
/external/chromium_org/chrome/browser/extensions/error_console/
error_console_browsertest.cc
311
std::string
utf8_key
= base::UTF16ToUTF8(
local
313
if (
utf8_key
== manifest_keys::kPermissions)
315
else if (
utf8_key
== kFakeKey)
Completed in 591 milliseconds