HomeSort by relevance Sort by last modified time
    Searched refs:ok (Results 626 - 650 of 814) sorted by null

<<21222324252627282930>>

  /packages/apps/VideoEditor/src/com/android/videoeditor/
ProjectsActivity.java 198 getString(android.R.string.ok),
267 // A workaround to handle the OK button. We can't access the button with getButton()
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
codecvt.h 50 ok, enumerator in enum:codecvt_base::result
99 * all the input is converted, returns codecvt_base::ok. If no
142 * state could be reset and data written, returns codecvt_base::ok. If
179 * all the input is converted, returns codecvt_base::ok. If no
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
codecvt.h 50 ok, enumerator in enum:codecvt_base::result
99 * all the input is converted, returns codecvt_base::ok. If no
142 * state could be reset and data written, returns codecvt_base::ok. If
179 * all the input is converted, returns codecvt_base::ok. If no
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
codecvt.h 50 ok, enumerator in enum:codecvt_base::result
99 * all the input is converted, returns codecvt_base::ok. If no
142 * state could be reset and data written, returns codecvt_base::ok. If
179 * all the input is converted, returns codecvt_base::ok. If no
  /external/icu4c/tools/genpname/
genpname.cpp 1014 UBool ok = TRUE; local
1021 ok = FALSE;
1024 if (!ok) {
    [all...]
  /external/openssl/apps/
x509.c 156 static int MS_CALLBACK callb(int ok, X509_STORE_CTX *ctx);
467 /* ok */
621 BIO_printf(bio_err,"Signature ok\n");
1204 static int MS_CALLBACK callb(int ok, X509_STORE_CTX *ctx)
1209 /* it is ok to use a self signed certificate
1210 * This case will catch both the initial ok == 0 and the
1211 * final ok == 1 calls to this function */
1219 if (ok)
    [all...]
  /external/openssl/crypto/ec/
ec_lib.c 253 int ok = 0; local
260 ok = 1;
263 if (!ok)
  /external/ppp/pppd/
tty.c 623 int ipipe[2], opipe[2], ok; local
632 ok = device_script(ptycommand, opipe[0], ipipe[1], 1) == 0
638 if (!ok)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/
SDL_cgxvideo.c 995 int ok=0; local
1030 ok=1;
1042 if(!ok)
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
d3basics.c 501 Bool ok; local
588 ok = get_Dwarf_Reg( &a1, fbval.word, regs );
589 if (!ok) return fbval; /* propagate failure */
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
FrameLoaderClientImpl.cpp     [all...]
  /external/webp/src/enc/
picture.c 607 int ok; local
623 ok = import(&pic, rgba, stride) && WebPEncode(&config, &pic);
625 if (!ok) {
  /external/wpa_supplicant_8/src/wps/
wps_upnp_web.c 250 wpabuf_put_str(buf, "200 OK\r\n");
296 * HTTP/1.1 200 OK
375 "HTTP/1.1 200 OK\r\n"
512 int ok = 0; local
587 ok = 1;
590 if (!ok) {
723 "HTTP/1.1 200 OK\r\n"
837 * HTTP/1.1 200 OK
900 * HTTP/1.1 200 OK
1126 * HTTP/1.1 200 OK
    [all...]
  /external/libxslt/libxslt/
xsltutils.c 1816 BOOL ok; local
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-aix5.c 177 pthread_exit() with argument PTHREAD_CANCELED. Returns True if ok,
201 return True; /* ok */
274 Bool ok; local
276 ok = VG_(get_fnname_w_offset)(pc, name, 100);
277 if (!ok) VG_(strcpy)(name, "???");
875 // ok, etc.
2436 Bool ok = ML_(aix5_force_thread_into_pthread_exit)(tid); local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
wpa.c 1267 int ok = 0; local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Tab.java 546 .setPositiveButton(R.string.ok, null)
698 * Check with the user if it is ok to resend POST data as the page they
719 .setPositiveButton(R.string.ok,
    [all...]
  /dalvik/vm/oo/
Class.cpp 390 bool ok = true; local
391 ok &= createPrimitiveType(PRIM_VOID, &gDvm.typeVoid);
392 ok &= createPrimitiveType(PRIM_BOOLEAN, &gDvm.typeBoolean);
393 ok &= createPrimitiveType(PRIM_BYTE, &gDvm.typeByte);
394 ok &= createPrimitiveType(PRIM_SHORT, &gDvm.typeShort);
395 ok &= createPrimitiveType(PRIM_CHAR, &gDvm.typeChar);
396 ok &= createPrimitiveType(PRIM_INT, &gDvm.typeInt);
397 ok &= createPrimitiveType(PRIM_LONG, &gDvm.typeLong);
398 ok &= createPrimitiveType(PRIM_FLOAT, &gDvm.typeFloat);
399 ok &= createPrimitiveType(PRIM_DOUBLE, &gDvm.typeDouble)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 243 // Ok, at this point, we know that we are masking the result of the
599 bool ok = false; local
602 A = R11; D = R12; E = R2; ok = true;
606 A = R12; D = R11; E = R2; ok = true;
609 if (!ok && match(R2, m_And(m_Value(R11), m_Value(R12)))) {
611 A = R11; D = R12; E = R1; ok = true;
615 A = R12; D = R11; E = R1; ok = true;
620 if (!ok)
    [all...]
  /external/valgrind/main/coregrind/m_aspacemgr/
aspacemgr-aix5.c 223 Bool ok = sane_AixSegments(&asegs_pri); \
224 if (!ok) \
227 aspacem_assert(ok); \
1342 Bool ok = sane_AixSegments( &asegs_pri ); local
    [all...]
  /external/icu4c/test/intltest/
numfmtst.cpp 901 UBool ok = TRUE; local
903 ok = FALSE;
919 ok = FALSE;
924 if (!ok) {
929 logln((UnicodeString)"Ok " + l +
5840 UBool ok = FALSE; local
5866 UBool ok = TRUE; local
    [all...]
dtfmrgts.cpp 204 logln(" ok");
409 UBool ok = FALSE; local
413 ok = TRUE;
415 //} catch (ParseException e) {ok=TRUE;}
416 if(!ok)
519 // {sfb} Is it OK to cast away const here?
547 logln("DateFormat.equals ok");
595 logln("Ok: " + s + " " + d);
    [all...]
  /external/wpa_supplicant/
wpa.c 3169 int ok = 0; local
3218 int ok = 0; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DataUsageSummary.java     [all...]
  /external/icu4c/common/
uniset_props.cpp 777 UBool ok = FALSE; local
782 ok = TRUE;
787 if (buf.length() < 1 || !ok) {
    [all...]

Completed in 1178 milliseconds

<<21222324252627282930>>