HomeSort by relevance Sort by last modified time
    Searched refs:which (Results 1 - 25 of 3519) 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)
  /ndk/
ndk-build 45 ABS_GNUMAKE=`which $GNUMAKE 2> /dev/null`
54 GNUMAKE=`which make 2> /dev/null`
  /bootable/recovery/
default_recovery_ui.c 67 int device_perform_action(int which) {
68 return which;
recovery_ui.h 30 // *key_pressed is an array of KEY_MAX+1 bytes indicating which other
36 // *key_pressed is an array of KEY_MAX+1 bytes indicating which other
53 // Perform a recovery action selected from the menu. 'which' will be
58 extern int device_perform_action(int which);
  /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
  /device/samsung/tuna/recovery/
recovery_ui.c 41 // devices, which will make the wipe_data operation fail (trying
109 int device_perform_action(int which) {
110 return which == 1 ? ITEM_APPLY_CACHE : which;
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
YesNoCancelDialogBuilder.java 20 public void onClick(DialogInterface dialog, int which) {
27 public void onClick(DialogInterface dialog, int which) {
34 public void onClick(DialogInterface dialog, int which) {
  /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 4 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
  /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/chromium/chrome/common/extensions/docs/build/
build.sh 17 GCLIENT_PATH=$(which gclient)

Completed in 1564 milliseconds

1 2 3 4 5 6 7 8 91011>>