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

1 2

  /external/bouncycastle/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/webkit/WebKit/win/
WebKitCOMAPI.cpp 56 bool added = result.second; local
57 if (added && FAILED(DllGetClassObject(clsid, __uuidof(factory), reinterpret_cast<void**>(&factory))))
WebHistory.cpp 114 // reference counting of item added to the array is managed by the CFArray value callbacks
345 bool added; local
346 addItem(item.get(), true, &added); // ref is added inside addItem
347 if (added)
644 HRESULT WebHistory::addItem(IWebHistoryItem* entry, bool discardDuplicate, bool* added)
664 if (added)
665 *added = false;
691 if (added)
692 *added = true
    [all...]
  /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);
  /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/bouncycastle/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...]
  /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();
LauncherModel.java 1125 final ArrayList<ApplicationInfo> added = mAllAppsList.added; local
1225 ArrayList<ApplicationInfo> added = null; local
    [all...]
  /external/openssl/crypto/engine/
eng_table.c 133 int ret = 0, added = 0; local
137 added = 1;
140 if(added)
141 /* The cleanup callback needs to be added */
  /libcore/luni/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;
  /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/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/chromium/base/
observer_list_unittest.cc 66 : added(false),
71 if (!added) {
72 added = true;
77 bool added; member in class:__anon2367::AddInObserve
298 EXPECT_TRUE(b.added);
299 // B's adder should not have been notified because it was added during
  /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/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);
  /packages/inputmethods/PinyinIME/jni/android/
com_android_inputmethod_pinyin_PinyinDecoderService.cpp 277 int added = sync_worker.put_lemmas(ptr, len); local
281 return added;
  /external/bluetooth/bluez/audio/
telephony-ofono.c 986 dbus_bool_t added, removed; local
992 DBUS_TYPE_BOOLEAN, &added,
telephony-maemo5.c 1491 dbus_bool_t added, removed; local
    [all...]
telephony-maemo6.c 1387 dbus_bool_t added, removed; local
    [all...]
  /frameworks/base/services/java/com/android/server/
ProcessStats.java 203 public boolean added; field in class:ProcessStats.Stats
242 if (sta.added != stb.added) {
243 return sta.added ? -1 : 1;
246 return sta.added ? -1 : 1;
355 st.added = false;
471 if (DEBUG) Slog.v("Load", "Stats added " + st.name + " pid=" + st.pid
479 st.added = true;
719 printProcessCPU(pw, st.added ? " +" : (st.removed ? " -": " "),
727 tst.added ? " +" : (tst.removed ? " -": " ")
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
SamplingProfiler.java 344 // added = new-old
345 Set<Thread> added = new HashSet<Thread>(n); local
346 added.removeAll(o);
352 for (Thread thread : added) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
ProjectState.java 236 public boolean added = false; field in class:ProjectState.LibraryDifference
239 return removed || added;
249 * Removed libraries are removed from the state list, and added to the {@link LibraryDifference}
251 * Added libraries are added to the state (as new {@link LibraryState} objects), but their
263 // if the order change it won't impact the java part, so instead try to detect removed/added
299 diff.added = true;
  /frameworks/base/libs/ui/
InputReader.cpp 254 LOGI("Device added: id=0x%x, name=%s (ignored non-input device)", deviceId, name.string());
256 LOGI("Device added: id=0x%x, name=%s, sources=%08x", deviceId, name.string(),
260 bool added = false; local
267 added = true;
271 if (! added) {
272 LOGW("Ignoring spurious device added event for deviceId %d.", deviceId);
    [all...]
  /external/elfutils/src/
ld.h 429 unsigned int added:1; member in struct:symbol
877 /* Search paths added by the default linker script. */
966 /* To keep track of added entries. */

Completed in 620 milliseconds

1 2