Searched refs:ok (Results 51 - 75 of 1114) sorted by relevance

1234567891011>>

/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dtest4-expected.cc16 scoped_refptr<Foo> ok(new Foo);
17 ExpectsRawPtr(ok.get());
H A Dtest4-original.cc16 scoped_refptr<Foo> ok(new Foo);
17 ExpectsRawPtr(ok);
/external/chromium_org/base/
H A Dbase64_unittest.cc17 bool ok; local
22 ok = Base64Decode(encoded, &decoded);
23 EXPECT_TRUE(ok);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-create-exception.js39 var ok = false;
52 ok = true;
55 assertTrue(ok);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/mstools/
H A Ddownload-mstools2 ok=1
5 ok=
9 if test -n "$ok"; then
21 ok=1
27 ok=
35 ok=
38 if test -z "$ok"; then
/external/mesa3d/src/gallium/state_trackers/d3d1x/mstools/
H A Ddownload-mstools2 ok=1
5 ok=
9 if test -n "$ok"; then
21 ok=1
27 ok=
35 ok=
38 if test -z "$ok"; then
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_state_inlines.h216 boolean ok; local
220 ok = (nr >= 1);
221 assert(ok);
224 ok = (nr >= 2) && (nr % 2) == 0;
225 assert(ok);
228 ok = (nr >= 2);
229 assert(ok);
232 ok = (nr >= 3) && (nr % 3) == 0;
233 assert(ok);
236 ok
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state_inlines.h216 boolean ok; local
220 ok = (nr >= 1);
221 assert(ok);
224 ok = (nr >= 2) && (nr % 2) == 0;
225 assert(ok);
228 ok = (nr >= 2);
229 assert(ok);
232 ok = (nr >= 3) && (nr % 3) == 0;
233 assert(ok);
236 ok
[all...]
/external/openssl/crypto/des/
H A Dread2pwd.c119 int ok; local
122 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
126 return(ok);
132 int ok; local
135 if ((ok=UI_UTIL_read_pw(buf,buff,BUFSIZ,prompt,verify)) == 0)
139 return(ok);
/external/chromium_org/remoting/webapp/unittests/
H A Dmenu_button_unittest.js38 ok(menu.offsetWidth == 0 && menu.offsetHeight == 0);
40 ok(menu.offsetWidth != 0 && menu.offsetHeight != 0);
47 ok(menu.offsetWidth == 0 && menu.offsetHeight == 0);
58 ok(menu.offsetWidth == 0 && menu.offsetHeight == 0);
66 ok(menu.offsetWidth == 0 && menu.offsetHeight == 0);
70 ok(!onShow.called);
72 ok(onShow.called);
73 ok(!onHide.called);
75 ok(onHide.called);
81 ok(styl
[all...]
/external/chromium_org/third_party/WebKit/Tools/qunit/test/
H A Dtest.js3 ok(true);
7 ok(true);
8 ok(true);
9 ok(true);
13 ok(true);
18 ok(true);
24 ok(true);
28 ok(true);
36 ok(true);
39 ok(tru
[all...]
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dbuilder.cc31 if (!s.ok()) {
44 if (s.ok()) {
46 if (s.ok()) {
56 if (s.ok()) {
59 if (s.ok()) {
65 if (s.ok()) {
76 if (!iter->status().ok()) {
80 if (s.ok() && meta->file_size > 0) {
/external/chromium_org/v8/test/webkit/
H A Ddfg-dead-min-one-arg.js33 var ok = null; variable
39 x = {f:{valueOf:function(){ ok = i; return 37; }}};
44 shouldBe("ok", "" + i);
H A Ddfg-dead-min-two-args.js40 var ok = null; variable
46 x = {f:{valueOf:function(){ ok = i; return 37; }}};
51 shouldBe("ok", "" + i);
57 ok = null;
62 y = {f:{valueOf:function(){ ok = i; return 37; }}};
67 shouldBe("ok", "" + i);
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DCommonToken.pm23 ok(ANTLR::Runtime::Token->EOF_TOKEN == ANTLR::Runtime::Token->EOF_TOKEN);
24 ok(ANTLR::Runtime::Token->SKIP_TOKEN == ANTLR::Runtime::Token->SKIP_TOKEN);
28 ok !(ANTLR::Runtime::Token->EOF_TOKEN != ANTLR::Runtime::Token->EOF_TOKEN);
29 ok !(ANTLR::Runtime::Token->SKIP_TOKEN != ANTLR::Runtime::Token->SKIP_TOKEN);
33 ok !ANTLR::Runtime::Token->EOF_TOKEN;
/external/clang/test/CXX/expr/expr.const/
H A Dp5-0x.cpp17 X<a> x; // ok, unique conversion to int
25 } constexpr ok; variable in typeref:struct:OK
37 constexpr int test_ok = ok; // ok
38 constexpr int test_explicit(expl); // ok
39 constexpr int test_ambiguous = ambig; // ok
47 auto new1 = new int[1][ok];
55 enum1 = ok,
64 alignas(ok) int alignas1;
73 int array1[ok];
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaConstraintsImpl.cpp66 bool ok = constraintsDictionary.get(mandatoryName, mandatoryConstraintsDictionary); local
67 if (!ok || mandatoryConstraintsDictionary.isUndefinedOrNull())
71 ok = mandatoryConstraintsDictionary.getOwnPropertiesAsStringHashMap(mandatoryConstraintsHashMap);
72 if (!ok)
83 bool ok = DictionaryHelper::get(constraintsDictionary, optionalName, optionalConstraints); local
84 if (!ok || optionalConstraints.isUndefinedOrNull())
88 ok = optionalConstraints.length(numberOfConstraints);
89 if (!ok)
94 ok = optionalConstraints.get(i, constraint);
95 if (!ok || constrain
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
H A Dzcgunzip.cc61 bool ok; local
62 ok = in.Next(&inptr, &inlen);
63 if (!ok) {
/external/protobuf/src/google/protobuf/testing/
H A Dzcgunzip.cc61 bool ok; local
62 ok = in.Next(&inptr, &inlen);
63 if (!ok) {
/external/chromium_org/v8/src/
H A Dinterface.h64 bool* ok) {
65 DoAdd(name, name->hash(), interface, zone, ok);
70 void Unify(Interface* that, Zone* zone, bool* ok);
73 void MakeValue(bool* ok) { argument
74 *ok = !IsModule();
75 if (*ok) Chase()->flags_ |= VALUE;
79 void MakeConst(bool* ok) { argument
80 *ok = !IsModule() && (IsConst() || !IsFrozen());
81 if (*ok) Chase()->flags_ |= VALUE + CONST;
85 void MakeModule(bool* ok) { argument
63 Add(const AstRawString* name, Interface* interface, Zone* zone, bool* ok) argument
91 Freeze(bool* ok) argument
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/infobars/
H A Dconfirm_infobar_controller.h12 - (IBAction)ok:(id)sender;
/external/chromium_org/third_party/boringssl/src/crypto/md5/
H A Dmd5_test.c80 int ok = 1; local
94 ok = 0;
98 if (ok) {
102 return ok ? 0 : 1;
/external/chromium_org/third_party/boringssl/src/crypto/rand/
H A Dwindows.c38 int ok; local
54 ok = global_provider_init;
58 if (!ok) {
60 return ok;
/external/chromium_org/third_party/webrtc/base/
H A Dfilelock.cc44 bool ok = false; local
47 ok = stream->OpenShare(path, "a", _SH_DENYRW, NULL);
49 ok = stream->Open(path, "a", NULL) && stream->TryLock();
51 if (ok) {
/external/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/
H A Dcodecvt_base.pass.cpp15 // enum result {ok, partial, error, noconv};
23 assert(std::codecvt_base::ok == 0);

Completed in 1323 milliseconds

1234567891011>>