Searched defs:second (Results 51 - 75 of 339) sorted by relevance

1234567891011>>

/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DTaiwanCalendar.java170 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
174 int minute, int second)
176 super(year, month, date, hour, minute, second);
173 TaiwanCalendar(int year, int month, int date, int hour, int minute, int second) argument
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
H A DNormalizerData.java45 * @param second second character (e.g. \u0327 cedilla)
48 public int getPairwiseComposition(int first, int second) { argument
49 return compose.get(((long)first << 32) | second);
113 * It holds either a pair: top = first, bottom = second
/external/ltp/testcases/kernel/syscalls/fork/
H A Dfork13.c69 static int pid_distance(pid_t first, pid_t second);
150 expected to be smaller than the second. */
151 static int pid_distance(pid_t first, pid_t second) argument
153 return (second + PID_MAX - first) % PID_MAX;
/external/mockito/src/main/java/org/mockito/
H A DAdditionalMatchers.java608 * @param second
609 * placeholder for the second argument matcher.
612 public static boolean and(boolean first, boolean second) { argument
624 * @param second
625 * placeholder for the second argument matcher.
628 public static byte and(byte first, byte second) { argument
640 * @param second
641 * placeholder for the second argument matcher.
644 public static char and(char first, char second) { argument
656 * @param second
660 and(double first, double second) argument
676 and(float first, float second) argument
692 and(int first, int second) argument
708 and(long first, long second) argument
724 and(short first, short second) argument
742 and(T first, T second) argument
758 or(boolean first, boolean second) argument
776 or(T first, T second) argument
792 or(short first, short second) argument
808 or(long first, long second) argument
824 or(int first, int second) argument
840 or(float first, float second) argument
856 or(double first, double second) argument
872 or(char first, char second) argument
888 or(byte first, byte second) argument
[all...]
/external/v8/src/
H A Ddateparser.cc74 int& second = comp_[2]; local
84 !IsSecond(second) || !IsMillisecond(millisecond)) {
86 if (hour != 24 || minute != 0 || second != 0 || millisecond != 0) {
93 output->set(SECOND, Smi::FromInt(second));
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPDateTimeFactory.java60 * @param second seconds
65 int hour, int minute, int second, int nanoSecond)
73 dt.setSecond(second);
64 create(int year, int month, int day, int hour, int minute, int second, int nanoSecond) argument
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DCheck.cs88 public static void FirstAndSecond (object first, object second) argument
92 if (second == null)
93 throw new ArgumentNullException ("second");
/external/autotest/frontend/client/src/autotest/tko/
H A DTkoUtils.java73 static String joinWithParens(String joiner, String first, String second) { argument
75 second = wrapWithParens(second);
76 return Utils.joinStrings(joiner, Arrays.asList(new String[] {first, second}));
/external/clang/test/Index/
H A Dindex-templates.cpp78 U second; member in struct:Pair
/external/droiddriver/src/io/appium/droiddriver/finders/
H A DPredicates.java77 final Predicate<? super T> second) {
79 return (Predicate<T>) second;
81 if (second == null || second == ANY) {
88 return first.apply(input) && second.apply(input);
93 return "allOf(" + first + ", " + second + ")";
76 allOf(final Predicate<? super T> first, final Predicate<? super T> second) argument
/external/google-breakpad/src/client/
H A Dminidump_file_writer_unittest.cc82 const wchar_t *second = L"Second String"; local
83 ASSERT_TRUE(writer.WriteString(second, 0, &strings.get()->second_string));
/external/guava/guava/src/com/google/common/base/
H A DJoiner.java129 A appendable, @Nullable Object first, @Nullable Object second, Object... rest)
131 return appendTo(appendable, iterable(first, second, rest));
174 StringBuilder builder, @Nullable Object first, @Nullable Object second, Object... rest) {
175 return appendTo(builder, iterable(first, second, rest));
208 public final String join(@Nullable Object first, @Nullable Object second, Object... rest) { argument
209 return join(iterable(first, second, rest));
438 final Object first, final Object second, final Object[] rest) {
450 return second;
128 appendTo( A appendable, @Nullable Object first, @Nullable Object second, Object... rest) argument
173 appendTo( StringBuilder builder, @Nullable Object first, @Nullable Object second, Object... rest) argument
437 iterable( final Object first, final Object second, final Object[] rest) argument
H A DObjects.java171 * {@linkplain Optional#or(Object) first.or(second)}.
176 * {@code second} if {@code first} is {@code null} and {@code second} is
178 * @throws NullPointerException if both {@code first} and {@code second} were
185 public static <T> T firstNonNull(@Nullable T first, @Nullable T second) { argument
186 return MoreObjects.firstNonNull(first, second);
/external/guava/guava/src/com/google/common/collect/
H A DObjectArrays.java68 * @param second the second array of elements to concatenate
72 public static <T> T[] concat(T[] first, T[] second, Class<T> type) { argument
73 T[] result = newArray(type, first.length + second.length);
75 System.arraycopy(second, 0, result, first.length, second.length);
/external/guice/extensions/throwingproviders/test/com/google/inject/throwingproviders/
H A DCheckedProviderMethodsModuleTest.java188 B second; field in class:CheckedProviderMethodsModuleTest.Pair
192 this.second = b;
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-complex-arabic-table.hh373 uint16_t second; member in struct:ligature_set_t::ligature_pairs_t
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DFilteredNormalizer2.java70 StringBuilder first, CharSequence second) {
71 return normalizeSecondAndAppend(first, second, true);
77 public StringBuilder append(StringBuilder first, CharSequence second) { argument
78 return normalizeSecondAndAppend(first, second, false);
243 private StringBuilder normalizeSecondAndAppend(StringBuilder first, CharSequence second, argument
245 if(first==second) {
250 return normalize(second, first);
252 return first.append(second);
255 // merge the in-filter suffix of the first string with the in-filter prefix of the second
256 int prefixLimit=set.span(second,
69 normalizeSecondAndAppend( StringBuilder first, CharSequence second) argument
[all...]
H A DNormalizer2.java244 * Appends the normalized form of the second string to the first string
247 * The first and second strings must be different objects.
249 * @param second string, will be normalized
253 StringBuilder first, CharSequence second);
256 * Appends the second string to the first string
259 * The first and second strings must be different objects.
261 * @param second string, should be normalized
264 public abstract StringBuilder append(StringBuilder first, CharSequence second); argument
252 normalizeSecondAndAppend( StringBuilder first, CharSequence second) argument
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DCECalendar.java156 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
159 int minute, int second)
162 this.set(year, month, date, hour, minute, second);
158 CECalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DCopticCalendar.java207 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
210 int minute, int second) {
211 super(year, month, date, hour, minute, second);
209 CopticCalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DJapaneseCalendar.java189 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
192 int minute, int second)
194 super(year, month, date, hour, minute, second);
191 JapaneseCalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DPersianCalendar.java245 * @param second the value used to set the {@link #SECOND SECOND} time field
254 int minute, int second)
262 this.set(Calendar.SECOND, second);
253 PersianCalendar(int year, int month, int date, int hour, int minute, int second) argument
/external/icu/icu4c/source/common/
H A Dfilterednormalizer2.cpp90 const UnicodeString &second,
92 return normalizeSecondAndAppend(first, second, TRUE, errorCode);
97 const UnicodeString &second,
99 return normalizeSecondAndAppend(first, second, FALSE, errorCode);
104 const UnicodeString &second,
108 uprv_checkCanGetBuffer(second, errorCode);
112 if(&first==&second) {
118 return normalize(second, first, errorCode);
120 return first=second;
123 // merge the in-filter suffix of the first string with the in-filter prefix of the second
89 normalizeSecondAndAppend(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
96 append(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
103 normalizeSecondAndAppend(UnicodeString &first, const UnicodeString &second, UBool doNormalize, UErrorCode &errorCode) const argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DFilteredNormalizer2.java73 StringBuilder first, CharSequence second) {
74 return normalizeSecondAndAppend(first, second, true);
81 public StringBuilder append(StringBuilder first, CharSequence second) { argument
82 return normalizeSecondAndAppend(first, second, false);
257 private StringBuilder normalizeSecondAndAppend(StringBuilder first, CharSequence second, argument
259 if(first==second) {
264 return normalize(second, first);
266 return first.append(second);
269 // merge the in-filter suffix of the first string with the in-filter prefix of the second
270 int prefixLimit=set.span(second,
72 normalizeSecondAndAppend( StringBuilder first, CharSequence second) argument
[all...]
H A DNormalizer2.java258 * Appends the normalized form of the second string to the first string
261 * The first and second strings must be different objects.
263 * @param second string, will be normalized
268 StringBuilder first, CharSequence second);
271 * Appends the second string to the first string
274 * The first and second strings must be different objects.
276 * @param second string, should be normalized
280 public abstract StringBuilder append(StringBuilder first, CharSequence second); argument
267 normalizeSecondAndAppend( StringBuilder first, CharSequence second) argument

Completed in 2112 milliseconds

1234567891011>>