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

Side by Side Diff: xfa/fxbarcode/common/BC_CommonBitArray.h

Issue 1825953002: Move core/include/fxcrt to core/fxcrt/include. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 9 months 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 unified diff | Download patch
« no previous file with comments | « xfa/fxbarcode/cbc_upca.h ('k') | xfa/fxbarcode/common/BC_CommonBitMatrix.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef XFA_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_ 7 #ifndef XFA_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_
8 #define XFA_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_ 8 #define XFA_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_
9 9
10 #include "core/include/fxcrt/fx_basic.h" 10 #include "core/fxcrt/include/fx_basic.h"
11 11
12 class CBC_CommonBitArray { 12 class CBC_CommonBitArray {
13 public: 13 public:
14 CBC_CommonBitArray(CBC_CommonBitArray* array); 14 CBC_CommonBitArray(CBC_CommonBitArray* array);
15 CBC_CommonBitArray(int32_t size); 15 CBC_CommonBitArray(int32_t size);
16 CBC_CommonBitArray(); 16 CBC_CommonBitArray();
17 virtual ~CBC_CommonBitArray(); 17 virtual ~CBC_CommonBitArray();
18 int32_t GetSize(); 18 int32_t GetSize();
19 CFX_Int32Array& GetBits(); 19 CFX_Int32Array& GetBits();
20 int32_t GetSizeInBytes(); 20 int32_t GetSizeInBytes();
21 FX_BOOL Get(int32_t i); 21 FX_BOOL Get(int32_t i);
22 void Set(int32_t i); 22 void Set(int32_t i);
23 void Flip(int32_t i); 23 void Flip(int32_t i);
24 void SetBulk(int32_t i, int32_t newBits); 24 void SetBulk(int32_t i, int32_t newBits);
25 FX_BOOL IsRange(int32_t start, int32_t end, FX_BOOL value, int32_t& e); 25 FX_BOOL IsRange(int32_t start, int32_t end, FX_BOOL value, int32_t& e);
26 int32_t* GetBitArray(); 26 int32_t* GetBitArray();
27 void Reverse(); 27 void Reverse();
28 void Clear(); 28 void Clear();
29 29
30 private: 30 private:
31 int32_t m_size; 31 int32_t m_size;
32 CFX_Int32Array m_bits; 32 CFX_Int32Array m_bits;
33 }; 33 };
34 34
35 #endif // XFA_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_ 35 #endif // XFA_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_
OLDNEW
« no previous file with comments | « xfa/fxbarcode/cbc_upca.h ('k') | xfa/fxbarcode/common/BC_CommonBitMatrix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698