~alinuxninja/nginx-edge/trunk

« back to all changes in this revision

Viewing changes to debian/modules/ngx_pagespeed/psol/include/third_party/icu/source/layout/CanonShaping.h

  • Committer: Vivian
  • Date: 2015-12-04 18:20:11 UTC
  • Revision ID: git-v1:a36f2bc32e884f7473b3a47040e5411306144d7d
* Do not extract psol.tar.gz

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *
3
 
 * (C) Copyright IBM Corp. 1998-2006 - All Rights Reserved
4
 
 *
5
 
 */
6
 
 
7
 
#ifndef __CANONSHAPING_H
8
 
#define __CANONSHAPING_H
9
 
 
10
 
#include "LETypes.h"
11
 
 
12
 
U_NAMESPACE_BEGIN
13
 
 
14
 
class LEGlyphStorage;
15
 
 
16
 
class U_LAYOUT_API CanonShaping /* not : public UObject because all members are static */
17
 
{
18
 
public:
19
 
    static const le_uint8 glyphSubstitutionTable[];
20
 
    static const le_uint8 glyphDefinitionTable[];
21
 
 
22
 
    static void reorderMarks(const LEUnicode *inChars, le_int32 charCount, le_bool rightToLeft,
23
 
                                   LEUnicode *outChars, LEGlyphStorage &glyphStorage);
24
 
 
25
 
private:
26
 
    static void sortMarks(le_int32 *indices, const le_int32 *combiningClasses, le_int32 index, le_int32 limit);
27
 
};
28
 
 
29
 
U_NAMESPACE_END
30
 
#endif