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

Side by Side Diff: source/common/resource.cpp

Issue 1621943002: ICU 56 step 4: Apply post-56 fixes for measure/date format (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@56goog
Patch Set: Created 4 years, 11 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 | « source/common/resource.h ('k') | source/common/simplepatternformatter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 *******************************************************************************
3 * Copyright (C) 2015, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 *******************************************************************************
6 * resource.cpp
7 *
8 * created on: 2015nov04
9 * created by: Markus W. Scherer
10 */
11
12 #include "resource.h"
13
14 #include "unicode/utypes.h"
15 #include "unicode/uobject.h"
16 #include "unicode/ures.h"
17
18 U_NAMESPACE_BEGIN
19
20 ResourceValue::~ResourceValue() {}
21
22
23 ResourceArraySink::~ResourceArraySink() {}
24
25 void ResourceArraySink::put(
26 int32_t /*index*/, const ResourceValue & /*value*/, UErrorCode & /*error Code*/) {}
27
28 ResourceArraySink *ResourceArraySink::getOrCreateArraySink(
29 int32_t /*index*/, int32_t /*size*/, UErrorCode & /*errorCode*/) {
30 return NULL;
31 }
32
33 ResourceTableSink *ResourceArraySink::getOrCreateTableSink(
34 int32_t /*index*/, int32_t /*initialSize*/, UErrorCode & /*errorCode*/) {
35 return NULL;
36 }
37
38 void ResourceArraySink::leave(UErrorCode & /*errorCode*/) {}
39
40
41 ResourceTableSink::~ResourceTableSink() {}
42
43 void ResourceTableSink::put(
44 const char * /*key*/, const ResourceValue & /*value*/, UErrorCode & /*er rorCode*/) {}
45
46 void ResourceTableSink::putNoFallback(const char * /*key*/, UErrorCode & /*error Code*/) {}
47
48 ResourceArraySink *ResourceTableSink::getOrCreateArraySink(
49 const char * /*key*/, int32_t /*size*/, UErrorCode & /*errorCode*/) {
50 return NULL;
51 }
52
53 ResourceTableSink *ResourceTableSink::getOrCreateTableSink(
54 const char * /*key*/, int32_t /*initialSize*/, UErrorCode & /*errorCode* /) {
55 return NULL;
56 }
57
58 void ResourceTableSink::leave(UErrorCode & /*errorCode*/) {}
59
60 U_NAMESPACE_END
OLDNEW
« no previous file with comments | « source/common/resource.h ('k') | source/common/simplepatternformatter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698