Searched refs:ok (Results 151 - 175 of 1157) sorted by relevance

1234567891011>>

/external/chromium_org/net/base/
H A Ddata_url_unittest.cc172 bool ok = local
174 EXPECT_EQ(ok, tests[i].is_valid);
H A Dwinsock_util.cc47 BOOL ok = WSAResetEvent(hEvent); local
48 CHECK(ok);
/external/chromium_org/net/cert/
H A Dx509_util_nss_unittest.cc62 bool ok = verifier.VerifyInit( local
70 ASSERT_TRUE(ok);
74 ok = verifier.VerifyFinal();
75 EXPECT_TRUE(ok);
102 SECStatus ok = SEC_StringToOID(arena, &ob_cert_oid, local
105 ASSERT_EQ(SECSuccess, ok);
127 ok = CERT_FindCertExtension(nss_cert,
131 ASSERT_EQ(SECSuccess, ok);
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DRTCIceCandidate.cpp44 bool ok = dictionary.get("candidate", candidate); local
45 if (!ok || !candidate.length()) {
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
H A Dcontrollers_unittests.js85 ok(!failingBuilders.hasFailures());
88 ok(failingBuilders.hasFailures());
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
H A Dtable_builder.h55 // Return non-ok iff some error has been detected.
78 bool ok() const { return status().ok(); } function in class:leveldb::TableBuilder
/external/elfutils/libdwfl/
H A Ddwfl_getmodules.c103 int ok = (*callback) (MODCB_ARGS (m), arg); local
106 if (ok != DWARF_CB_OK)
/external/smack/src/org/apache/harmony/javax/security/sasl/
H A DAuthorizeCallback.java70 public void setAuthorized(boolean ok) { argument
71 authorized = ok;
/external/chromium_org/third_party/leveldatabase/src/db/
H A Drepair.cc72 if (status.ok()) {
77 if (status.ok()) {
119 if (!status.ok()) {
153 if (!status.ok()) {
180 if (!status.ok()) {
211 if (status.ok()) {
231 if (status.ok()) {
264 if (!status.ok()) {
268 if (s2.ok()) {
272 if (!status.ok()) {
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DLexer.pm15 ok defined $lexer;
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
H A DECGenParameterSpecTest.java66 } catch (NullPointerException ok) {}
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DmergeChangeLogs.pl118 ok($exitStatus == 1, "$title: should return 1 for success");
120 ok(readFile($fileMine) eq $fileMineContent, "$title: \$fileMine should be unchanged");
121 ok(readFile($fileOlder) eq $fileOlderContent, "$title: \$fileOlder should be unchanged");
132 ok(readFile($fileNewer) eq $expectedContent, "$title: \$fileNewer should be updated to include patch");
187 ok($exitStatus == 0, "$title: should return 0 for failure");
189 ok(readFile($fileMine) eq $fileMineContent, "$title: \$fileMine should be unchanged");
190 ok(readFile($fileOlder) eq $fileOlderContent, "$title: \$fileOlder should be unchanged");
191 ok(readFile($fileNewer) eq $fileNewerContent, "$title: \$fileNewer should be unchanged");
244 ok($exitStatus == 1, "$title: should return 1 for success");
246 ok(readFil
[all...]
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/
H A Dgraph-view_unittest.js33 ok(lineIsValid(line, length));
/external/chromium_org/ui/base/resource/
H A Dresource_bundle_gtk.cc30 bool ok = data && gdk_pixbuf_loader_write(loader.get(), local
32 if (!ok)
36 ok = gdk_pixbuf_loader_close(loader.get(), NULL);
37 if (!ok)
/external/qemu-pc-bios/bochs/bios/
H A Dapmbios.S177 jmp APMSYM(ok)
184 jmp APMSYM(ok)
198 jmp APMSYM(ok)
213 jmp APMSYM(ok)
221 jmp APMSYM(ok)
230 jmp APMSYM(ok)
239 jne APMSYM(ok)
250 jne APMSYM(ok)
269 jmp APMSYM(ok)
277 jmp APMSYM(ok)
[all...]
/external/chromium-trace/trace-viewer/src/base/
H A Drect.js132 var ok = true;
133 ok &= this.x < that.right;
134 ok &= this.right > that.x;
135 ok &= this.y < that.bottom;
136 ok &= this.bottom > that.y;
137 return ok;
/external/chromium_org/base/
H A Dasync_socket_io_handler_win.cc48 BOOL ok = ::ReadFile(socket_, buffer, buffer_len, &bytes_read, local
53 // in the case where ok is FALSE and GLE==ERROR_IO_PENDING.
54 is_pending_ = !ok && (GetLastError() == ERROR_IO_PENDING);
55 return ok || is_pending_;
/external/chromium_org/third_party/libwebp/utils/
H A Dhuffman.c176 int ok = 0; local
195 ok = 1;
198 ok = ok && IsFull(tree);
199 if (!ok) HuffmanTreeRelease(tree);
200 return ok;
209 int ok = 0; local
231 ok = 1;
233 ok = ok
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/evp/
H A Dp_verify.c70 int i = 0,ok = 0,v; local
103 ok=1;
107 if (!ok)
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashFunctionsTest.java64 } catch (IndexOutOfBoundsException ok) {}
68 } catch (IndexOutOfBoundsException ok) {}
72 } catch (IndexOutOfBoundsException ok) {}
/external/iproute2/tc/
H A Dq_fifo.c33 int ok=0; local
44 ok++;
56 if (ok)
/external/openssh/openbsd-compat/regress/
H A Dstrtonumtest.c41 test(const char *p, long long lb, long long ub, int ok) argument
47 if (ok && q != NULL) {
51 } else if (!ok && q == NULL) {
/external/openssl/crypto/evp/
H A Dp_verify.c70 int i = 0,ok = 0,v; local
103 ok=1;
107 if (!ok)
/external/srec/srec/clib/
H A Dvoc_read.c68 * Read word models and their phoneme transcriptions from .ok or .voc files.
73 const char *ok; local
98 ok = voc->ok_file_data;
102 while (*ok != '=') {
103 if (cr_or_nl(*ok)) {
107 token[i++] = *ok++;
110 ok++;
118 while (!cr_or_nl(*ok)) token[i++] = *ok++;
120 ok
[all...]
/external/webp/src/utils/
H A Dhuffman.c176 int ok = 0; local
195 ok = 1;
198 ok = ok && IsFull(tree);
199 if (!ok) HuffmanTreeRelease(tree);
200 return ok;
209 int ok = 0; local
231 ok = 1;
233 ok = ok
[all...]

Completed in 952 milliseconds

1234567891011>>