Searched defs:second (Results 1 - 25 of 339) sorted by relevance

1234567891011>>

/external/curl/lib/
H A Dstrequal.c34 int curl_strequal(const char *first, const char *second) argument
37 return !(strcasecmp)(first, second);
39 return !(strcmpi)(first, second);
41 return !(stricmp)(first, second);
43 while(*first && *second) {
44 if(toupper(*first) != toupper(*second)) {
48 second++;
50 return toupper(*first) == toupper(*second);
57 int curl_strnequal(const char *first, const char *second, size_t max) argument
60 return !strncasecmp(first, second, ma
[all...]
H A Drawstr.c104 int Curl_raw_equal(const char *first, const char *second) argument
106 while(*first && *second) {
107 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second))
111 second++;
116 return (Curl_raw_toupper(*first) == Curl_raw_toupper(*second));
119 int Curl_raw_nequal(const char *first, const char *second, size_t max) argument
121 while(*first && *second && max) {
122 if(Curl_raw_toupper(*first) != Curl_raw_toupper(*second)) {
127 second++;
132 return Curl_raw_toupper(*first) == Curl_raw_toupper(*second);
[all...]
/external/testng/src/test/java/test/priority/
H A DWithPrioritySample2Test.java13 public void second() { method in class:WithPrioritySample2Test
14 add("second");
H A DWithPrioritySampleTest.java13 public void second() { method in class:WithPrioritySampleTest
14 add("second");
H A DWithoutPrioritySampleTest.java13 public void second() { method in class:WithoutPrioritySampleTest
14 add("second");
/external/clang/test/CodeGenCXX/
H A Dpr18635.cpp12 S second; member in struct:unique_ptr::pair
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_standard_layout.pass.cpp51 T2 second; member in struct:pair
/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/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
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...]
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;
/external/clang/test/SemaCXX/
H A Dnon-empty-class-size-zero.cpp15 int second; member in struct:Y
/external/compiler-rt/test/BlocksRuntime/
H A Dlocalisglobal.c21 int aresame(void *first, void *second) { argument
23 long *s = (long *)second;
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dunpoison_tls.cc22 void *second(void *arg) { function
32 assert(0 == pthread_create(&p, 0, second, 0));
/external/droiddriver/src/io/appium/droiddriver/finders/
H A DChainFinder.java24 * first Finder as context for the second Finder. It is conceptually similar to
27 * second(first(context)).
29 * Note typically first Finder finds the ancestor, then second Finder finds the
35 private final Finder second; field in class:ChainFinder
37 protected ChainFinder(Finder first, Finder second) { argument
39 this.second = Preconditions.checkNotNull(second);
44 return String.format("Chain{%s, %s}", first, second);
49 return second.find(first.find(context));
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DPair.java13 * A pair of objects: first and second.
16 * @param <S> second object type
21 public final S second; field in class:Pair
23 protected Pair(F first, S second) { argument
25 this.second = second;
31 * @param second must be non-null
34 public static <F, S> Pair<F, S> of(F first, S second) { argument
35 if (first == null || second == null) {
38 return new Pair<F, S>(first, second);
[all...]
/external/autotest/client/site_tests/power_LoadTest/extension/
H A Dtime.js21 second: 'numeric',
/external/compiler-rt/test/asan/TestCases/
H A Dvla_chrome_testcase.cc16 __attribute__((noinline)) void fn3(int *first, int second) { argument
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DMultiClassKey.java8 private Class<?> second; field in class:MultiClassKey
14 public MultiClassKey(Class<?> first, Class<?> second) { argument
15 set(first, second);
18 public void set(Class<?> first, Class<?> second) { argument
20 this.second = second;
27 + ", second=" + second
45 if (!second.equals(that.second)) {
[all...]
/external/google-breakpad/src/client/linux/dump_writer_common/
H A Dmapping_info.h53 uint8_t second[sizeof(MDGUID)]; member in struct:google_breakpad::MappingEntry
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DPair.java12 * A pair of objects: first and second.
15 * @param <S> second object type
19 public final S second; field in class:Pair
21 protected Pair(F first, S second) { argument
23 this.second = second;
29 * @param second must be non-null
32 public static <F, S> Pair<F, S> of(F first, S second) { argument
33 if (first == null || second == null) {
36 return new Pair<F, S>(first, second);
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
H A DNodeComparator.java44 * Creates a new composite comparator with a second search criterion.
46 * @param second
47 * second criterion comparator
51 public NodeComparator second(final Comparator<ICoverageNode> second) { argument
60 return result == 0 ? second.compare(o1, o2) : result;
/external/junit/src/main/java/org/junit/runner/manipulation/
H A DFilter.java38 public Filter intersect(Filter second) {
39 return second;
102 * by this Filter and {@code second}
104 public Filter intersect(final Filter second) { argument
105 if (second == this || second == ALL) {
113 && second.shouldRun(description);
118 return first.describe() + " and " + second.describe();
/external/libcxx/test/std/containers/sequences/list/
H A Diterators.pass.cpp29 int second; member in struct:A
/external/libcxx/test/std/containers/sequences/vector/
H A Diterators.pass.cpp29 int second; member in struct:A

Completed in 713 milliseconds

1234567891011>>