HomeSort by relevance Sort by last modified time
    Searched defs:ok (Results 201 - 225 of 412) sorted by null

1 2 3 4 5 6 7 891011>>

  /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...]
WMLSelectElement.cpp 431 bool ok = false; local
436 unsigned parsedValue = (*it).toUIntStrict(&ok);
440 if (!ok || parsedValue < 1 || parsedValue > optionCount)
  /external/webp/src/enc/
syntax.c 252 int ok = 0; local
257 ok = GeneratePartition0(enc);
271 ok = ok && PutHeader(enc->profile_, size0, coded_size, pic)
282 ok = ok && pic->writer(buf, size, pic);
287 if (ok && pad) {
289 ok = pic->writer(pad_byte, 1, pic);
293 return ok;
  /external/wpa_supplicant_8/src/ap/
ap_config.c 187 int line = 0, ret = 0, len, ok; local
244 ok = 0;
247 ok = 1;
251 ok = 1;
253 if (!ok) {
hw_features.c 180 int sec_chan, ok, j, first; local
195 ok = 0;
201 ok = 1;
205 if (!ok) {
225 ok = 0;
228 ok = 1;
232 if (!ok) {
613 int i, j, ok; local
637 ok = 0;
648 ok = 1
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_enrollee.c 708 int ok = 0; local
723 ok++;
730 if (ok == 0) {
    [all...]
  /hardware/ril/mock-ril/src/cpp/
protobuf_v8.cpp 307 bool ok = true; local
315 ok = type->ToProto(repeated ?
391 ok = false;
395 DBG("Type::ToProto(instance, field, value, type, repeated) X: ok=%d", ok);
396 return ok;
405 bool ok = true; local
406 for (int i = 0; ok && (i < descriptor_->field_count()); i++) {
416 ok = ToProto(instance, field, value, child_type, true);
420 for (int j = 0; ok && (j < length); j++)
    [all...]
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.c 129 int ok; local
  /ndk/tests/device/test-gnustl-full/unit/
stack_allocator.h 141 bool ok() const { return m_state.m_isOk && (m_state.m_nbAlloc == 0); } function in struct:StackAllocator
  /ndk/tests/device/test-stlport/unit/
stack_allocator.h 141 bool ok() const { return m_state.m_isOk && (m_state.m_nbAlloc == 0); } function in struct:StackAllocator
  /system/media/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...]
  /system/media/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);
  /system/media/wilhelm/tests/mimeUri/
slesTestSlowDownUri.cpp 136 int ok; local
137 ok = pthread_mutex_lock(&mutex);
138 assert(ok == 0);
140 ok = pthread_cond_signal(&cond);
141 assert(ok == 0);
142 ok = pthread_mutex_unlock(&mutex);
143 assert(ok == 0);
  /system/media/wilhelm/tests/native-media/jni/
native-media-jni.c 103 int ok; local
109 ok = pthread_mutex_lock(&mutex);
110 assert(0 == ok);
126 ok = pthread_cond_signal(&cond);
127 assert(0 == ok);
219 ok = pthread_mutex_unlock(&mutex);
220 assert(0 == ok);
538 int ok; local
539 ok = pthread_mutex_lock(&mutex);
540 assert(0 == ok);
    [all...]
  /system/media/wilhelm/tests/sandbox/
xaplay.c 116 int ok; local
117 ok = pthread_mutex_lock(&mutex);
118 assert(ok == 0);
120 ok = pthread_cond_signal(&cond);
121 assert(ok == 0);
122 ok = pthread_mutex_unlock(&mutex);
123 assert(ok == 0);
253 int ok; local
255 ok = fstat(fd, &statbuf);
256 if (ok < 0)
    [all...]
  /external/chromium/chrome/browser/autofill/
form_field.cc 93 bool ok = Add(field_type_map, field_, AutofillType(EMAIL_ADDRESS)); local
94 DCHECK(ok);
form_structure.cc 529 bool ok = (*field)->GetFieldInfo(field_type_map); local
530 DCHECK(ok);
  /external/chromium/chrome/browser/password_manager/
native_backend_gnome_x.cc 120 // We leak the library handle. That's OK: this function is called only once.
135 // that whoever is compiling this code has checked that the version is OK.
700 bool ok = true; local
719 ok = false;
723 return ok;
746 bool ok = true; local
757 ok = false;
761 return ok;
    [all...]
  /external/chromium/chrome/browser/ui/webui/
gpu_internals_ui.cc 251 bool ok; local
253 ok = args->Get(0, &requestId);
254 DCHECK(ok);
257 ok = args->GetString(1, &submessage);
258 DCHECK(ok);
263 ok = args->Get(i, &arg);
264 DCHECK(ok);
409 bool ok = list->GetString(0, trace_data); local
410 DCHECK(ok);
589 // TODO(jbates) This may fail, but that's OK for current use cases
    [all...]
  /external/chromium/net/base/
x509_certificate.cc 184 BOOL ok = CertAddEncodedCertificateToStore( local
188 return ok ? cert_handle : NULL;
253 bool ok = !!cert_handle; local
260 ok &= !!intermediate;
261 if (ok) {
    [all...]
  /external/chromium/net/socket/
tcp_client_socket_libevent.cc 168 // If already connected, then just return OK.
170 return OK;
186 int rv = DoConnectLoop(OK);
207 DCHECK_EQ(OK, rv);
249 return OK;
260 return OK;
267 return OK;
293 if (result != OK)
299 if (result == OK) {
301 return OK; // Done
640 bool ok = read_socket_watcher_.StopWatchingFileDescriptor(); local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
openssladapter.cc 650 bool ok = false; local
692 ok = true;
706 if (ok)
712 if (!ok
718 ok = true;
723 if (!ok && ignore_bad_cert) {
726 ok = true;
729 return ok;
733 bool ok = VerifyServerName(ssl, host, ignore_bad_cert()); local
735 if (ok) {
    [all...]
  /external/icu4c/test/intltest/
tchcfmt.cpp 36 UBool ok = U_SUCCESS(status); local
37 if (!ok) it_errln( msg );
38 return ok;
251 it_logln("status applyPattern OK!");
313 UBool ok = (form_Assigned == *form_A) && (form_Assigned != *form_B); local
315 ok = ok && (form_Assigned != *form_A) && (form_Assigned == *form_B);
316 if (ok) {
478 logln("Ok: " + str);
536 logln((UnicodeString)"Ok: " + x + " => " + str)
    [all...]
  /external/iproute2/tc/
m_ipt.c 279 /* ok, lets give up .. */
398 int iok = 0, ok = 0; local
441 ok++;
454 ok++;
473 if (!ok && !iok) {
  /external/opencv/ml/src/
mlknearest.cpp 96 bool ok = false; local
141 ok = true;
145 return ok;

Completed in 481 milliseconds

1 2 3 4 5 6 7 891011>>