Searched defs:equiv (Results 1 - 10 of 10) sorted by relevance

/external/icu4c/test/intltest/
H A Dwindttst.cpp85 UnicodeString equiv = TimeZone::getEquivalentID(zoneID, z); local
87 if (found = uprv_getWindowsTimeZoneInfo(&tzi, equiv.getBuffer(), equiv.length())) {
H A Dsvccoll.cpp575 Locale equiv = Collator::getFunctionalEquivalent("collation", local
579 assertEquals("getFunctionalEquivalent(de)", "de", equiv.getName());
583 equiv = Collator::getFunctionalEquivalent("collation",
587 assertEquals("getFunctionalEquivalent(de_DE)", "de", equiv.getName());
H A Dtzrulets.cpp1755 UBool equiv = vtz->hasEquivalentTransitions(*otz, time1, time2, FALSE, status); local
1759 if (!equiv) {
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DTypeData.java211 ArrayList equiv = this.equivalences;
212 int n = equiv.size();
213 String name = evalExpectedType2(equiv, n);
217 TypeData td = (TypeData)equiv.get(i);
227 TypeData td = (TypeData)equiv.get(i);
237 private String evalExpectedType2(ArrayList equiv, int n) throws BadBytecode { argument
240 TypeData td = (TypeData)equiv.get(i);
289 ArrayList equiv = equivalences;
290 if (equiv.size() == 1)
376 // ArrayList equiv
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebPageSerializerImpl.cpp140 String equiv = meta->httpEquiv(); local
141 if (equalIgnoringCase(equiv, "content-type")) {
/external/icu4c/i18n/
H A Dwindtfmt.cpp300 UnicodeString equiv = TimeZone::getEquivalentID(icuid, z); local
302 if (found = uprv_getWindowsTimeZoneInfo(tzi, equiv.getBuffer(), equiv.length())) {
/external/webkit/Source/WebCore/html/parser/
H A DXSSFilter.cpp94 String equiv = value.stripWhiteSpace(); local
95 return equalIgnoringCase(equiv, "refresh") || equalIgnoringCase(equiv, "set-cookie");
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.c691 * @param equiv - The instruction that is 16-bit
693 static BOOL is16BitEquvalent(const char* orig, const char* equiv) { argument
697 if (orig[i] == '\0' && equiv[i] == '\0')
699 if (orig[i] == '\0' || equiv[i] == '\0')
701 if (orig[i] != equiv[i]) {
702 if ((orig[i] == 'Q' || orig[i] == 'L') && equiv[i] == 'W')
704 if ((orig[i] == '6' || orig[i] == '3') && equiv[i] == '1')
706 if ((orig[i] == '4' || orig[i] == '2') && equiv[i] == '6')
/external/webkit/Tools/DumpRenderTree/mac/PerlSupport/
H A DDumpRenderTreeSupport_wrapPregenerated.c106 int equiv = 0; local
109 while (!equiv && *ne) {
113 equiv = SWIG_TypeNameComp(nb, ne, tb, te) == 0;
116 return equiv;
268 swig_type_info *tc, *equiv; local
272 equiv = ti->next;
273 while (equiv) {
274 if (!equiv->converter) {
277 if ((strcmp(tc->name, equiv->name) == 0))
282 equiv
339 swig_type_info *equiv = type->next; local
[all...]
/external/webkit/Source/WebCore/dom/
H A DDocument.cpp2630 void Document::processHttpEquiv(const String& equiv, const String& content) argument
2632 ASSERT(!equiv.isNull() && !content.isNull());
2636 if (equalIgnoringCase(equiv, "default-style")) {
2646 } else if (equalIgnoringCase(equiv, "refresh")) {
2656 } else if (equalIgnoringCase(equiv, "set-cookie")) {
2662 } else if (equalIgnoringCase(equiv, "content-language"))
2664 else if (equalIgnoringCase(equiv, "x-dns-prefetch-control"))
2666 else if (equalIgnoringCase(equiv, "x-frame-options")) {
2677 } else if (equalIgnoringCase(equiv, "x-webkit-csp"))

Completed in 753 milliseconds