OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:atomicname
(Results
1 - 1
of
1
) sorted by null
/external/webkit/Source/WebCore/platform/text/
TextEncodingRegistry.cpp
140
static void checkExistingName(const char* alias, const char*
atomicName
)
145
if (oldAtomicName ==
atomicName
)
150
&& strcasecmp(
atomicName
, "iso-8859-8") == 0)
152
LOG_ERROR("alias %s maps to %s already, but someone is trying to make it map to %s", alias, oldAtomicName,
atomicName
);
176
const char*
atomicName
= textEncodingNameMap->get(name);
177
ASSERT(strcmp(alias, name) == 0 ||
atomicName
);
178
if (!
atomicName
)
179
atomicName
= name;
180
checkExistingName(alias,
atomicName
);
181
textEncodingNameMap->add(alias,
atomicName
);
[
all
...]
Completed in 164 milliseconds