Searched defs:second (Results 101 - 125 of 339) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/base/
H A DConverter.java301 final Converter<B, C> second; field in class:Converter.ConverterComposition
303 ConverterComposition(Converter<A, B> first, Converter<B, C> second) { argument
305 this.second = second;
328 return second.correctedDoForward(first.correctedDoForward(a));
334 return first.correctedDoBackward(second.correctedDoBackward(c));
342 && this.second.equals(that.second);
349 return 31 * first.hashCode() + second.hashCode();
354 return first + ".andThen(" + second
[all...]
H A DPredicates.java130 Predicate<? super T> second) {
132 checkNotNull(first), checkNotNull(second)));
169 Predicate<? super T> first, Predicate<? super T> second) {
171 checkNotNull(first), checkNotNull(second)));
636 Predicate<? super T> first, Predicate<? super T> second) {
638 return Arrays.<Predicate<? super T>>asList(first, second);
129 and(Predicate<? super T> first, Predicate<? super T> second) argument
168 or( Predicate<? super T> first, Predicate<? super T> second) argument
635 asList( Predicate<? super T> first, Predicate<? super T> second) argument
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DPredicates.java127 Predicate<? super T> second) {
129 checkNotNull(first), checkNotNull(second)));
166 Predicate<? super T> first, Predicate<? super T> second) {
168 checkNotNull(first), checkNotNull(second)));
454 Predicate<? super T> first, Predicate<? super T> second) {
456 return Arrays.<Predicate<? super T>>asList(first, second);
126 and(Predicate<? super T> first, Predicate<? super T> second) argument
165 or( Predicate<? super T> first, Predicate<? super T> second) argument
453 asList( Predicate<? super T> first, Predicate<? super T> second) argument
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DNorm2AllModes.java50 public StringBuilder normalizeSecondAndAppend(StringBuilder first, CharSequence second) { argument
51 if(first!=second) {
52 return first.append(second);
58 public StringBuilder append(StringBuilder first, CharSequence second) { argument
59 if(first!=second) {
60 return first.append(second);
116 public StringBuilder normalizeSecondAndAppend(StringBuilder first, CharSequence second) { argument
117 return normalizeSecondAndAppend(first, second, true);
120 public StringBuilder append(StringBuilder first, CharSequence second) { argument
121 return normalizeSecondAndAppend(first, second, fals
123 normalizeSecondAndAppend( StringBuilder first, CharSequence second, boolean doNormalize) argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationFastLatinBuilder.java628 private int encodeTwoCEs(long first, long second) { argument
647 if(second == 0) { return miniCE; }
649 int miniCE1 = getMiniCE(second);
652 int case1 = (int)second & Collation.CASE_MASK;
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DEthiopicCalendar.java233 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
236 int minute, int second)
238 super(year, month, date, hour, minute, second);
235 EthiopicCalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DGregorianCalendar.java439 * @param second the value used to set the SECOND time field
444 int minute, int second) {
452 set(SECOND, second);
443 GregorianCalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DHebrewCalendar.java377 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
381 int minute, int second)
389 this.set(SECOND, second);
380 HebrewCalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DIndianCalendar.java257 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
261 int minute, int second)
269 this.set(Calendar.SECOND, second);
260 IndianCalendar(int year, int month, int date, int hour, int minute, int second) argument
/external/icu/icu4c/source/common/
H A Dlistformatter.cpp254 * Joins first and second using the pattern pat.
256 * On exit offset is offset of second in result if recordOffset was set
258 * to point into first. On exit, result is the join of first and second
264 const UnicodeString& second,
272 const UnicodeString *params[2] = {&first, &second};
261 joinStringsAndReplace( const SimpleFormatter& pat, const UnicodeString& first, const UnicodeString& second, UnicodeString &result, UBool recordOffset, int32_t &offset, UErrorCode& errorCode) argument
H A Dnorm2allmodes.h64 const UnicodeString &second,
66 return normalizeSecondAndAppend(first, second, TRUE, errorCode);
70 const UnicodeString &second,
72 return normalizeSecondAndAppend(first, second, FALSE, errorCode);
76 const UnicodeString &second,
83 const UChar *secondArray=second.getBuffer();
84 if(&first==&second || secondArray==NULL) {
92 if(buffer.init(firstLength+second.length(), errorCode)) {
93 normalizeAndAppend(secondArray, secondArray+second.length(), doNormalize,
63 normalizeSecondAndAppend(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
69 append(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
75 normalizeSecondAndAppend(UnicodeString &first, const UnicodeString &second, UBool doNormalize, UErrorCode &errorCode) const argument
/external/icu/icu4c/source/test/cintltst/
H A Dutf16tst.c76 log_err("ERROR: %x is a second surrogate\n", c);
780 UChar second = UTF_SECOND_SURROGATE(s[i]); local
789 if (second != UTF16_TRAIL(s[i]) || second != U16_TRAIL(s[i]) || second != secondresult) {
790 log_err("Failure in second surrogate in 0x%x expected to be 0x%x\n",
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationFastLatinBuilder.java627 private int encodeTwoCEs(long first, long second) { argument
646 if(second == 0) { return miniCE; }
648 int miniCE1 = getMiniCE(second);
651 int case1 = (int)second & Collation.CASE_MASK;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DNorm2AllModes.java46 public StringBuilder normalizeSecondAndAppend(StringBuilder first, CharSequence second) { argument
47 if(first!=second) {
48 return first.append(second);
54 public StringBuilder append(StringBuilder first, CharSequence second) { argument
55 if(first!=second) {
56 return first.append(second);
112 public StringBuilder normalizeSecondAndAppend(StringBuilder first, CharSequence second) { argument
113 return normalizeSecondAndAppend(first, second, true);
116 public StringBuilder append(StringBuilder first, CharSequence second) { argument
117 return normalizeSecondAndAppend(first, second, fals
119 normalizeSecondAndAppend( StringBuilder first, CharSequence second, boolean doNormalize) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DEthiopicCalendar.java254 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
258 int minute, int second)
260 super(year, month, date, hour, minute, second);
257 EthiopicCalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DGregorianCalendar.java452 * @param second the value used to set the SECOND time field
458 int minute, int second) {
466 set(SECOND, second);
457 GregorianCalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DHebrewCalendar.java398 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
403 int minute, int second)
411 this.set(SECOND, second);
402 HebrewCalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DIndianCalendar.java279 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
284 int minute, int second)
292 this.set(Calendar.SECOND, second);
283 IndianCalendar(int year, int month, int date, int hour, int minute, int second) argument
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timezone/
H A DICUZDump.java167 public long getTime(int year, int month, int dayOfMonth, int hour, int minute, int second) { argument
173 cal.set(year, month, dayOfMonth, hour, minute, second);
179 cal.set(year, month, dayOfMonth, hour, minute, second);
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DEscapingEvaluator.java201 private JavaExpression or(JavaExpression first, JavaExpression second) { argument
204 second);
212 return second;
215 if (second instanceof BooleanLiteralExpression) {
216 BooleanLiteralExpression expr = (BooleanLiteralExpression) second;
223 return JavaExpression.infix(JavaExpression.Type.BOOLEAN, "||", first, second);
/external/libvpx/libvpx/vpx_dsp/arm/
H A Dhighbd_idct32x32_1024_add_neon.c20 const int first, const int second,
25 q1->val[0] = vld1q_s32(trans_buf + second * 8);
26 q1->val[1] = vld1q_s32(trans_buf + second * 8 + 4);
30 const int second, int32x4x2_t *const q0,
34 q1->val[0] = vld1q_s32(out + second * 32);
35 q1->val[1] = vld1q_s32(out + second * 32 + 4);
39 const int second, const int32x4x2_t q0,
43 vst1q_s32(out + second * 32, q1.val[0]);
44 vst1q_s32(out + second * 32 + 4, q1.val[1]);
19 load_from_transformed(const int32_t *const trans_buf, const int first, const int second, int32x4x2_t *const q0, int32x4x2_t *const q1) argument
29 load_from_output(const int32_t *const out, const int first, const int second, int32x4x2_t *const q0, int32x4x2_t *const q1) argument
38 store_in_output(int32_t *const out, const int first, const int second, const int32x4x2_t q0, const int32x4x2_t q1) argument
/external/mesa3d/src/glx/tests/
H A Dcreate_context_unittest.cpp288 /* Use zeros in the second half of each attribute pair to try and trick the
291 * Use non-zero in the second half of the last attribute pair to try and
390 GLXContext second = local
394 ASSERT_NE((GLXContext) 0, second);
397 struct glx_context *ctx = (struct glx_context *) second;
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPDate.java124 /** second member
126 protected int second; field in class:SIPDate
145 this.second == other.second;
158 second = -1;
248 second = javaCal.get(Calendar.SECOND);
276 if (second < 10) {
277 secondString = "0" + second;
279 secondString = "" + second;
343 /** get the second
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DUtil.java234 * {@code second}. The returned elements are in the same order as in {@code first}.
237 public static <T> T[] intersect(Class<T> arrayType, T[] first, T[] second) { argument
238 List<T> result = intersect(first, second);
244 * {@code second}. The returned elements are in the same order as in {@code first}.
246 private static <T> List<T> intersect(T[] first, T[] second) { argument
249 for (T b : second) {
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttp2xStream.java195 private static String joinOnNull(String first, String second) { argument
196 return new StringBuilder(first).append('\0').append(second).toString();

Completed in 618 milliseconds

1234567891011>>