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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/content/
SyncStatusObserver.java 20 void onStatusChanged(int which);
ISyncStatusObserver.aidl 23 void onStatusChanged(int which);
DialogInterface.java 117 * @param which The button that was clicked (e.g.
122 public void onClick(DialogInterface dialog, int which);
134 * @param which The position of the item in the list that was clicked.
137 public void onClick(DialogInterface dialog, int which, boolean isChecked);
  /bionic/libc/unistd/
getpriority.c 32 int getpriority(int which, int who)
34 int result = __getpriority(which, who);
wait.c 32 extern int __waitid(idtype_t which, id_t id, siginfo_t *info, int options, struct rusage *ru);
49 int waitid(idtype_t which, id_t id, siginfo_t *info, int options)
52 return __waitid(which, id, info, options, NULL);
  /dalvik/tests/054-uncaught/src/
Main.java 15 private static void testThread(int which) {
16 Thread t = new Helper(which);
26 static void catchTheUncaught(int which) {
30 System.out.println("Test " + which);
31 switch (which) {
53 private int which; field in class:Main.Helper
55 public Helper(int which) {
56 this.which = which;
60 catchTheUncaught(which);
    [all...]
  /external/bluetooth/bluez/test/
hsplay 3 MPG123=`which mpg123`
4 SOX=`which sox`
5 HSTEST=`which hstest`
hsmicro 3 SOX=`which sox`
4 HSTEST=`which hstest`
  /external/clang/test/
TestRunner.sh 6 Dir=$(dirname $(which $0))
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
AlternativeName.java 31 // constants indicating which alternative name is presented
36 /** indicating which alternative name is presented by this object */
37 private boolean which; field in class:AlternativeName
43 * @param which specifies which alternative names are given
46 public AlternativeName(boolean which, byte[] encoding) throws IOException {
48 this.which = which;
63 sb.append(prefix).append((which) ? "Subject" : "Issuer").append(" Alternative Names [\n");
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncGenerateId.java 47 int which = getArg0AsNode(xctxt); local
49 if (DTM.NULL != which)
57 return new XString("N" + Integer.toHexString(which).toUpperCase());
  /dalvik/tests/047-returns/src/
Main.java 21 public static Runnable pickOne(int which) {
24 if (which == 1)
26 else if (which == 2)
28 else if (which == 3)
  /packages/apps/Calendar/src/com/android/calendar/
EditResponseHelper.java 51 public void setWhichEvents(int which) {
52 mWhichEvents = which;
55 public void onClick(DialogInterface dialog, int which) {
63 public void onClick(DialogInterface dialog, int which) {
64 mWhichEvents = which;
66 // Enable the "ok" button now that the user has selected which
87 // Disable the "Ok" button until the user selects which events to
  /external/chromium/sdch/open-vcdiff/
autogen.sh 18 if test -z `which "$ACLOCAL"`; then
23 if test -z `which "$AUTOMAKE"`; then
29 if test -z `which "$LIBTOOLIZE"`; then
34 # changed, which is annoying when the file is not open for edit (in
  /build/core/
find-jdk-tools-jar.sh 5 JAVAC=$(which javac)
  /external/bluetooth/glib/gobject/
pltcheck.sh 7 if ! which readelf 2>/dev/null >/dev/null; then
  /external/webkit/Source/WebKit/win/WebKit.vcproj/
InterfacesPostBuild.cmd 1 %SystemDrive%\cygwin\bin\which.exe bash
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
YesCancelDialogBuilder.java 19 public void onClick(DialogInterface dialog, int which) {
26 public void onClick(DialogInterface dialog, int which) {
  /external/icu4c/common/
uprops.cpp 48 typedef UBool BinaryPropertyContains(const BinaryProperty &prop, UChar32 c, UProperty which);
56 static UBool defaultContains(const BinaryProperty &prop, UChar32 c, UProperty /*which*/) {
61 static UBool caseBinaryPropertyContains(const BinaryProperty &/*prop*/, UChar32 c, UProperty which) {
62 return ucase_hasBinaryProperty(c, which);
65 static UBool isBidiControl(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
69 static UBool isMirrored(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
73 static UBool isJoinControl(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
82 static UBool hasFullCompositionExclusion(const BinaryProperty &/*prop*/, UChar32 c, UProperty /*which*/) {
96 static UBool isNormInert(const BinaryProperty &/*prop*/, UChar32 c, UProperty which) {
99 (UNormalizationMode)(which-UCHAR_NFD_INERT+UNORM_NFD), errorCode)
    [all...]
  /external/oprofile/include/
sstream 46 stringbuf(int which=ios::in|ios::out)
47 : streambuf(), mode(static_cast<ios::open_mode>(which)),
54 stringbuf(const string &str, int which=ios::in|ios::out)
55 : streambuf(), mode(static_cast<ios::open_mode>(which)),
141 seekoff(off_type off, ios::seek_dir way, int which = ios::in | ios::out)
144 bool testin = which & ios::in && mode & ios::in;
145 bool testout = which & ios::out && mode & ios::out;
197 seekpos(pos_type sp, int which = ios::in | ios::out)
199 pos_type ret = seekoff(sp, ios::beg, which);
239 istringstream(int which=ios::in
    [all...]
  /external/checkpolicy/
policy_define.h 16 avrule_t *define_cond_compute_type(int which);
18 avrule_t *define_cond_te_avtab(int which);
28 int define_compute_type(int which);
56 int define_te_avtab(int which);
  /external/chromium/chrome/common/extensions/docs/build/
build.sh 17 GCLIENT_PATH=$(which gclient)
  /external/icu4c/test/intltest/
citrtest.h 40 void TestUCharIterator(UCharIterator *iter, CharacterIterator &ci, const char *moves, const char *which);
  /gdk/
gdk-build 68 ABS_GNUMAKE=`which $GNUMAKE 2> /dev/null`
77 GNUMAKE=`which make 2> /dev/null`
  /external/webkit/Tools/android/flex-2.5.4a/MISC/VMS/
vms-code.c 24 int i, oargc, punct, which, append, alt_rfm; local
63 which = (p[1] == '&' ? ERR_FD : OUT_FD);
64 if (which == ERR_FD) ++p;
65 mode[which] = append ? "a" : "w";
66 rfm[which] = alt_rfm ? "rfm=var" : "rfm=stmlf";
67 name[which] = ++p;
69 name[which] = (*iargv)[++i];

Completed in 905 milliseconds

1 2 3 4 5 6 7 8 91011>>