HomeSort by relevance Sort by last modified time
    Searched full:writers (Results 1 - 25 of 176) sorted by null

1 2 3 4 5 6 7 8

  /libcore/luni/src/main/java/org/xml/sax/
HandlerBase.java 25 * <p>Application writers can extend this class when they need to
26 * implement only part of an interface; parser writers can
61 * the SAX default behaviour: application writers can override it
92 * <p>By default, do nothing. Application writers may override this
111 * <p>By default, do nothing. Application writers may override this
139 * <p>By default, do nothing. Application writers may override this
156 * <p>By default, do nothing. Application writers may override this
175 * <p>By default, do nothing. Application writers may override this
194 * <p>By default, do nothing. Application writers may override this
215 * <p>By default, do nothing. Application writers may override thi
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
Writers.java 25 public final class Writers {
29 private Writers() {
  /dalvik/dx/src/com/android/dx/util/
Writers.java 25 public final class Writers {
29 private Writers() {
  /libcore/luni/src/main/java/org/xml/sax/helpers/
DefaultHandler.java 42 * <p>Application writers can extend this class when they need to
43 * implement only part of an interface; parser writers can
73 * the SAX default behaviour: application writers can override it
106 * <p>By default, do nothing. Application writers may override this
128 * <p>By default, do nothing. Application writers may override this
159 * <p>By default, do nothing. Application writers may override this
176 * <p>By default, do nothing. Application writers may override this
195 * <p>By default, do nothing. Application writers may override this
214 * <p>By default, do nothing. Application writers may override this
234 * <p>By default, do nothing. Application writers may override thi
    [all...]
AttributeListImpl.java 29 * implementation is useful both for SAX parser writers, who can use
31 * writers, who can use it to create a persistent copy of an element's
49 * parser writers are encouraged to invent more efficient
72 * <p>This constructor is most useful for parser writers, who
87 * <p>This constructor is most useful for application writers,
130 * <p>This method is provided for SAX parser writers, to allow them
150 * <p>SAX application writers can use this method to filter an
174 * <p>SAX parser writers can use this method to reset the attribute
  /external/bluetooth/glib/gobject/
gboxed.h 134 * gchar *writers[];
135 * g_object_get (obj, "authors", &writers, NULL);
136 * // do something with writers
137 * g_strfreev (writers);
  /libcore/luni/src/main/java/javax/xml/transform/stream/
package.html 23 <p>Normally streams should be used rather than readers or writers, for
24 both the Source and Result, since readers and writers already have the encoding
  /external/llvm/include/llvm/Support/
RWMutex.h 88 unsigned readers, writers; member in class:llvm::sys::SmartRWMutex
90 explicit SmartRWMutex() : RWMutexImpl(), readers(0), writers(0) { }
119 assert(writers == 0 && "Writer lock already acquired!");
120 ++writers;
130 assert(writers == 1 && "Writer lock not acquired before release!");
131 --writers;
  /external/kernel-headers/original/linux/
seqlock.h 4 * Reader/writer consistent mechanism without starving writers. This type of
8 * progress. Writers do not wait for readers.
53 /* Lock out other writers and update the count.
  /system/extras/tests/sdcard/
profile_sdcard.sh 47 # Readers and writers should not starve each others.
49 # Check readers finished before writers.
  /frameworks/base/libs/rs/
rsFifo.h 30 // readers or writers by design.
rsLocklessFifo.h 31 // readers or writers by design.
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/
overview.html 22 filters, streams, readers and writers.
package.html 22 writers and files. The most commonly used classes are described here:
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 181 std::vector<Function*> &Writers,
203 std::vector<Function*> Readers, Writers;
206 if (!AnalyzeUsesOfPointer(I, Readers, Writers)) {
211 Readers.clear(); Writers.clear();
217 if (!AnalyzeUsesOfPointer(I, Readers, Writers)) {
224 if (!I->isConstant()) // No need to keep track of writers to constants
225 for (unsigned i = 0, e = Writers.size(); i != e; ++i)
226 FunctionInfo[Writers[i]].GlobalInfo[I] |= Mod;
234 Readers.clear(); Writers.clear();
246 std::vector<Function*> &Writers,
    [all...]
  /external/wpa_supplicant/
eloop.c 55 struct eloop_sock_table writers; member in struct:eloop_data
196 return &eloop.writers;
454 eloop.writers.count > 0 || eloop.exceptions.count > 0)) {
470 eloop_sock_table_set_fds(&eloop.writers, wfds);
499 eloop_sock_table_dispatch(&eloop.writers, wfds);
527 eloop_sock_table_destroy(&eloop.writers);
  /external/dropbear/
svr-authpam.c 111 /* You have to read the PAM module-writers' docs (do we look like
112 * module writers? no.) to find out that the module will
137 /* You have to read the PAM module-writers' docs (do we look like
138 * module writers? no.) to find out that the module will
  /external/guava/src/com/google/common/io/
package-info.java 21 * for example input streams, output streams, readers, writers, and files.
  /external/llvm/docs/CommandGuide/
llvm-diff.pod 32 B<llvm-diff> is intended as a debugging tool for writers of LLVM
  /external/proguard/src/proguard/
DataEntryWriterFactory.java 30 * writers will wrap the output in the proper jars, wars, ears, and zips.
50 // Create a chain of writers, one for each class path entry.
99 // Set up the filtered jar writers.
  /frameworks/media/libvideoeditor/vss/common/inc/
M4WRITER_common.h 19 * @brief VES writers shell interface.
20 * @note This file defines the types internally used by the VES to abstract writers
63 M4WRITER_kType_NB /* number of writers, keep it as last enum entry */
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReadWriteLock.java 13 * multiple reader threads, so long as there are no writers. The
60 * both readers and writers are waiting, at the time that a writer releases
77 * in preference to other waiting readers or writers?
  /sdk/chimpchat/src/com/android/chimpchat/core/
ChimpImageBase.java 93 Iterator<ImageWriter> writers = ImageIO.getImageWritersBySuffix(ext); local
94 if (!writers.hasNext()) {
97 ImageWriter writer = writers.next();
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
eloop.c 55 struct eloop_sock_table writers; member in struct:eloop_data
206 return &eloop.writers;
464 eloop.writers.count > 0 || eloop.exceptions.count > 0)) {
480 eloop_sock_table_set_fds(&eloop.writers, wfds);
509 eloop_sock_table_dispatch(&eloop.writers, wfds);
551 eloop_sock_table_destroy(&eloop.writers);
  /external/wpa_supplicant_8/src/utils/
eloop.c 61 struct eloop_sock_table writers; member in struct:eloop_data
268 return &eloop.writers;
518 eloop.writers.count > 0 || eloop.exceptions.count > 0)) {
533 eloop_sock_table_set_fds(&eloop.writers, wfds);
563 eloop_sock_table_dispatch(&eloop.writers, wfds);
605 eloop_sock_table_destroy(&eloop.writers);

Completed in 2552 milliseconds

1 2 3 4 5 6 7 8