/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_name_folder_controller.h | 55 - (IBAction)ok:(id)sender;
|
/external/oprofile/libpp/ |
populate_for_spu.cpp | 55 bool ok = ip.error == image_ok; local 72 ok); 78 ok); 82 if (!ok && ip.error == image_ok)
|
/external/webkit/Source/JavaScriptCore/runtime/ |
Identifier.h | 63 static uint32_t toUInt32(const UString&, bool& ok); 64 uint32_t toUInt32(bool& ok) const { return toUInt32(m_string, ok); } 65 unsigned toArrayIndex(bool& ok) const;
|
/external/webkit/Source/WebCore/platform/leveldb/ |
LevelDBDatabase.cpp | 111 if (!s.ok()) { 128 return m_db->Put(writeOptions, makeSlice(key), makeSlice(value)).ok(); 136 return m_db->Delete(writeOptions, makeSlice(key)).ok(); 142 if (!m_db->Get(leveldb::ReadOptions(), makeSlice(key), &result).ok())
|
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/ |
ConfirmationActivity.java | 17 findViewById(R.id.ok).setOnClickListener(new View.OnClickListener() {
|
/frameworks/wilhelm/src/itf/ |
IObject.c | 96 int ok = pthread_mutex_lock(&theOneTrueMutex); local 97 assert(0 == ok); 99 ok = pthread_mutex_unlock(&theOneTrueMutex); 100 assert(0 == ok); 349 // Can't get interface on an unrealized object unless pre-realize is ok 528 // destroy. It is OK to unlock the mutex temporarily, as it long as it re-locks the mutex 771 int ok; local 772 ok = pthread_mutex_init(&thiz->mMutex, (const pthread_mutexattr_t *) NULL); 773 assert(0 == ok); 780 ok = pthread_cond_init(&thiz->mCond, (const pthread_condattr_t *) NULL) 793 int ok; local [all...] |
/libcore/luni/src/test/java/tests/security/spec/ |
MGF1ParameterSpecTest.java | 67 } catch (NullPointerException ok) {
|
/packages/apps/Email/src/com/android/email/ |
RequireManualSyncDialog.java | 32 setButton(DialogInterface.BUTTON_POSITIVE, context.getString(android.R.string.ok), this);
|
/external/webkit/Source/WebCore/wml/ |
WMLInputElement.cpp | 469 bool ok = true; local 474 ok = !WTF::isASCIIDigit(inChar) && !WTF::isASCIILower(inChar) && WTF::isASCIIPrintable(inChar); 477 ok = !WTF::isASCIIDigit(inChar) && !WTF::isASCIIUpper(inChar) && WTF::isASCIIPrintable(inChar); 480 ok = WTF::isASCIIDigit(inChar); 483 ok = !WTF::isASCIIAlpha(inChar) && WTF::isASCIIPrintable(inChar); 486 ok = !WTF::isASCIILower(inChar) && WTF::isASCIIPrintable(inChar); 489 ok = !WTF::isASCIIUpper(inChar) && WTF::isASCIIPrintable(inChar); 492 ok = WTF::isASCIIPrintable(inChar); 495 ok = WTF::isASCIIPrintable(inChar); 498 ok = (mask == inChar) [all...] |
/external/chromium/chrome/browser/net/ |
resolve_proxy_msg_helper.cc | 67 bool ok = GetProxyService(&proxy_service_); local 69 if (!ok) {
|
/external/chromium/net/base/ |
host_mapping_rules.cc | 105 bool ok = AddRuleFromString(rules.token()); local 106 LOG_IF(ERROR, !ok) << "Failed parsing rule: " << rules.token();
|
/external/guava/guava-tests/test/com/google/common/collect/ |
InternersTest.java | 47 } catch (NullPointerException ok) {} 64 } catch (NullPointerException ok) {}
|
/external/yaffs2/yaffs2/ |
yaffs_checkptrw.c | 222 int ok = 1; local 232 while(i < nBytes && ok) { 245 ok = yaffs_CheckpointFlushBuffer(dev); 255 int ok = 1; local 266 while(i < nBytes && ok) { 278 ok = 0; 292 ok = 0; 303 if(ok){
|
/sdk/manifmerger/src/com/android/manifmerger/ |
Main.java | 67 boolean ok = mm.process( 72 System.exit(ok ? 0 : 1);
|
/external/chromium/chrome/browser/password_manager/ |
password_store_x.cc | 201 bool ok = PasswordStoreDefault::FillAutofillableLogins(&forms) && local 203 if (ok) { 210 ok = false; 228 ok = false; 230 if (ok) { 247 ssize_t result = ok ? forms.size() : -1;
|
/external/openssl/crypto/rsa/ |
rsa_gen.c | 105 int bitsp,bitsq,ok= -1,n=0; local 158 ok = 0; /* we set our own err */ 219 ok=1; 221 if (ok == -1) 224 ok=0; 232 return ok;
|
/external/openssl/crypto/x509v3/ |
v3_prn.c | 115 int ok = 1; local 127 ok = 0; 148 ok = 0; 154 if(!method->i2r(method, ext_str, out, indent)) ok = 0; 155 } else ok = 0; 162 return ok;
|
/external/valgrind/main/memcheck/tests/ |
varinfo6.stdout.exp | 20 bit 24 0 OK really ok! 21 bit 27 0 OK really ok! 29 all ok
|
/external/webkit/Source/JavaScriptCore/wtf/text/ |
AtomicString.h | 88 int toInt(bool* ok = 0) const { return m_string.toInt(ok); } 89 double toDouble(bool* ok = 0) const { return m_string.toDouble(ok); } 90 float toFloat(bool* ok = 0) const { return m_string.toFloat(ok); }
|
StringImpl.cpp | 411 int StringImpl::toIntStrict(bool* ok, int base) 413 return charactersToIntStrict(m_data, m_length, ok, base); 416 unsigned StringImpl::toUIntStrict(bool* ok, int base) 418 return charactersToUIntStrict(m_data, m_length, ok, base); 421 int64_t StringImpl::toInt64Strict(bool* ok, int base) 423 return charactersToInt64Strict(m_data, m_length, ok, base); 426 uint64_t StringImpl::toUInt64Strict(bool* ok, int base) 428 return charactersToUInt64Strict(m_data, m_length, ok, base); 431 intptr_t StringImpl::toIntPtrStrict(bool* ok, int base) 433 return charactersToIntPtrStrict(m_data, m_length, ok, base) [all...] |
/external/webkit/Source/WebCore/bindings/v8/ |
V8Binding.h | 117 int toInt32(v8::Handle<v8::Value> value, bool& ok); 122 bool ok; local 123 return toInt32(value, ok); 128 uint32_t toUInt32(v8::Handle<v8::Value> value, bool& ok); 133 bool ok; local 134 return toUInt32(value, ok);
|
/frameworks/wilhelm/src/desktop/ |
SndFile.c | 159 case SL_DATAFORMAT_NULL: // OK to omit the data format 253 int ok; local 254 ok = pthread_mutex_init(&thiz->mSndFile.mMutex, (const pthread_mutexattr_t *) NULL); 255 assert(0 == ok); 282 int ok; local 283 ok = pthread_mutex_destroy(&thiz->mSndFile.mMutex); 284 assert(0 == ok);
|
/external/webkit/Source/WebCore/svg/animation/ |
SVGSMILElement.cpp | 200 // OK, but we don't want to die inside the call. 222 bool ok; local 226 result = parse.left(parse.length() - 1).toDouble(&ok) * 60 * 60; 228 result = parse.left(parse.length() - 3).toDouble(&ok) * 60; 230 result = parse.left(parse.length() - 2).toDouble(&ok) / 1000; 232 result = parse.left(parse.length() - 1).toDouble(&ok); 234 result = parse.toDouble(&ok); 235 if (!ok) 252 bool ok; local 256 result += parse.substring(0, 2).toUIntStrict(&ok) * 60 * 60 286 bool ok; local [all...] |
/external/openssl/crypto/ui/ |
ui_openssl.c | 356 int ok = 0; local 375 if ((ok = read_string_inner(ui, uis, 377 return ok; 413 int ok; local 420 ok=0; 455 ok=1; 459 ok=-1; 462 ok=0; 467 ok=1; 471 return ok; [all...] |
/frameworks/wilhelm/tests/listening/ |
slesTest_playMuteSolo.cpp | 90 int ok; local 91 ok = pthread_mutex_lock(&mutex); 92 assert(ok == 0); 94 ok = pthread_cond_signal(&cond); 95 assert(ok == 0); 96 ok = pthread_mutex_unlock(&mutex); 97 assert(ok == 0);
|