HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 101 - 125 of 5198) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/deqp/framework/delibs/depool/
dePoolSet.c 21 * \brief Memory pool set class.
34 deTestSet* set = deTestSet_create(pool); local
37 /* Test exists() on empty set. */
38 DE_TEST_ASSERT(deTestSet_getNumElements(set) == 0);
40 DE_TEST_ASSERT(!deTestSet_exists(set, (deInt16)i));
44 deTestSet_insert(set, (deInt16)i);
46 DE_TEST_ASSERT(deTestSet_getNumElements(set) == 5000);
50 deBool found = deTestSet_exists(set, (deInt16)i);
56 deTestSet_delete(set, (deInt16)i);
58 DE_TEST_ASSERT(deTestSet_getNumElements(set) == 4000)
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
T_S_I__0.py 42 def set(self, indices, extra_indices): member in class:table_T_S_I__0
_l_o_c_a.py 35 self.set([])
49 def set(self, locations): member in class:table__l_o_c_a
  /external/google-breakpad/src/testing/scripts/generator/cpp/
gmock_class.py 41 _dummy = set
44 set = sets.Set variable
47 # How many spaces to indent. Can set me with the INDENT environment variable.
122 processed_class_names = set()
189 desired_class_names = set(argv[2:])
  /external/googletest/googlemock/scripts/generator/cpp/
gmock_class.py 41 _dummy = set
44 set = sets.Set variable
47 # How many spaces to indent. Can set me with the INDENT environment variable.
127 processed_class_names = set()
208 desired_class_names = set(argv[2:])
  /external/guava/guava/src/com/google/common/collect/
UnmodifiableListIterator.java 25 * {@link #set}.
52 @Deprecated @Override public final void set(E e) { method in class:UnmodifiableListIterator
  /external/guava/guava/src/com/google/common/util/concurrent/
SettableFuture.java 22 * A {@link ListenableFuture} whose result may be set by a {@link #set(Object)}
45 * the value was successfully set, or {@code false} if the future has already
46 * been set or cancelled.
49 * @return true if the value was successfully set.
52 public boolean set(@Nullable V value) { method in class:SettableFuture
53 return super.set(value);
60 * successfully set, or {@code false} if the future has already been set or
64 * @return true if the exception was successfully set
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
RegularImmutableAsListTest.java 33 ImmutableSet<Integer> set = ImmutableSet.of(1, 2, 3); local
34 new RegularImmutableAsList<Integer>(set, new Object[] {null, null, null});
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
ChineseTestCase.java 41 set(Calendar.ERA, era); method
42 set(Calendar.YEAR, year); method
43 set(Calendar.MONTH, month - 1); method
44 set(Calendar.IS_LEAP_MONTH, isLeapMonth?1:0); method
45 set(Calendar.DAY_OF_MONTH, dayOfMonth); method
46 set(Calendar.DAY_OF_WEEK, dayOfWeek); method
  /external/icu/icu4c/source/common/unicode/
normalizer2.h 78 * The set of normalization boundaries returned by these functions may not be
231 * @param options Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT and U_EDITS_NO_RESET.
295 * @param decomposition String object which will be set to c's
322 * @param decomposition String object which will be set to c's
492 * Normalizes portions of the text contained in the filter set and leaves
493 * portions not contained in the filter set unchanged.
505 * and a filter set.
508 * The filter set should be frozen; otherwise the performance will suffer greatly.
514 norm2(n2), set(filterSet) {}
549 * @param options Options bit set, usually 0. See U_OMIT_UNCHANGED_TEXT and U_EDITS_NO_RESET
768 const UnicodeSet &set; member in class:FilteredNormalizer2
    [all...]
  /external/icu/icu4c/source/i18n/
csmatch.cpp 29 void CharsetMatch::set(InputText *input, const CharsetRecognizer *cr, int32_t conf, function in class:CharsetMatch
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
ChineseTestCase.java 38 set(Calendar.ERA, era); method
39 set(Calendar.YEAR, year); method
40 set(Calendar.MONTH, month - 1); method
41 set(Calendar.IS_LEAP_MONTH, isLeapMonth?1:0); method
42 set(Calendar.DAY_OF_MONTH, dayOfMonth); method
43 set(Calendar.DAY_OF_WEEK, dayOfWeek); method
  /external/jcommander/src/test/java/com/beust/jcommander/
SetConverter.java 9 SortedSet<Integer> set = new TreeSet<Integer>(); local
12 set.add(Integer.parseInt(num));
14 return set;
  /external/libchrome/base/strings/
string16_unittest.cc 59 std::unordered_set<string16> set; local
61 set.insert(str1);
62 EXPECT_EQ(1u, set.count(str1));
63 EXPECT_EQ(0u, set.count(str2));
  /external/libmojo/base/android/java/src/org/chromium/base/
CollectionUtil.java 22 HashSet<E> set = new HashSet<E>(elements.length); local
23 Collections.addAll(set, elements);
24 return set;
  /external/llvm/unittests/ADT/
DenseSetTest.cpp 21 // Test hashing with a set of only two entries.
23 llvm::DenseSet<unsigned> set(2);
24 set.insert(0);
25 set.insert(1);
27 EXPECT_EQ(0u, set.count(2));
46 DenseSet<unsigned, TestDenseSetInfo> set; local
47 set.insert(0);
48 set.insert(1);
49 set.insert(2);
52 EXPECT_EQ(3u, set.size())
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/kill/
1-2.c 47 sigset_t set; local
49 if (sigemptyset(&set) == -1) {
54 if (sigaddset(&set, SIGTOTEST) == -1) {
68 if (0 != sigwait(&set, &sig)) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigwait/
7-1.c 87 sigset_t set; local
99 /* Set the signal mask */
100 ret = sigemptyset(&set);
103 UNRESOLVED(ret, "Failed to empty signal set");
109 ret = sigaddset(&set, i);
112 UNRESOLVED(ret, "failed to add signal to signal set");
117 ret = pthread_sigmask(SIG_BLOCK, &set, NULL);
152 ret = sigwait(&set, &sig);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/timer_getoverrun/
2-1.c 13 * - Set up a timer to send SIGCONT on expiration with an interval
33 sigset_t set; local
39 if (sigemptyset(&set) != 0) {
44 if (sigaddset(&set, SIGCONT) != 0) {
49 if (sigprocmask(SIG_SETMASK, &set, NULL) != 0) {
77 if (sigprocmask(SIG_UNBLOCK, &set, NULL) != 0) {
2-2.c 16 * - Set up a timer to send SIGCONT on expiration with an interval
36 sigset_t set; local
43 if (sigemptyset(&set) != 0) {
48 if (sigaddset(&set, SIGCONT) != 0) {
53 if (sigprocmask(SIG_SETMASK, &set, NULL) != 0) {
96 if (sigprocmask(SIG_UNBLOCK, &set, NULL) != 0) {
  /external/markdown/markdown/
blockparser.py 9 a list. Each time a state is set, that state is appended to the end of the
13 Therefore, each time a state is set for a nested block, that state must be
22 def set(self, state): member in class:State
23 """ Set a new state. """
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
AbstractStorCommandHandler.java 46 invocationRecord.set(FILE_CONTENTS_KEY, data);
AcctCommandHandler.java 50 invocationRecord.set(ACCOUNT_KEY, command.getRequiredParameter(0));
AppeCommandHandler.java 42 invocationRecord.set(PATHNAME_KEY, filename);
CwdCommandHandler.java 50 invocationRecord.set(PATHNAME_KEY, command.getRequiredParameter(0));

Completed in 587 milliseconds

1 2 3 45 6 7 8 91011>>