Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: icu46/source/test/perf/unisetperf/draft/unicont.h

Issue 5516007: Check in the pristine copy of ICU 4.6... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: icu46/source/test/perf/unisetperf/draft/unicont.h
===================================================================
--- icu46/source/test/perf/unisetperf/draft/unicont.h (revision 0)
+++ icu46/source/test/perf/unisetperf/draft/unicont.h (revision 0)
@@ -0,0 +1,34 @@
+/*
+**********************************************************************
+* Copyright (C) 2007, International Business Machines
+* Corporation and others. All Rights Reserved.
+**********************************************************************
+* file name: unicont.h
+* encoding: US-ASCII
+* tab size: 8 (not used)
+* indentation:4
+*
+* created on: 2007jan15
+* created by: Markus Scherer
+*
+* Idea for new common interface underneath the normal UnicodeSet
+* and other classes, such as "compiled", fast, read-only (immutable)
+* versions of UnicodeSet.
+*/
+
+class UnicodeContainable {
+public:
+ virtual ~UnicodeContainable() {}
+
+ virtual UBool contains(UChar32 c) const = 0;
+
+ virtual int32_t span(const UChar *s, int32_t length);
+
+ virtual int32_t spanNot(const UChar *s, int32_t length);
+
+ virtual int32_t spanUTF8(const UChar *s, int32_t length);
+
+ virtual int32_t spanNotUTF8(const UChar *s, int32_t length);
+
+ virtual UClassID getDynamicClassID(void) const;
+};
Property changes on: icu46/source/test/perf/unisetperf/draft/unicont.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « icu46/source/test/perf/unisetperf/draft/trieset.cpp ('k') | icu46/source/test/perf/unisetperf/unisetperf.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698