Searched refs:ordinal (Results 1 - 25 of 157) sorted by relevance

1234567

/external/libpng/scripts/
H A Dsymbols.c19 #define PNG_EXPORTA(ordinal, type, name, args, attributes)\
20 PNG_DFN "@" name "@ @@" ordinal "@"
21 #define PNG_REMOVED(ordinal, type, name, args, attributes)\
22 PNG_DFN "; @" name "@ @@" ordinal "@"
23 #define PNG_EXPORT_LAST_ORDINAL(ordinal)\
24 PNG_DFN "; @@" ordinal "@"
H A Dprefix.c12 #define PNG_EXPORTA(ordinal, type, name, args, attributes)\
H A Dsym.c12 #define PNG_EXPORTA(ordinal, type, name, args, attributes)\
H A Dvers.c12 #define PNG_EXPORTA(ordinal, type, name, args, attributes)\
H A Ddef.c26 #define PNG_EXPORTA(ordinal, type, name, args, attributes)\
/external/nist-sip/java/javax/sip/
H A DDialogState.java8 public static final int _EARLY = EARLY.ordinal();
9 public static final int _CONFIRMED = CONFIRMED.ordinal();
10 public static final int _TERMINATED = TERMINATED.ordinal();
22 return ordinal();
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
H A DTimeUnit.java20 /** The ordinal of the unit, in order from largest to smallest. */
21 final byte ordinal; field in class:TimeUnit
24 private TimeUnit(String name, int ordinal) { argument
26 this.ordinal = (byte) ordinal;
59 return ordinal == 0 ? null : units[ordinal - 1];
64 return ordinal == units.length - 1 ? null : units[ordinal + 1];
72 /** Returns the ordinal valu
73 public int ordinal() { method in class:TimeUnit
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DTimeUnit.java18 /** The ordinal of the unit, in order from largest to smallest. */
19 final byte ordinal; field in class:TimeUnit
22 private TimeUnit(String name, int ordinal) { argument
24 this.ordinal = (byte) ordinal;
57 return ordinal == 0 ? null : units[ordinal - 1];
62 return ordinal == units.length - 1 ? null : units[ordinal + 1];
70 /** Returns the ordinal valu
71 public int ordinal() { method in class:TimeUnit
[all...]
/external/jetty/src/java/org/eclipse/jetty/io/
H A DBufferCache.java43 public CachedBuffer add(String value, int ordinal) argument
45 CachedBuffer buffer= new CachedBuffer(value, ordinal);
48 while ((ordinal - _index.size()) >= 0)
50 if (_index.get(ordinal)==null)
51 _index.add(ordinal, buffer);
55 public CachedBuffer get(int ordinal) argument
57 if (ordinal < 0 || ordinal >= _index.size())
59 return (CachedBuffer)_index.get(ordinal);
132 public CachedBuffer(String value, int ordinal) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DPluralRanges.java62 data[start.ordinal() * StandardPlural.COUNT + end.ordinal()] = result == null ? (byte) -1
63 : (byte) result.ordinal();
71 byte old = data[start.ordinal() * StandardPlural.COUNT + end.ordinal()];
76 data[start.ordinal() * StandardPlural.COUNT + end.ordinal()] = result == null ? (byte) -1
77 : (byte) result.ordinal();
84 byte result = data[start.ordinal() * StandardPlural.COUNT + end.ordinal()];
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DPluralRanges.java60 data[start.ordinal() * StandardPlural.COUNT + end.ordinal()] = result == null ? (byte) -1
61 : (byte) result.ordinal();
69 byte old = data[start.ordinal() * StandardPlural.COUNT + end.ordinal()];
74 data[start.ordinal() * StandardPlural.COUNT + end.ordinal()] = result == null ? (byte) -1
75 : (byte) result.ordinal();
82 byte result = data[start.ordinal() * StandardPlural.COUNT + end.ordinal()];
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DCameraBiasComponent.java21 setPhase(GameComponent.ComponentPhases.THINK.ordinal());
H A DEnemyAnimationComponent.java50 setPhase(ComponentPhases.ANIMATION.ordinal());
71 mSprite.playAnimation(EnemyAnimations.IDLE.ordinal());
87 mSprite.playAnimation(EnemyAnimations.MOVE.ordinal());
106 mSprite.playAnimation(EnemyAnimations.ATTACK.ordinal());
113 mSprite.playAnimation(EnemyAnimations.HIDDEN.ordinal());
123 mSprite.playAnimation(EnemyAnimations.APPEAR.ordinal());
H A DFixedAnimationComponent.java24 setPhase(ComponentPhases.ANIMATION.ordinal());
H A DAnimationComponent.java80 setPhase(ComponentPhases.ANIMATION.ordinal());
218 mSprite.playAnimation(PlayerAnimations.IDLE.ordinal());
220 mSprite.playAnimation(PlayerAnimations.MOVE_FAST.ordinal());
222 mSprite.playAnimation(PlayerAnimations.MOVE.ordinal());
241 mSprite.playAnimation(PlayerAnimations.BOOST_UP.ordinal());
243 mSprite.playAnimation(PlayerAnimations.BOOST_MOVE_FAST.ordinal());
245 mSprite.playAnimation(PlayerAnimations.BOOST_MOVE.ordinal());
250 mSprite.playAnimation(PlayerAnimations.IDLE.ordinal());
252 mSprite.playAnimation(PlayerAnimations.MOVE_FAST.ordinal());
254 mSprite.playAnimation(PlayerAnimations.MOVE.ordinal());
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
H A DPeriodBuilderFactoryTest.java45 Period p = b.create((long)(approxDurations[unit.ordinal()]*2.5));
53 Period p = b.create((long)(approxDurations[unit.ordinal()]*2.5));
54 assertEquals(null, p.isSet(unit), unit.ordinal() >= MONTH.ordinal() && unit.ordinal() <= MINUTE.ordinal());
60 if (unit.ordinal() >= MONTH.ordinal() && unit.ordinal() <= MINUTE.ordinal()) {
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/
H A DPeriodBuilderFactoryTest.java41 Period p = b.create((long)(approxDurations[unit.ordinal()]*2.5));
49 Period p = b.create((long)(approxDurations[unit.ordinal()]*2.5));
50 assertEquals(null, p.isSet(unit), unit.ordinal() >= MONTH.ordinal() && unit.ordinal() <= MINUTE.ordinal());
56 if (unit.ordinal() >= MONTH.ordinal() && unit.ordinal() <= MINUTE.ordinal()) {
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DStandardPlural.java28 * Numeric index of OTHER, same as OTHER.ordinal().
30 public static final int OTHER_INDEX = OTHER.ordinal();
119 return p != null ? p.ordinal() : -1;
128 return p != null ? p.ordinal() : OTHER.ordinal();
139 return p.ordinal();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DStandardPlural.java26 * Numeric index of OTHER, same as OTHER.ordinal().
28 public static final int OTHER_INDEX = OTHER.ordinal();
117 return p != null ? p.ordinal() : -1;
126 return p != null ? p.ordinal() : OTHER.ordinal();
137 return p.ordinal();
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DPluralRulesFactory.java30 public PluralRules forLocale(ULocale locale, PluralType ordinal) { argument
31 return PluralRules.forLocale(locale, ordinal);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DPluralRulesFactory.java29 public PluralRules forLocale(ULocale locale, PluralType ordinal) { argument
30 return PluralRules.forLocale(locale, ordinal);
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DCallSessionFileRotatingLogSink.java43 nativeSink = nativeAddSink(dirPath, maxFileSize, severity.ordinal());
/external/libpng/
H A Dpngconf.h294 /* The ordinal value is only relevant when preprocessing png.h for symbol
300 # define PNG_EXPORTA(ordinal, type, name, args, attributes) \
310 #define PNG_EXPORT(ordinal, type, name, args) \
311 PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY)
315 # define PNG_REMOVED(ordinal, type, name, args, attributes)
450 # define PNG_FP_EXPORT(ordinal, type, name, args)\
451 PNG_EXPORT(ordinal, type, name, args);
453 # define PNG_FP_EXPORT(ordinal, type, name, args)
458 # define PNG_FIXED_EXPORT(ordinal, type, name, args)\
459 PNG_EXPORT(ordinal, typ
[all...]
/external/opencv3/3rdparty/libpng/
H A Dpngconf.h293 /* The ordinal value is only relevant when preprocessing png.h for symbol
299 # define PNG_EXPORTA(ordinal, type, name, args, attributes)\
309 #define PNG_EXPORT(ordinal, type, name, args)\
310 PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY)
314 # define PNG_REMOVED(ordinal, type, name, args, attributes)
402 # define PNG_FP_EXPORT(ordinal, type, name, args)\
403 PNG_EXPORT(ordinal, type, name, args)
405 # define PNG_FP_EXPORT(ordinal, type, name, args)
410 # define PNG_FIXED_EXPORT(ordinal, type, name, args)\
411 PNG_EXPORT(ordinal, typ
[all...]
/external/pdfium/third_party/lpng_v163/
H A Dpngconf.h316 /* The ordinal value is only relevant when preprocessing png.h for symbol
322 # define PNG_EXPORTA(ordinal, type, name, args, attributes)\
332 #define PNG_EXPORT(ordinal, type, name, args)\
333 PNG_EXPORTA(ordinal, type, name, args, PNG_EMPTY)
337 # define PNG_REMOVED(ordinal, type, name, args, attributes)
445 # define PNG_FP_EXPORT(ordinal, type, name, args)\
446 PNG_EXPORT(ordinal, type, name, args);
448 # define PNG_FP_EXPORT(ordinal, type, name, args)
453 # define PNG_FIXED_EXPORT(ordinal, type, name, args)\
454 PNG_EXPORT(ordinal, typ
[all...]

Completed in 661 milliseconds

1234567