Searched refs:ok (Results 201 - 225 of 1135) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketPerMessageDeflate.cpp107 bool ok = false; local
108 windowBits = c2sMaxWindowBits->value.toIntStrict(&ok);
109 if (!ok || windowBits < 8 || windowBits > 15 || c2sMaxWindowBits->value[0] == '+' || c2sMaxWindowBits->value[0] == '0') {
127 bool ok = false; local
128 int bits = s2cMaxWindowBits->value.toIntStrict(&ok);
129 if (!ok || bits < 8 || bits > 15 || s2cMaxWindowBits->value[0] == '+' || s2cMaxWindowBits->value[0] == '0') {
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
H A Dloader_unittests.js52 // and then 2 per builder (one for ok, one for deepEqual of tests).
61 ok('secondsSinceEpoch' in g_resultsByBuilder[builderName]);
110 ok(defaultBuilder, "Default builder should exist.");
117 ok(newDefaultBuilder, "There should still be a default builder.");
/external/chromium_org/third_party/skia/src/xml/
H A DSkJS.cpp110 JSBool ok, found; local
122 ok = JS_TRUE;
128 ok = JS_FALSE;
139 ok = (fun != NULL);
140 if (ok)
146 return ok;
/external/iproute2/tc/
H A Dm_skbedit.c56 int ok = 0; local
77 ok++;
85 ok++;
93 ok++;
132 ok++;
136 if (!ok) {
/external/openssh/
H A Dauth-passwd.c84 int result, ok = authctxt->valid; local
91 ok = 0;
100 return ret && ok;
111 return ok;
116 return (sshpam_auth_passwd(authctxt, password) && ok);
128 return (result && ok);
/external/oprofile/libutil++/
H A Dchild_reader.cpp167 bool ok = true; local
179 while (temp_pos < end1 && ok) {
182 ok = false;
185 // !ok ==> endl has been read so do not copy it.
186 result.append(&buf1[pos1], (temp_pos - pos1) - !ok);
188 if (!ok || !end1)
194 if (ok && temp != end2)
H A Dop_spu_bfd.cpp43 extra_images const & extra_images, bool & ok)
67 if (!ok)
73 ok = false;
79 ok = false;
88 ok = false;
112 ok = false;
41 op_bfd(uint64_t spu_offset, string const & fname, string_filter const & symbol_filter, extra_images const & extra_images, bool & ok) argument
/external/skia/src/xml/
H A DSkJS.cpp110 JSBool ok, found; local
122 ok = JS_TRUE;
128 ok = JS_FALSE;
139 ok = (fun != NULL);
140 if (ok)
146 return ok;
/external/webp/examples/
H A Ddwebp.c253 int ok = 1; local
264 for (y = 0; ok && y < height; ++y) {
265 ok &= (fwrite(yuv->y + y * yuv->y_stride, width, 1, fout) == 1);
271 for (y = 0; ok && y < uv_height; ++y) {
272 ok &= (fwrite(yuv->u + y * yuv->u_stride, uv_width, 1, fout) == 1);
273 ok &= (fwrite(yuv->v + y * yuv->v_stride, uv_width, 1, fout) == 1);
276 for (y = 0; ok && y < uv_height; ++y) {
277 ok &= (fwrite(yuv->u + y * yuv->u_stride, uv_width, 1, fout) == 1);
279 for (y = 0; ok && y < uv_height; ++y) {
280 ok
296 int ok = 1; local
449 int ok; local
[all...]
/external/apache-http/src/org/apache/http/message/
H A DBasicLineParser.java157 boolean ok = true;
158 for (int j=0; ok && (j<protolength); j++) {
159 ok = (buffer.charAt(i+j) == protoname.charAt(j));
161 if (ok) {
162 ok = (buffer.charAt(i+protolength) == '/');
164 if (!ok) {
259 boolean ok = true;
260 for (int j=0; ok && (j<protolength); j++) {
261 ok = (buffer.charAt(index+j) == protoname.charAt(j));
263 if (ok) {
[all...]
/external/chromium/chrome/browser/autofill/
H A Dphone_field.cc139 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
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dlog_writer.cc71 } while (s.ok() && left > 0);
92 if (s.ok()) {
94 if (s.ok()) {
/external/chromium_org/third_party/openssl/openssl/crypto/dsa/
H A Ddsa_key.c94 int ok=0; local
136 ok=1;
142 return(ok);
/external/chromium_org/third_party/openssl/openssl/crypto/evp/
H A Dp_sign.c83 int i = 0,ok = 0,v; local
121 ok=1;
125 if (!ok)
/external/e2fsprogs/lib/e2p/
H A Dmntopts.c97 * Edit a mntopt set array as requested by the user. The ok
101 int e2p_edit_mntopts(const char *str, __u32 *mntopts, __u32 ok) argument
133 if (ok && !(ok & mask)) {
/external/openssl/crypto/dsa/
H A Ddsa_key.c94 int ok=0; local
136 ok=1;
142 return(ok);
/external/openssl/crypto/evp/
H A Dp_sign.c83 int i = 0,ok = 0,v; local
121 ok=1;
125 if (!ok)
/external/oprofile/libpp/
H A Dpopulate.cpp68 bool ok = ip.error == image_ok; local
70 samples.extra_found_images, ok);
71 if (!ok && ip.error == image_ok)
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/spec/
H A DECParameterSpec_ImplTest.java83 } catch (NullPointerException ok) {
91 } catch (NullPointerException ok) {
99 } catch (NullPointerException ok) {
107 } catch (NullPointerException ok) {
131 } catch (IllegalArgumentException ok) {
139 } catch (IllegalArgumentException ok) {
147 } catch (IllegalArgumentException ok) {
155 } catch (IllegalArgumentException ok) {
163 } catch (IllegalArgumentException ok) {
/external/chromium/chrome/browser/ui/cocoa/
H A Dfirst_run_dialog.h26 - (IBAction)ok:(id)sender;
/external/chromium/chrome/browser/ui/cocoa/location_bar/
H A Dinstant_opt_in_controller.h38 - (IBAction)ok:(id)sender;
/external/chromium/crypto/
H A Dscoped_capi_types.h24 BOOL ok = Destroyer(handle); local
25 DCHECK(ok);
38 BOOL ok = Destroyer(handle, flags); local
39 DCHECK(ok);
/external/chromium/net/proxy/
H A Dproxy_resolver_winhttp.cc68 BOOL ok = WinHttpGetProxyForUrl( local
70 if (!ok) {
73 ok = WinHttpGetProxyForUrl(
77 if (!ok) {
/external/chromium_org/chrome/browser/resources/signin_internals/
H A Dsignin_index.css15 .ok {
45 table.signin-details tr:nth-child(odd).ok {
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dfirst_run_dialog.h25 - (IBAction)ok:(id)sender;

Completed in 1997 milliseconds

1234567891011>>