HomeSort by relevance Sort by last modified time
    Searched refs:whole (Results 1 - 25 of 336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/ExactCalculator/src/com/android/calculator2/
StringUtils.java 39 * a whole number, with no decimal point.
65 * If so, return the remaining subsequence of whole. If not, return null.
67 public static CharSequence getExtensionIgnoring(CharSequence whole, CharSequence prefix,
71 final int wLen = whole.length();
77 while (wIndex < wLen && whole.charAt(wIndex) == c) {
83 if (wIndex == wLen || whole.charAt(wIndex) != prefix.charAt(pIndex) ) {
89 while (wIndex < wLen && whole.charAt(wIndex) == c) {
92 return whole.subSequence(wIndex, wLen);
  /system/update_engine/scripts/update_payload/
format_utils.py 26 total: the value of the whole
47 whole, frac = divmod(percent, factor)
52 return '%d%s%%' % (whole, '.%0*d' % (precision, frac) if frac else '')
60 the largest that yields a whole (or mixed) number. It may contain up to
93 whole = size / magnitude
97 return '%d%s %s' % (whole, '.%d' % frac if frac else '', suffixes[exp - 1])
  /external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
ProperBigFractionFormat.java 29 * the whole number, numerator and, denominator can be configured.
31 * Minus signs are only allowed in the whole number part - i.e.,
43 /** The format used for the whole number. */
48 * the whole, numerator, and denominator.
56 * whole, numerator, and denominator.
57 * @param format the custom format for the whole, numerator, and
66 * of the whole, numerator, and denominator.
67 * @param wholeFormat the custom format for the whole.
97 BigInteger whole = num.divide(den); local
100 if (!BigInteger.ZERO.equals(whole)) {
148 BigInteger whole = parseNextBigInteger(source, pos); local
    [all...]
ProperFractionFormat.java 29 * the whole number, numerator and, denominator can be configured.
31 * Minus signs are only allowed in the whole number part - i.e.,
43 /** The format used for the whole number. */
48 * the whole, numerator, and denominator.
56 * whole, numerator, and denominator.
57 * @param format the custom format for the whole, numerator, and
66 * of the whole, numerator, and denominator.
67 * @param wholeFormat the custom format for the whole.
98 int whole = num / den; local
101 if (whole != 0)
148 Number whole = getWholeFormat().parse(source, pos); local
    [all...]
  /external/openssh/openbsd-compat/
fmt_scaled.c 81 long long scale_fact = 1, whole = 0, fpart = 0; local
134 whole *= 10;
135 whole += i;
140 whole *= sign;
146 *result = whole;
150 /* Validate scale factor, and scale whole and fraction by it. */
164 /* scale whole part */
165 whole *= scale_fact;
179 whole += fpart;
180 *result = whole;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeOverlay.java 74 Rectangle whole = root.getAbsRect(); local
75 whole = new Rectangle(whole.x, whole.y, whole.width + 1, whole.height + 1);
76 Collection<Rectangle> masks = subtractRectangles(whole, includedBounds);
  /external/swiftshader/third_party/LLVM/tools/llvm-shlib/
Makefile 68 LLVMLibsOptions := -Wl,--whole-archive $(LLVMLibsOptions) \
69 -Wl,--no-whole-archive
105 -Wl,--whole-archive $(LLVMLibsPaths) \
106 -Wl,--no-whole-archive
111 -Wl,--whole-archive -lstdc++ \
112 -Wl,--no-whole-archive
  /external/elfutils/libdwfl/
gzip.c 75 void **whole; member in struct:unzip_state
108 *state->whole = state->input_buffer;
112 *state->whole = NULL;
162 If we uncompressed it into *WHOLE, *WHOLE_SIZE, return DWFL_E_NOERROR.
165 leave that portion malloc'd in *WHOLE, *WHOLE_SIZE. If *WHOLE
179 .whole = _whole,
188 if (*state.whole == NULL)
204 state.input_buffer = *state.whole;
320 *state.whole = state.buffer
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
CompactExtractEditLayout.java 69 private int applyFractionInt(@FractionRes int fraction, int whole) {
70 return Math.round(getResources().getFraction(fraction, whole, whole));
  /external/syslinux/com32/elflink/
Makefile 23 $(LD) -n $(LDFLAGS) -o $@ test_com32.o $(LIBGCC) --whole-archive ../lib/libcom32min.a -Map test_com32.map
  /external/tremolo/Tremolo/
misc.h 78 ogg_int64_t whole; member in union:magic
88 ogg_int64_t whole; member in union:magic
94 magic.whole = (ogg_int64_t)x * y;
104 magic.whole = (ogg_int64_t)x * y;
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/
adj-brset.s 7 brclr 140,x#200,L8 ; Branch adjustment covers the whole test
40 brclr 140,x#200,_start ; Branch adjustment covers the whole test
  /external/libcxx/test/std/containers/unord/unord.multiset/
erase_key.pass.cpp 26 bool only_deletions ( const Unordered &whole, const Unordered &part ) {
27 typename Unordered::const_iterator w = whole.begin();
30 while ( w != whole.end () && p != part.end()) {
  /external/libcxx/test/std/containers/unord/unord.set/
erase_key.pass.cpp 26 bool only_deletions ( const Unordered &whole, const Unordered &part ) {
27 typename Unordered::const_iterator w = whole.begin();
30 while ( w != whole.end () && p != part.end()) {
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
erase_key.pass.cpp 26 bool only_deletions ( const Unordered &whole, const Unordered &part ) {
27 typename Unordered::const_iterator w = whole.begin();
30 while ( w != whole.end () && p != part.end()) {
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/
erase_key.pass.cpp 26 bool only_deletions ( const Unordered &whole, const Unordered &part ) {
27 typename Unordered::const_iterator w = whole.begin();
30 while ( w != whole.end () && p != part.end()) {
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.multiset/
erase_key.pass.cpp 26 bool only_deletions ( const Unordered &whole, const Unordered &part ) {
27 typename Unordered::const_iterator w = whole.begin();
30 while ( w != whole.end () && p != part.end()) {
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.set/
erase_key.pass.cpp 26 bool only_deletions ( const Unordered &whole, const Unordered &part ) {
27 typename Unordered::const_iterator w = whole.begin();
30 while ( w != whole.end () && p != part.end()) {
  /external/c-ares/
compile 45 If you are trying to build a whole package this is not the
  /external/cmockery/cmockery_0_1_2/
compile 45 If you are trying to build a whole package this is not the
  /external/libnetfilter_conntrack/
compile 45 If you are trying to build a whole package this is not the
  /external/libogg/
compile 45 If you are trying to build a whole package this is not the
  /external/libusb-compat/
compile 45 If you are trying to build a whole package this is not the
  /external/libvorbis/
compile 45 If you are trying to build a whole package this is not the
  /external/elfutils/libasm/
Makefile.am 65 $(AM_V_CCLD)$(LINK) -shared -o $@ -Wl,--whole-archive,$<,--no-whole-archive \

Completed in 703 milliseconds

1 2 3 4 5 6 7 8 91011>>