Searched defs:second (Results 1 - 25 of 340) sorted by path

1234567891011>>

/external/ImageMagick/Magick++/tests/
H A DreadWriteImages.cpp54 list<Image> second; local
55 readImages(&second,"testmagick_anim_out.miff");
58 list<Image>::iterator secondIter = second.begin();
59 while (firstIter != first.end() && secondIter != second.end())
/external/ImageMagick/coders/
H A Dfpx.c573 FPXColorTwistMatrix second,FPXColorTwistMatrix *color_twist)
579 color_twist->byy=(first.byy*second.byy)+(first.byc1*second.bc1y)+
580 (first.byc2*second.bc2y)+(first.dummy1_zero*second.dummy4_zero);
581 color_twist->byc1=(first.byy*second.byc1)+(first.byc1*second.bc1c1)+
582 (first.byc2*second.bc2c1)+(first.dummy1_zero*second.dummy5_zero);
583 color_twist->byc2=(first.byy*second
566 ColorTwistMultiply(FPXColorTwistMatrix first, FPXColorTwistMatrix second,FPXColorTwistMatrix *color_twist) argument
[all...]
H A Dpng.c1877 time->year,time->month,time->day,time->hour,time->minute,time->second);
7864 second,
7876 &second) != 6)
7888 ptime.second=(png_byte) second;
7854 second, local
/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/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DChromosomePair.java29 /** the second chromosome in the pair. */
30 private final Chromosome second; field in class:ChromosomePair
36 * @param c2 the second chromosome.
41 second = c2;
54 * Access the second chromosome.
56 * @return the second chromosome.
59 return second;
H A DCrossoverPolicy.java31 * @param second the second chromosome.
34 ChromosomePair crossover(Chromosome first, Chromosome second); argument
H A DOnePointCrossover.java26 * second parts are copied crosswise.
53 * second parts are copied crosswise.
66 * @param second second parent (p2)
70 public ChromosomePair crossover(Chromosome first, Chromosome second) { argument
71 if (! (first instanceof AbstractListChromosome<?> && second instanceof AbstractListChromosome<?>)) {
74 return crossover((AbstractListChromosome<T>) first, (AbstractListChromosome<T>) second);
82 * @param second the second chromosome.
85 private ChromosomePair crossover(AbstractListChromosome<T> first, AbstractListChromosome<T> second) { argument
[all...]
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDateTest.java100 int minute, int second) {
101 aCal.set(year, month, date, hour, minute, second);
99 getTime(int year, int month, int date, int hour, int minute, int second) argument
/external/apache-http/android/src/android/net/http/
H A DLegacyHttpDateTime.java77 this.second = s;
82 int second; field in class:LegacyHttpDateTime.TimeOfDay
119 time.set(timeOfDay.second, timeOfDay.minute, timeOfDay.hour, date,
220 int second = (timeString.charAt(i++) - '0') * 10
223 return new TimeOfDay(hour, minute, second);
/external/autotest/client/site_tests/power_LoadTest/extension/
H A Dtime.js21 second: 'numeric',
/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/bison/src/
H A Dsymtab.c151 location second)
154 complain_at_indent (second, &i, _("%s redeclaration for %s"), what, s->tag);
161 location second)
164 complain_at_indent (second, &i, _("%s redeclaration for <%s>"), what, s->tag);
520 user_token_number_redeclaration (int num, symbol *first, symbol *second) argument
524 second step, via a traversal of the symbol table sorted on tag.
528 if (location_cmp (first->location, second->location) > 0)
531 first = second;
532 second = tmp;
534 complain_at_indent (second
150 symbol_redeclaration(symbol *s, const char *what, location first, location second) argument
160 semantic_type_redeclaration(semantic_type *s, const char *what, location first, location second) argument
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/util/
H A DParsers.java108 private static <T> T firstNonNull(T first, T second) { argument
109 return (first != null) ? first : second;
/external/caliper/lib/
H A Dgson-2.2.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/stream/ ...
/external/clang/lib/CodeGen/
H A DSwiftCallingConv.cpp32 static llvm::Type *getCommonType(llvm::Type *first, llvm::Type *second) { argument
33 assert(first != second);
37 if (second->isPointerTy()) return first;
39 if (second->isIntegerTy()) return second;
40 if (second->isPointerTy()) return first;
45 if (auto secondVecTy = dyn_cast<llvm::VectorType>(second)) {
48 return (commonTy == firstVecTy->getElementType() ? first : second);
237 auto numElts = split.second;
386 auto numElts = split.second;
408 areBytesInSameUnit(CharUnits first, CharUnits second, CharUnits chunkSize) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DSimpleSValBuilder.cpp495 const llvm::APSInt &second = IntType.convert(*RHSValue); local
499 newRHS = BasicVals.evalAPSInt(BO_Add, first, second);
501 newRHS = BasicVals.evalAPSInt(BO_Sub, first, second);
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h17 T2 second; member in struct:std::pair
19 pair() : first(), second() {}
20 pair(const T1 &a, const T2 &b) : first(a), second(b) {}
23 pair(const pair<U1, U2> &other) : first(other.first), second(other.second) {}
/external/clang/test/CXX/drs/
H A Ddr15xx.cpp80 template < class _T1, class _T2 > struct pair { _T2 second; }; member in struct:std::pair
/external/clang/test/CodeGenCXX/
H A Dconstructor-init.cpp185 X second[4]; member in struct:PR10720::pair2
231 int second[4]; member in struct:PR10720::pair
H A Dcxx0x-initializer-stdinitializerlist.cpp422 // destroy the second B then the second A then the first B then the first A.
489 T2 second; member in struct:B19773010::pair
490 constexpr pair() : first(), second() {}
491 constexpr pair(T1 a, T2 b) : first(a), second(b) {}
H A Dmangle-ms-templates.cpp244 int second; member in struct:record
H A Dpr18635.cpp12 S second; member in struct:unique_ptr::pair
H A Dthunks.cpp149 X second; member in struct:Test6::P
/external/clang/test/Index/
H A Dindex-templates.cpp78 U second; member in struct:Pair
H A Drecursive-cxx-member-calls.cpp4 template < class _T1, class _T2 > struct pair { _T2 second; }; member in struct:std::pair
70 return ((const actualtype *) this)->second;
74 const char *p = ((const actualtype *) this)->second - 2;
214 // CHECK-tokens: Identifier: "second" [4:55 - 4:61] FieldDecl=second:4:55 (Definition)
703 // CHECK-tokens: Punctuation: "->" [70:39 - 70:41] MemberRefExpr=second:4:55
704 // CHECK-tokens: Identifier: "second" [70:41 - 70:47] MemberRefExpr=second:4:55
739 // CHECK-tokens: Punctuation: "->" [74:48 - 74:50] MemberRefExpr=second:4:55
740 // CHECK-tokens: Identifier: "second" [7
[all...]

Completed in 4735 milliseconds

1234567891011>>