HomeSort by relevance Sort by last modified time
    Searched defs:fold (Results 1 - 25 of 51) sorted by null

1 2 3

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
fold.hpp 14 // $Id: fold.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
31 struct fold struct in namespace:boost::mpl
41 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,fold,(Sequence,State,ForwardOp))
44 BOOST_MPL_AUX_NA_SPEC(3, fold)
  /external/opencv3/3rdparty/jinja2/
optimizer.py 6 The jinja optimizer is currently trying to constant fold a few expressions
54 def fold(self, node): member in class:Optimizer
67 visit_Filter = visit_Test = visit_CondExpr = fold
68 del fold
  /external/clang/test/SemaCXX/
constexpr-printing.cpp 93 #define fold(x) (__builtin_constant_p(x) ? (x) : (x)) macro
98 static_assert(mulBy3(fold((LabelDiffTy)&&a-(LabelDiffTy)&&b)) == 3, ""); // expected-error {{constant expression}} expected-note {{call to 'mulBy3(&&a - &&b)'}}
  /external/mesa3d/src/gallium/state_trackers/clover/core/
base.hpp 229 fold(F op, T a, It0 it0, It0 end0, Its... its) { function in namespace:clover
  /external/v8/test/mjsunit/es6/
iteration-semantics.js 80 function fold(cons, seed, iterable) { function
176 assertEquals(45, fold(sum, 0, integers_until(10)));
178 assertEquals([1, 2, 3], fold(append, [], values(1, 2, 3)));
180 assertEquals(45, fold(sum, 0, take(integers_from(0), 10)));
182 assertEquals(90, fold(sum, 0, take(skip_every(integers_from(0), 2), 10)));
192 fold(append, [],
205 fold(append, [],
210 fold(append, [],
217 assertThrows('fold(sum, 0, unreachable(null))', TypeError);
218 assertThrows('fold(sum, 0, unreachable(undefined))', TypeError)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
IntTrieBuilder.java 231 * @param datamanipulate builder raw fold method implementation
232 * @param triedatamanipulate result trie fold method
241 // fold and compact if necessary, also checks that indexLength is
246 // fold the supplementary part of the index array
247 fold(datamanipulate);
292 * @param datamanipulate builder raw fold method implementation
301 // fold and compact if necessary, also checks that indexLength is
306 // fold the supplementary part of the index array
307 fold(datamanipulate);
660 * Fold the normalization data for supplementary code points int
670 private final void fold(DataManipulate manipulate) method in class:IntTrieBuilder
    [all...]
UCaseProps.java 1111 public final int fold(int c, int options) { method in class:UCaseProps
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
IntTrieBuilder.java 229 * @param datamanipulate builder raw fold method implementation
230 * @param triedatamanipulate result trie fold method
239 // fold and compact if necessary, also checks that indexLength is
244 // fold the supplementary part of the index array
245 fold(datamanipulate);
290 * @param datamanipulate builder raw fold method implementation
299 // fold and compact if necessary, also checks that indexLength is
304 // fold the supplementary part of the index array
305 fold(datamanipulate);
658 * Fold the normalization data for supplementary code points int
668 private final void fold(DataManipulate manipulate) method in class:IntTrieBuilder
    [all...]
UCaseProps.java 1107 public final int fold(int c, int options) { method in class:UCaseProps
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java 321 * Unpack, encode, and fold address(es) into a header
332 writer.append(MimeUtility.fold(Address.reformatToHeader(value), name.length() + 2));
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeUtility.java 93 * @param s original string to encode and fold
107 return fold(encoded, usedCharacters);
129 public static String fold(String s, int usedCharacters) { method in class:MimeUtility
  /packages/services/Telephony/src/com/android/phone/common/mail/internet/
MimeUtility.java 92 * @param s original string to encode and fold
106 return fold(encoded, usedCharacters);
128 public static String fold(String s, int usedCharacters) { method in class:MimeUtility
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
CaseIterator.java 26 * Incrementally returns the set of all strings that case-fold to the same value.
222 // walk through all the characters, and at every case fold result,
241 s.add(mapped); // add the case fold result itself
475 * @return next case variant. Each variant will case-fold to the same value as the source will.
541 String fold = null; local
543 fold = temp;
546 if (count==1 && fold.equals(cp)) {
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
CaseIterator.java 22 * Incrementally returns the set of all strings that case-fold to the same value.
218 // walk through all the characters, and at every case fold result,
237 s.add(mapped); // add the case fold result itself
471 * @return next case variant. Each variant will case-fold to the same value as the source will.
537 String fold = null; local
539 fold = temp;
542 if (count==1 && fold.equals(cp)) {
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
CaseIterator.java 25 * Incrementally returns the set of all strings that case-fold to the same value.
221 // walk through all the characters, and at every case fold result,
240 s.add(mapped); // add the case fold result itself
474 * @return next case variant. Each variant will case-fold to the same value as the source will.
540 String fold = null; local
542 fold = temp;
545 if (count==1 && fold.equals(cp)) {
  /external/regex-re2/re2/
compile.cc 815 // the fold flag is unnecessary; don't bother.
816 bool fold = foldascii; local
818 fold = false;
820 AddRuneRange(i->lo, i->hi, fold);
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceSet.java 406 split[n] = fold(split[n]);
418 * fold and unfolds ical content lines as per RFC 2445 section 4.1.
435 public static String fold(String unfoldedIcalContent) { method in class:RecurrenceSet
  /external/clang/test/CXX/drs/
dr5xx.cpp 133 #define fold(x) (__builtin_constant_p(x) ? (x) : (x)) macro
134 int test[fold((int*)(void*)0) ? -1 : 1];
135 #undef fold macro
dr1xx.cpp 572 #define fold(x) (__builtin_constant_p(0) ? (x) : (x)) macro
574 #define fold macro
576 int check[fold(p() == 0) ? 1 : -1];
577 #undef fold macro
dr2xx.cpp 10 #define fold(x) (__builtin_constant_p(x) ? (x) : (x)) macro
12 #define fold macro
29 int arr[fold(g == &f<int>) ? 1 : -1];
857 int a[fold(intp() ? -1 : 1)];
  /external/icu/icu4c/source/test/intltest/
tstnorm.cpp 1213 UnicodeString s, fold, d; local
    [all...]
  /external/toybox/generated/
globals.h 515 // toys/pending/fold.c
1360 struct fold_data fold; member in union:global_union
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/0.12.613/
kotlin-stdlib-0.12.613.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.0-beta-4584/
kotlin-stdlib-1.0.0-beta-4584.jar 
  /prebuilts/tools/common/offline-m2/org/jetbrains/kotlin/kotlin-stdlib/1.0.0-beta-4584/
kotlin-stdlib-1.0.0-beta-4584.jar 

Completed in 1052 milliseconds

1 2 3