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

1 2 3 4 5

  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/
X509NameElementList.java 14 * an "added" flag.
47 /** bit vector for all the "added" bits */
48 private BitSet added = new BitSet(); field in class:X509NameElementList
56 * Adds an element. The "added" flag is set to false for the element.
70 * @param added the added bit
72 public void add(DERObjectIdentifier key, String value, boolean added) {
116 if (added) {
117 this.added.set(sz);
124 * Sets the "added" flag on the most recently added element
    [all...]
  /dalvik/libcore/security/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;
  /dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
MockNodeChangeListener.java 12 private int added = 0; field in class:MockNodeChangeListener
69 ++added;
118 return added;
129 added = 0;
  /build/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/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...]
  /external/bluetooth/glib/gio/
gunixvolumemonitor.c 261 GList **added,
266 *added = *removed = NULL;
279 *added = g_list_prepend (*added, list2->data);
296 *added = g_list_prepend (*added, list2->data);
346 GList *removed, *added; local
356 &added, &removed);
374 for (l = added; l != NULL; l = l->next)
382 g_signal_emit_by_name (monitor, "volume-added", volume)
398 GList *removed, *added; local
    [all...]
  /external/openssl/crypto/objects/
obj_dat.c 99 static LHASH *added=NULL; variable
185 if (added != NULL) return(1);
186 added=lh_new(add_hash,add_cmp);
187 return(added != NULL);
214 if (added == NULL) return;
215 added->down_load=0;
216 lh_doall(added,LHASH_DOALL_FN(cleanup1)); /* zero counters */
217 lh_doall(added,LHASH_DOALL_FN(cleanup2)); /* set counters */
218 lh_doall(added,LHASH_DOALL_FN(cleanup3)); /* free objects */
219 lh_free(added);
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_getenv.c 96 int added; local
122 added = 0;
136 added = 1;
141 if ( ! added ) {
147 added = 1;
152 return (added ? 0 : -1);
  /external/webkit/WebKit/win/
WebKitCOMAPI.cpp 56 bool added = result.second; local
57 if (added && FAILED(DllGetClassObject(clsid, __uuidof(factory), reinterpret_cast<void**>(&factory))))
  /frameworks/base/tools/preload/
PrintHtmlDiff.java 27 * Prints HTML containing removed and added files.
53 Set<LoadedClass> added = new TreeSet<LoadedClass>(); local
57 added.add(loadedClass);
66 added.remove(clazz);
80 out.println("<a name=\"added\"/><h2>Added</h2>");
81 printTable(out, root.baseline, added);
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
SynchronousQueueTest.java 189 int added = 0;
192 ++added;
194 ++added;
196 ++added;
198 ++added;
201 assertTrue(added >= 1);
299 int added = 0;
302 ++added;
304 ++added;
306 ++added;
    [all...]
ArrayBlockingQueueTest.java 124 * Queue transitions from empty to full when elements added
326 int added = 0;
330 ++added;
335 threadAssertEquals(added, SIZE);
356 int added = 0;
359 ++added;
361 ++added;
363 ++added;
365 ++added;
368 threadAssertTrue(added >= 2)
    [all...]
LinkedBlockingQueueTest.java 115 * Queue transitions from empty to full when elements added
315 int added = 0;
320 ++added;
325 threadAssertEquals(added, SIZE);
346 int added = 0;
349 ++added;
351 ++added;
353 ++added;
355 ++added;
358 threadAssertTrue(added >= 2)
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
DraftCache.java 121 // Find out which drafts were removed and added and notify
123 Set<Long> added = new HashSet<Long>(newDraftSet); local
124 added.removeAll(oldDraftSet);
129 for (long threadId : added) {
  /external/dnsmasq/contrib/port-forward/
dnsmasq-portforward 58 verb=added
  /external/qemu/distrib/sdl-1.2.12/src/events/
SDL_events.c 265 int tail, added; local
270 added = 0;
282 added = 1;
284 return(added);
  /frameworks/base/services/java/com/android/server/
ProcessStats.java 181 public boolean added; field in class:ProcessStats.Stats
221 if (sta.added != stb.added) {
222 return sta.added ? -1 : 1;
225 return sta.added ? -1 : 1;
332 st.added = false;
427 st.added = true;
613 printProcessCPU(pw, st.added ? " +" : (st.removed ? " -": " "),
621 tst.added ? " +" : (tst.removed ? " -": " "),
  /external/v8/test/mjsunit/bugs/
bug-1344252.js 28 // Test that setter accessors added to the prototype chain are called
31 // Test that accessors added to the prototype chain are called
64 // accessors added to the prototype chain are called instead of
  /external/webkit/WebKitTools/Scripts/
run-leaks 153 next if $line =~ /^node buffer added/;
  /external/openssl/crypto/engine/
eng_table.c 120 int ret = 0, added = 0; local
124 added = 1;
127 if(added)
128 /* The cleanup callback needs to be added */
  /packages/apps/Launcher2/src/com/android/launcher2/
AllAppsList.java 40 /** The list of apps that have been added since the last notify() call. */
41 public ArrayList<ApplicationInfo> added = field in class:AllAppsList
68 added.add(info);
74 added.clear();
  /external/v8/test/mjsunit/
array-iteration.js 56 // added.
98 // added.
139 // added.
177 // added.
213 // Only loop through initial part when elements are added.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ProjectState.java 219 public boolean added = false; field in class:ProjectState.LibraryDifference
222 return removed.size() > 0 || added;
239 // if the order change it won't impact the java part, so instead try to detect removed/added
275 diff.added = true;
  /external/icu4c/samples/ufortune/resources/
fortune_resources.mak 14 # .res file must be added to this list, AND to the file res-file-list.txt

Completed in 690 milliseconds

1 2 3 4 5