OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:caltype
(Results
1 - 16
of
16
) sorted by null
/hardware/invensense/60xx/libsensors_iio/software/core/mllite/linux/
ml_stored_data.c
195
int
calType
= 0;
217
calType
= ((int)calData[4]) * 256 + ((int)calData[5]);
218
if (
calType
> 5) {
220
"Valid types 0..5\n",
calType
);
225
//return loaders[
calType
] (calData, len);
/hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
ml_stored_data.c
199
int
calType
= 0;
221
calType
= ((int)calData[4]) * 256 + ((int)calData[5]);
222
if (
calType
> 5) {
224
"Valid types 0..5\n",
calType
);
229
//return loaders[
calType
] (calData, len);
/external/chromium_org/third_party/icu/source/test/intltest/
callimts.cpp
195
const char*
calType
= cal.getType();
217
errln((UnicodeString)"FAIL: [" +
calType
+ "] Maximum value of DAY_OF_YEAR is too big: "
222
errln((UnicodeString)"FAIL: [" +
calType
+ "] Least maximum value of DAY_OF_YEAR is too small: "
230
errln((UnicodeString)"FAIL: [" +
calType
+ "] Maximum value of WEEK_OF_YEAR is too big: "
235
errln((UnicodeString)"FAIL: [" +
calType
+ "] Least maximum value of WEEK_OF_YEAR is too small: "
242
errln((UnicodeString)"FAIL: [" +
calType
+ "] Maximum value of DAY_OF_WEEK_IN_MONTH is incorrect: "
247
errln((UnicodeString)"FAIL: [" +
calType
+ "] Least maximum value of DAY_OF_WEEK_IN_MONTH is incorrect: "
254
errln((UnicodeString)"FAIL: [" +
calType
+ "] Maximum value of WEEK_OF_MONTH is incorrect: "
259
errln((UnicodeString)"FAIL: [" +
calType
+ "] Least maximum value of WEEK_OF_MONTH is incorrect: "
windttst.cpp
114
int32_t
calType
= 0;
123
GetLocaleInfoW(lcidRecords[i].lcid, LOCALE_RETURN_NUMBER|LOCALE_ICALENDARTYPE, (LPWSTR)
calType
, sizeof(int32_t));
128
uprv_strcat(localeID, getCalendarType(
calType
));
/external/icu4c/test/intltest/
callimts.cpp
196
const char*
calType
= cal.getType();
218
errln((UnicodeString)"FAIL: [" +
calType
+ "] Maximum value of DAY_OF_YEAR is too big: "
223
errln((UnicodeString)"FAIL: [" +
calType
+ "] Least maximum value of DAY_OF_YEAR is too small: "
231
errln((UnicodeString)"FAIL: [" +
calType
+ "] Maximum value of WEEK_OF_YEAR is too big: "
236
errln((UnicodeString)"FAIL: [" +
calType
+ "] Least maximum value of WEEK_OF_YEAR is too small: "
243
errln((UnicodeString)"FAIL: [" +
calType
+ "] Maximum value of DAY_OF_WEEK_IN_MONTH is incorrect: "
248
errln((UnicodeString)"FAIL: [" +
calType
+ "] Least maximum value of DAY_OF_WEEK_IN_MONTH is incorrect: "
255
errln((UnicodeString)"FAIL: [" +
calType
+ "] Maximum value of WEEK_OF_MONTH is incorrect: "
260
errln((UnicodeString)"FAIL: [" +
calType
+ "] Least maximum value of WEEK_OF_MONTH is incorrect: "
windttst.cpp
114
int32_t
calType
= 0;
123
GetLocaleInfoW(lcidRecords[i].lcid, LOCALE_RETURN_NUMBER|LOCALE_ICALENDARTYPE, (LPWSTR)
calType
, sizeof(int32_t));
128
uprv_strcat(localeID, getCalendarType(
calType
));
/external/chromium_org/third_party/icu/source/i18n/
ucal.cpp
126
UCalendarType
caltype
,
139
if (
caltype
== UCAL_GREGORIAN ) {
635
char *
caltype
= (char*)uprv_malloc(len + 1);
local
636
if (
caltype
== NULL) {
640
u_UCharsToChars(type,
caltype
, len);
641
*(
caltype
+ len) = 0;
643
ulist_addItemEndList(values,
caltype
, TRUE, status);
calendar.cpp
191
ECalType
calType
= getCalendarType(keyword);
192
return (
calType
!= CALTYPE_UNKNOWN);
211
ECalType
calType
= CALTYPE_UNKNOWN;
230
calType
= getCalendarType(calTypeBuf);
231
if (
calType
!= CALTYPE_UNKNOWN) {
232
return
calType
;
270
calType
= getCalendarType(calTypeBuf);
277
if (
calType
== CALTYPE_UNKNOWN) {
279
calType
= CALTYPE_GREGORIAN;
281
return
calType
;
[
all
...]
/external/icu4c/i18n/
ucal.cpp
134
UCalendarType
caltype
,
147
if (
caltype
== UCAL_GREGORIAN ) {
694
char *
caltype
= (char*)uprv_malloc(len + 1);
local
695
if (
caltype
== NULL) {
699
u_UCharsToChars(type,
caltype
, len);
700
*(
caltype
+ len) = 0;
702
ulist_addItemEndList(values,
caltype
, TRUE, status);
calendar.cpp
207
ECalType
calType
= getCalendarType(keyword);
208
return (
calType
!= CALTYPE_UNKNOWN);
227
ECalType
calType
= CALTYPE_UNKNOWN;
246
calType
= getCalendarType(calTypeBuf);
247
if (
calType
!= CALTYPE_UNKNOWN) {
248
return
calType
;
285
calType
= getCalendarType(calTypeBuf);
292
if (
calType
== CALTYPE_UNKNOWN) {
294
calType
= CALTYPE_GREGORIAN;
296
return
calType
;
[
all
...]
/external/icu4c/test/cintltst/
ccaltst.c
72
UCalendarType
calType
;
456
caldef = ucal_open(NULL, 0, ucalGetTypeTestPtr->locale, ucalGetTypeTestPtr->
calType
, &status);
458
const char *
calType
= ucal_getType(caldef, &status);
459
if ( U_SUCCESS(status) &&
calType
!= NULL ) {
460
if ( uprv_strcmp(
calType
, ucalGetTypeTestPtr->expectedResult ) != 0 ) {
462
ucalGetTypeTestPtr->
calType
, ucalGetTypeTestPtr->expectedResult);
465
log_err("FAIL: ucal_open %s type %d, then ucal_getType fails\n", localeToDisplay, ucalGetTypeTestPtr->
calType
);
469
log_err("FAIL: ucal_open %s type %d fails\n", localeToDisplay, ucalGetTypeTestPtr->
calType
);
[
all
...]
/external/chromium_org/third_party/icu/source/test/cintltst/
ccaltst.c
65
UCalendarType
calType
;
425
caldef = ucal_open(NULL, 0, ucalGetTypeTestPtr->locale, ucalGetTypeTestPtr->
calType
, &status);
427
const char *
calType
= ucal_getType(caldef, &status);
428
if ( U_SUCCESS(status) &&
calType
!= NULL ) {
429
if ( strcmp(
calType
, ucalGetTypeTestPtr->expectedResult ) != 0 ) {
431
ucalGetTypeTestPtr->
calType
, ucalGetTypeTestPtr->expectedResult);
434
log_err("FAIL: ucal_open %s type %d, then ucal_getType fails\n", localeToDisplay, ucalGetTypeTestPtr->
calType
);
438
log_err("FAIL: ucal_open %s type %d fails\n", localeToDisplay, ucalGetTypeTestPtr->
calType
);
[
all
...]
/hardware/invensense/60xx/mlsdk/mllite/
ml_stored_data.c
[
all
...]
/external/icu4c/i18n/unicode/
calendar.h
[
all
...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar
/prebuilts/misc/common/icu4j/
icu4j.jar
Completed in 1348 milliseconds