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

1 23 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
rvalue-references.cpp 38 bool ok; variable
64 ok = false;
77 if (ok)
  /external/iproute2/tc/
m_gact.c 84 } else if (matches(*argv, "pass") == 0 || matches(*argv, "ok") == 0) {
97 int ok = 0; local
114 ok++;
119 ok++;
126 if (ok) {
132 if (ok && argc > 0) {
181 ok++;
187 if (!ok)
m_nat.c 91 int ok = 0; local
105 ok++;
115 if (!ok) {
m_skbedit.c 56 int ok = 0; local
77 ok++;
85 ok++;
93 ok++;
132 ok++;
136 if (!ok) {
q_gred.c 120 int ok=0; local
139 ok++;
141 if (ok) {
153 ok++;
160 ok++;
171 ok++;
178 ok++;
185 ok++;
192 ok++;
197 ok++
    [all...]
  /external/openssl/crypto/asn1/
a_bitstr.c 235 int i, ok; local
240 ok = 1;
241 for (i = 0; i < a->length && ok; ++i)
245 ok = (a->data[i] & mask) == 0;
247 return ok;
  /external/openssl/crypto/conf/
conf_api.c 273 int ok=0,i; local
290 ok=1;
292 if (!ok)
  /external/openssl/crypto/rsa/
rsa_gen.c 90 int bitsp,bitsq,ok= -1,n=0; local
143 ok = 0; /* we set our own err */
204 ok=1;
206 if (ok == -1)
209 ok=0;
217 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/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/qt/api/
qscriptconverter_p.h 47 bool ok; local
48 quint32 idx = qstring.toUInt(&ok);
49 if (!ok || toString(idx) != qstring)
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLCollectionCustom.cpp 71 bool ok; local
73 unsigned index = Identifier::toUInt32(string, ok);
74 if (ok)
82 bool ok; local
84 unsigned index = Identifier::toUInt32(exec->argument(1).toString(exec), ok);
85 if (ok) {
120 bool ok; local
121 uint32_t index = Identifier::toUInt32(exec->argument(0).toString(exec), ok);
122 if (ok)
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8ArrayBufferViewCustom.h 49 bool ok;
53 offset = toUInt32(args[1], ok);
54 if (!ok)
61 length = toUInt32(args[2], ok);
62 if (!ok)
135 bool ok = false; local
136 int32_t tempLength = toInt32(args[0], ok); // NaN/+inf/-inf returns 0, this is intended by WebIDL
137 if (ok && tempLength >= 0) {
V8HTMLOptionsCollectionCustom.cpp 69 bool ok; local
71 int index = toInt32(args[1], ok);
76 if (!ok)
  /external/webkit/Source/WebCore/bridge/
runtime_array.cpp 85 bool ok; local
86 unsigned index = propertyName.toArrayIndex(ok);
87 if (ok) {
106 bool ok; local
107 unsigned index = propertyName.toArrayIndex(ok);
108 if (ok) {
137 bool ok; local
138 unsigned index = propertyName.toArrayIndex(ok);
139 if (ok) {
  /external/webkit/Source/WebCore/html/
HTMLMarqueeElement.cpp 133 bool ok; local
134 int scrollAmount = fastGetAttribute(scrollamountAttr).toInt(&ok);
135 return ok && scrollAmount >= 0 ? scrollAmount : RenderStyle::initialMarqueeIncrement().value();
148 bool ok; local
149 int scrollDelay = fastGetAttribute(scrolldelayAttr).toInt(&ok);
150 return ok && scrollDelay >= 0 ? scrollDelay : RenderStyle::initialMarqueeSpeed();
163 bool ok; local
164 int loopValue = fastGetAttribute(loopAttr).toInt(&ok);
165 return ok && loopValue > 0 ? loopValue : -1;
  /external/webkit/Source/WebCore/platform/
Length.cpp 59 bool ok; local
63 double r = charactersToDouble(data, doubleLength, &ok);
64 if (ok)
68 int r = charactersToIntStrict(data, intLength, &ok);
70 if (ok)
74 if (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){
  /system/media/wilhelm/src/
entry.c 35 int ok; local
36 ok = pthread_mutex_lock(&theOneTrueMutex);
37 assert(0 == ok);
98 ok = pthread_mutex_unlock(&theOneTrueMutex);
99 assert(0 == ok);
170 ok = pthread_mutex_unlock(&theOneTrueMutex);
171 assert(0 == ok);
  /system/media/wilhelm/src/objects/
CEngine.c 178 int ok; local
179 ok = pthread_mutex_lock(&theOneTrueMutex);
180 assert(0 == ok);
185 ok = pthread_mutex_unlock(&theOneTrueMutex);
186 assert(0 == ok);
  /development/host/windows/usb/api/
adb_legacy_interface.cpp 53 bool ok = true; local
57 ok = false;
61 ULONG error = ok ? NO_ERROR : GetLastError();
69 if (!ok) {
  /external/chromium/chrome/browser/autofill/
phone_field.cc 139 bool ok = false; local
147 ok = Add(field_type_map,
150 DCHECK(ok);
153 ok = Add(field_type_map,
156 DCHECK(ok);
160 ok = Add(field_type_map,
163 DCHECK(ok);
167 ok = Add(field_type_map,
170 DCHECK(ok);
173 ok = Add(field_type_map
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
owner_key_utils.cc 89 bool ok = false; local
103 ok = (safe_file_size ==
108 return ok;
  /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/chromium/chrome/browser/ui/
window_sizer_linux.cc 66 gboolean ok; local
69 ok = gdk_property_get(gdk_get_default_root_window(), // a gdk window
79 if (!ok)

Completed in 778 milliseconds

1 23 4 5 6 7 8 91011>>