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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
ast-print-x86.c 6 int added; local
7 // CHECK: asm volatile ("addl %%ebx,%%eax" : "=a" (added) : "a" (1), "b" (2));
8 __asm__ __volatile__("addl %%ebx,%%eax" : "=a" (added) : "a" (1), "b" (2) );
  /frameworks/base/services/core/jni/
com_android_server_am_BatteryStatsService.cpp 303 int added;
306 added = snprintf(offset, remaining,
310 if (added < 0) {
313 if (added > remaining) {
314 added = remaining;
316 offset += added;
317 remaining -= added;
318 total_added += added;
322 added = snprintf(offset, remaining,
327 if (added < 0)
    [all...]
  /frameworks/data-binding/extensions/library/src/main/java/android/databinding/
ObservableArrayList.java 58 boolean added = super.addAll(collection);
59 if (added) {
62 return added;
67 boolean added = super.addAll(index, collection);
68 if (added) {
71 return added;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
ISO7816d4Padding.java 37 * number of bytes added.
43 int added = (in.length - inOff); local
54 return added;
ZeroBytePadding.java 36 * number of bytes added.
42 int added = (in.length - inOff); local
50 return added;
  /external/curl/docs/cmdline-opts/
crlf.d 7 (SMTP added in 7.40.0)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/aarch64/
litpool.s 1 # Based on PR 16688 this test checks that bignums are correctly added to the literal pool
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
return.s 2 ; warning is added to the assembler.
  /build/make/core/
checktree 85 added = []
90 added = run(where, r'(.*)', r'.*')
91 added = map(split_perforce_parts, added)
98 added = dict().fromkeys(added, 1)
102 if not file in added:
  /external/deqp/scripts/
caselist_diff.py 165 # returns (added, removed) lists
167 added = []
173 # build added list
176 added.append(case)
183 return (added, removed)
195 added, removed = diffCaseLists(renamedCases, newCases)
200 for case in added:
  /external/guava/guava/src/com/google/common/collect/
Queues.java 265 * execute Queue#drainTo is not added *on top* of waiting for the timeout (which could make
269 int added = 0; local
270 while (added < numElements) {
273 added += q.drainTo(buffer, numElements - added);
274 if (added < numElements) { // not enough elements immediately available; will have to poll
280 added++;
283 return added;
304 int added = 0; local
307 while (added < numElements)
    [all...]
  /art/tools/ahat/etc/
style.css 21 span.added {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
arch5tej.s 12 bkpt 10 @ is a feature added to GAS.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/
opc-x.s 15 # instructions added by SDM2.1:
  /external/e2fsprogs/intl/
localealias.c 156 size_t added; local
188 added = 0;
189 while (added == 0 && locale_alias_path[0] != '\0')
202 added = read_alias_file (start, locale_alias_path - start);
205 while (added != 0);
221 size_t added; local
243 added = 0;
303 return added;
316 return added;
342 ++added;
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/badge/
BadgeInfo.java 44 * updated whenever a key is added or removed.
54 * Returns whether the notification was added or its count changed.
70 boolean added = mNotificationKeys.add(notificationKey);
71 if (added) {
74 return added;
  /system/core/libutils/
misc.cpp 56 bool added = false; local
60 added = true;
64 if (!added) {
  /toolchain/binutils/binutils-2.27/intl/
localealias.c 157 size_t added; local
189 added = 0;
190 while (added == 0 && locale_alias_path[0] != '\0')
203 added = read_alias_file (start, locale_alias_path - start);
206 while (added != 0);
224 size_t added; local
246 added = 0;
306 return added;
319 return added;
345 ++added;
    [all...]
  /tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/
ZFileNotificationTest.java 44 public List<ApkZLibPair<StoredEntry, StoredEntry>> added; field in class:ZFileNotificationTest.KeepListener
78 public IOExceptionRunnable added(@Nonnull StoredEntry entry, method in class:ZFileNotificationTest.KeepListener
80 added.add(new ApkZLibPair<>(entry, replaced));
96 added = Lists.newArrayList();
105 assertEquals(0, added.size());
123 assertEquals(1, kl.added.size());
124 StoredEntry addedSe = kl.added.get(0).v1;
125 assertNull(kl.added.get(0).v2);
126 kl.added.clear();
176 assertEquals(1, kl.added.size())
    [all...]
  /system/bt/osi/test/
ringbuffer_test.cc 40 size_t added = ringbuffer_insert(rb, aa, 7); local
41 EXPECT_EQ((size_t)5, added);
45 added = ringbuffer_insert(rb, bb, 5);
46 EXPECT_EQ((size_t)0, added);
68 size_t added = ringbuffer_insert(rb, aa, sizeof(aa)); local
69 EXPECT_EQ((size_t)8, added);
114 added = ringbuffer_insert(rb, dd, sizeof(dd));
115 EXPECT_EQ((size_t)8, added);
127 added = ringbuffer_insert(rb, ae, sizeof(ae));
133 EXPECT_EQ(added, popped)
    [all...]
  /system/nfc/utils/test/
ringbuffer_test.cc 39 size_t added = ringbuffer_insert(rb, aa, 7); local
40 EXPECT_EQ((size_t)5, added);
44 added = ringbuffer_insert(rb, bb, 5);
45 EXPECT_EQ((size_t)0, added);
67 size_t added = ringbuffer_insert(rb, aa, sizeof(aa)); local
68 EXPECT_EQ((size_t)8, added);
113 added = ringbuffer_insert(rb, dd, sizeof(dd));
114 EXPECT_EQ((size_t)8, added);
126 added = ringbuffer_insert(rb, ae, sizeof(ae));
132 EXPECT_EQ(added, popped)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
SourceTargetUtility.java 66 boolean added = false;
69 added = true;
82 if (added) {
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
SourceTargetUtility.java 65 boolean added = false;
68 added = true;
81 if (added) {
  /external/libcxx/utils/
sym_diff.py 58 added, removed, changed = diff.diff(old_syms_list, new_syms_list)
60 added = {}
62 added, removed, changed, names_only=args.names_only,
  /prebuilts/clang/host/darwin-x86/clang-4579689/share/opt-viewer/
opt-diff.py 6 pair of directories too). A new attribute 'Added' is set to True or False
7 depending whether the entry is added or removed from the first input to the
56 added = set(all_remarks2.values()) - set(all_remarks1.values()) variable
59 for r in added:
60 r.Added = True
62 r.Added = False
64 result = added | removed

Completed in 641 milliseconds

1 2 3 4 5 6 7 8 91011>>