/external/icu/icu4c/source/i18n/ |
H A D | curramt.cpp | 22 CurrencyAmount::CurrencyAmount(const Formattable& amount, const UChar* isoCode, argument 24 Measure(amount, new CurrencyUnit(isoCode, ec), ec) { 27 CurrencyAmount::CurrencyAmount(double amount, const UChar* isoCode, argument 29 Measure(Formattable(amount), new CurrencyUnit(isoCode, ec), ec) {
|
H A D | tmutamt.cpp | 26 TimeUnitAmount::TimeUnitAmount(double amount, argument 29 : Measure(Formattable(amount),
|
/external/curl/tests/libtest/ |
H A D | lib1525.c | 37 size_t amount = nmemb * size; /* Total bytes curl wants */ local 38 if(amount < strlen(data)) {
|
H A D | lib1526.c | 36 size_t amount = nmemb * size; /* Total bytes curl wants */ local 37 if(amount < strlen(data)) {
|
H A D | lib1527.c | 36 size_t amount = nmemb * size; /* Total bytes curl wants */ local 37 if(amount < strlen(data)) {
|
H A D | lib552.c | 129 size_t amount = nmemb * size; /* Total bytes curl wants */ local 132 size_t given = amount < available ? amount : available; /* What is given */ 143 int amount = curlx_uztosi(size * nmemb); local 144 printf("%.*s", amount, (char *)ptr);
|
/external/snakeyaml/src/test/java/examples/ |
H A D | SelectiveConstructorTest.java | 58 .load("- 1\n- 2\n- !!examples.MyPersistentObject {amount: 222, id: persistent}"); 69 private int amount; field in class:MyPersistentObject 73 this.amount = 222; 76 public MyPersistentObject(String id, int amount) { argument 78 this.amount = amount; 90 return amount; 93 public void setAmount(int amount) { argument 94 this.amount = amount; [all...] |
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/ |
H A D | AtomicJavaBean.java | 21 private float amount; field in class:AtomicJavaBean 25 return amount; 28 public void setAmount(float amount) { argument 29 this.amount = amount;
|
H A D | BigDecimalJavaBean.java | 22 private float amount; field in class:BigDecimalJavaBean 33 return amount; 36 public void setAmount(float amount) { argument 37 this.amount = amount;
|
H A D | IncompleteJavaBean.java | 21 private float amount; field in class:IncompleteJavaBean 29 amount += number;
|
/external/zopfli/src/zopfli/ |
H A D | hash.c | 95 size_t amount = 0; local 110 amount = h->same[(pos - 1) & ZOPFLI_WINDOW_MASK] - 1; 112 while (pos + amount + 1 < end && 113 array[pos] == array[pos + amount + 1] && amount < (unsigned short)(-1)) { 114 amount++; 116 h->same[hpos] = amount;
|
H A D | zlib_container.c | 36 size_t amount = size > sums_overflow ? sums_overflow : size; local 37 size -= amount; 38 while (amount > 0) { 41 amount--;
|
/external/curl/lib/ |
H A D | gopher.c | 83 ssize_t amount, k; local 119 result = Curl_write(conn, sockfd, sel, k, &amount); 121 result = Curl_client_write(conn, CLIENTWRITE_HEADER, sel, amount); 125 k -= amount; 126 sel += amount;
|
/external/libvncserver/libvncserver/ |
H A D | cargs.c | 70 int amount=(*argc)-(*position)-count; local 71 if(amount) 72 memmove(argv+(*position),argv+(*position)+count,sizeof(char*)*amount);
|
/external/libchrome/base/metrics/ |
H A D | histogram_delta_serialization.cc | 117 int amount) { 120 inconsistent_snapshot_histogram_->Add(std::abs(amount)); 116 InconsistencyDetectedInLoggedCount( int amount) argument
|
/external/mockito/src/test/java/org/mockito/internal/verification/checkers/ |
H A D | NumberOfInvocationsCheckerTest.java | 146 private static BaseMatcher<String> containsTimes(String value, int amount) { argument 147 return new StringContainsNumberMatcher(value, amount); 154 private final int amount; field in class:NumberOfInvocationsCheckerTest.StringContainsNumberMatcher 156 StringContainsNumberMatcher(String expected, int amount) { argument 158 this.amount = amount; 171 return count == amount; 175 description.appendText("containing '" + expected + "' exactly " + amount + " times");
|
H A D | NumberOfInvocationsInOrderCheckerTest.java | 188 private static BaseMatcher<String> containsTimes(String value, int amount) { argument 189 return new StringContainsNumberMatcher(value, amount); 196 private final int amount; field in class:NumberOfInvocationsInOrderCheckerTest.StringContainsNumberMatcher 198 StringContainsNumberMatcher(String expected, int amount) { argument 200 this.amount = amount; 214 return count == amount; 219 description.appendText("containing '" + expected + "' exactly " + amount + " times");
|
/external/skia/bench/ |
H A D | ColorFilterBench.cpp | 18 static sk_sp<SkImageFilter> make_brightness(float amount, sk_sp<SkImageFilter> input) { argument 19 SkScalar amount255 = amount * 255;
|
H A D | ImageFilterCollapse.cpp | 100 static sk_sp<SkColorFilter> make_brightness(float amount) { argument 101 SkScalar amount255 = amount * 255;
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/ |
H A D | UTF16Test.java | 591 // amount The number of code points to move. 594 private void checkMoveCodePointOffset(String s, int startIdx, int amount, int expectedResult) { argument 597 int result = UTF16.moveCodePointOffset(s, startIdx, amount); 599 errln("FAIL: UTF16.moveCodePointOffset(String \"" + s + "\", " + startIdx + ", " + amount + ")" + 606 errln("FAIL: UTF16.moveCodePointOffset(String \"" + s + "\", " + startIdx + ", " + amount + ")" + 614 int result = UTF16.moveCodePointOffset(sb, startIdx, amount); 616 errln("FAIL: UTF16.moveCodePointOffset(StringBuffer \"" + s + "\", " + startIdx + ", " + amount + ")" + 623 errln("FAIL: UTF16.moveCodePointOffset(StringBuffer \"" + s + "\", " + startIdx + ", " + amount + ")" + 631 int result = UTF16.moveCodePointOffset(ca, 0, s.length(), startIdx, amount); 634 + ", " + startIdx + ", " + amount [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
H A D | FieldsSet.java | 55 public void set(int field, int amount) { argument 56 fValues[field] = amount;
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
H A D | UTF16Test.java | 590 // amount The number of code points to move. 593 private void checkMoveCodePointOffset(String s, int startIdx, int amount, int expectedResult) { argument 596 int result = UTF16.moveCodePointOffset(s, startIdx, amount); 598 errln("FAIL: UTF16.moveCodePointOffset(String \"" + s + "\", " + startIdx + ", " + amount + ")" + 605 errln("FAIL: UTF16.moveCodePointOffset(String \"" + s + "\", " + startIdx + ", " + amount + ")" + 613 int result = UTF16.moveCodePointOffset(sb, startIdx, amount); 615 errln("FAIL: UTF16.moveCodePointOffset(StringBuffer \"" + s + "\", " + startIdx + ", " + amount + ")" + 622 errln("FAIL: UTF16.moveCodePointOffset(StringBuffer \"" + s + "\", " + startIdx + ", " + amount + ")" + 630 int result = UTF16.moveCodePointOffset(ca, 0, s.length(), startIdx, amount); 633 + ", " + startIdx + ", " + amount [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
H A D | FieldsSet.java | 54 public void set(int field, int amount) { argument 55 fValues[field] = amount;
|
/external/jarjar/src/main/com/tonicsystems/jarjar/util/ |
H A D | ClassHeaderReader.java | 141 private void buffer(int amount) throws IOException { argument 142 if (amount > b.length) 144 if (amount > bsize) { 145 int rounded = (int)(CHUNK * Math.ceil((float)amount / CHUNK)); 147 if (amount > bsize)
|
/external/mesa3d/src/mesa/main/ |
H A D | syncobj.c | 200 int amount) 205 syncObj->RefCount -= amount; 199 _mesa_unref_sync_object(struct gl_context *ctx, struct gl_sync_object *syncObj, int amount) argument
|