Searched refs:ok (Results 101 - 125 of 1157) sorted by relevance

1234567891011>>

/external/v8/src/
H A Dpreparser.cc63 bool ok = true; local
65 ParseLazyFunctionLiteralBody(&ok);
67 if (!ok) {
73 CheckOctalLiteral(start_position, end_pos, &ok);
74 if (ok) {
75 CheckDelayedStrictModeViolation(start_position, end_pos, &ok);
130 void PreParser::CheckOctalLiteral(int beg_pos, int end_pos, bool* ok) { argument
135 *ok = false;
140 #define CHECK_OK ok); \
141 if (!*ok) retur
147 ParseSourceElement(bool* ok) argument
170 ParseSourceElements(int end_token, bool* ok) argument
199 ParseStatement(bool* ok) argument
294 ParseFunctionDeclaration(bool* ok) argument
319 ParseBlock(bool* ok) argument
339 ParseVariableStatement( VariableDeclarationContext var_context, bool* ok) argument
359 ParseVariableDeclarations( VariableDeclarationContext var_context, VariableDeclarationProperties* decl_props, int* num_decl, bool* ok) argument
470 ParseExpressionOrLabelledStatement(bool* ok) argument
493 ParseIfStatement(bool* ok) argument
510 ParseContinueStatement(bool* ok) argument
527 ParseBreakStatement(bool* ok) argument
544 ParseReturnStatement(bool* ok) argument
570 ParseWithStatement(bool* ok) argument
591 ParseSwitchStatement(bool* ok) argument
620 ParseDoWhileStatement(bool* ok) argument
635 ParseWhileStatement(bool* ok) argument
648 ParseForStatement(bool* ok) argument
703 ParseThrowStatement(bool* ok) argument
720 ParseTryStatement(bool* ok) argument
770 ParseDebuggerStatement(bool* ok) argument
792 ParseExpression(bool accept_IN, bool* ok) argument
808 ParseAssignmentExpression(bool accept_IN, bool* ok) argument
844 ParseConditionalExpression(bool accept_IN, bool* ok) argument
873 ParseBinaryExpression(int prec, bool accept_IN, bool* ok) argument
889 ParseUnaryExpression(bool* ok) argument
926 ParsePostfixExpression(bool* ok) argument
950 ParseLeftHandSideExpression(bool* ok) argument
999 ParseNewExpression(bool* ok) argument
1021 ParseMemberExpression(bool* ok) argument
1026 ParseMemberWithNewPrefixesExpression( unsigned new_count, bool* ok) argument
1090 ParsePrimaryExpression(bool* ok) argument
1188 ParseArrayLiteral(bool* ok) argument
1206 CheckDuplicate(DuplicateFinder* finder, i::Token::Value property, int type, bool* ok) argument
1240 ParseObjectLiteral(bool* ok) argument
1317 ParseRegExpLiteral(bool seen_equal, bool* ok) argument
1339 ParseArguments(bool* ok) argument
1362 ParseFunctionLiteral(bool* ok) argument
1432 ParseLazyFunctionLiteralBody(bool* ok) argument
1449 ParseV8Intrinsic(bool* ok) argument
1466 ExpectSemicolon(bool* ok) argument
1531 ParseIdentifier(bool* ok) argument
1558 SetStrictModeViolation(i::Scanner::Location location, const char* type, bool* ok) argument
1579 CheckDelayedStrictModeViolation(int beg_pos, int end_pos, bool* ok) argument
1591 StrictModeIdentifierViolation(i::Scanner::Location location, const char* eval_args_type, Identifier identifier, bool* ok) argument
1611 ParseIdentifierName(bool* ok) argument
1634 ParseIdentifierNameOrGetOrSet(bool* is_get, bool* is_set, bool* ok) argument
[all...]
H A Dinterface.cc72 void* name, uint32_t hash, Interface* interface, bool* ok) {
73 MakeModule(ok);
74 if (!*ok) return;
93 *ok = false;
100 reinterpret_cast<Interface*>(p->value)->Unify(interface, ok);
113 void Interface::Unify(Interface* that, bool* ok) { argument
114 if (this->forward_) return this->Chase()->Unify(that, ok);
115 if (that->forward_) return this->Unify(that->Chase(), ok);
119 *ok = true;
121 if (this->IsValue()) return that->MakeValue(ok);
71 DoAdd( void* name, uint32_t hash, Interface* interface, bool* ok) argument
154 DoUnify(Interface* that, bool* ok) argument
[all...]
H A Dparser.h558 void ReportInvalidPreparseData(Handle<String> name, bool* ok);
578 // All ParseXXX functions take as the last argument an *ok parameter
583 int end_token, bool is_eval, bool* ok);
584 Statement* ParseModuleElement(ZoneStringList* labels, bool* ok);
585 Block* ParseModuleDeclaration(ZoneStringList* names, bool* ok);
586 Module* ParseModule(bool* ok);
587 Module* ParseModuleLiteral(bool* ok);
588 Module* ParseModulePath(bool* ok);
589 Module* ParseModuleVariable(bool* ok);
590 Module* ParseModuleUrl(bool* ok);
[all...]
/external/chromium_org/third_party/libwebp/utils/
H A Dthread.c79 int ok = 1; local
80 ok &= (CloseHandle(condition->waiting_sem_) != 0);
81 ok &= (CloseHandle(condition->received_sem_) != 0);
82 ok &= (CloseHandle(condition->signal_event_) != 0);
83 return !ok;
101 int ok = 1; local
104 ok = SetEvent(condition->signal_event_);
107 ok &= (WaitForSingleObject(condition->received_sem_, INFINITE) !=
110 return !ok;
115 int ok; local
196 int ok = 1; local
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_thread.c82 int ok = 1; local
83 ok &= (CloseHandle(condition->waiting_sem_) != 0);
84 ok &= (CloseHandle(condition->received_sem_) != 0);
85 ok &= (CloseHandle(condition->signal_event_) != 0);
86 return !ok;
104 int ok = 1; local
107 ok = SetEvent(condition->signal_event_);
110 ok &= (WaitForSingleObject(condition->received_sem_, INFINITE) !=
113 return !ok;
118 int ok; local
197 int ok = 1; local
[all...]
/external/webp/src/utils/
H A Dthread.c79 int ok = 1; local
80 ok &= (CloseHandle(condition->waiting_sem_) != 0);
81 ok &= (CloseHandle(condition->received_sem_) != 0);
82 ok &= (CloseHandle(condition->signal_event_) != 0);
83 return !ok;
101 int ok = 1; local
104 ok = SetEvent(condition->signal_event_);
107 ok &= (WaitForSingleObject(condition->received_sem_, INFINITE) !=
110 return !ok;
115 int ok; local
196 int ok = 1; local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8BiquadFilterNodeCustom.cpp39 bool ok = false; local
40 uint32_t type = toUInt32(value, ok);
41 ASSERT(ok);
H A DV8OscillatorNodeCustom.cpp40 bool ok = false; local
41 uint32_t type = toUInt32(value, ok);
42 if (!ok || !imp->setType(type))
/external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
H A Dzcgzip.cc61 bool ok; local
63 ok = out.Next(&outptr, &outlen);
64 if (!ok) {
/external/clang/test/CodeGenCXX/
H A Drvalue-references.cpp38 bool ok; variable
64 ok = false;
77 if (ok)
/external/protobuf/src/google/protobuf/testing/
H A Dzcgzip.cc61 bool ok; local
63 ok = out.Next(&outptr, &outlen);
64 if (!ok) {
/external/chromium_org/third_party/leveldatabase/src/util/
H A Denv.cc41 if (!s.ok()) {
45 if (s.ok() && should_sync) {
48 if (s.ok()) {
52 if (!s.ok()) {
72 if (!s.ok()) {
80 if (!s.ok()) {
/external/chromium_org/third_party/openssl/openssl/crypto/dh/
H A Ddh_check.c75 int ok=0; local
115 ok=1;
119 return(ok);
124 int ok=0; local
138 ok = 1;
141 return(ok);
/external/openssl/crypto/dh/
H A Ddh_check.c75 int ok=0; local
115 ok=1;
119 return(ok);
124 int ok=0; local
138 ok = 1;
141 return(ok);
/external/srec/config/en.us/
H A Dconfig.mk7 dictionary/basic.ok \
8 dictionary/enroll.ok \
9 dictionary/cmu6plus.ok.zip \
/external/chromium/net/base/
H A Dwinsock_util.cc46 BOOL ok = WSAResetEvent(hEvent); local
47 CHECK(ok);
/external/chromium_org/third_party/libwebp/dec/
H A Dbuffer.c41 int ok = 1; local
46 ok = 0;
53 ok &= (y_size <= buf->y_size);
54 ok &= (u_size <= buf->u_size);
55 ok &= (v_size <= buf->v_size);
56 ok &= (buf->y_stride >= width);
57 ok &= (buf->u_stride >= (width + 1) / 2);
58 ok &= (buf->v_stride >= (width + 1) / 2);
59 ok &= (buf->y != NULL);
60 ok
[all...]
/external/clang/test/PCH/
H A Dselector-warning.h13 a = @selector(ok); // expected-warning {{unimplemented selector 'ok'}}
14 a = @selector(ok);
/external/linux-tools-perf/util/ui/
H A Dsetup.c41 char title[] = "Fatal Error", ok[] = "Ok"; local
42 newtWinMessage(title, ok, ui_helpline__last_msg);
/external/webp/src/dec/
H A Dbuffer.c41 int ok = 1; local
46 ok = 0;
53 ok &= (y_size <= buf->y_size);
54 ok &= (u_size <= buf->u_size);
55 ok &= (v_size <= buf->v_size);
56 ok &= (buf->y_stride >= width);
57 ok &= (buf->u_stride >= (width + 1) / 2);
58 ok &= (buf->v_stride >= (width + 1) / 2);
59 ok &= (buf->y != NULL);
60 ok
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DDictionary.h198 static inline uint8_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
200 return toUInt8(value, configuration, ok);
207 static inline int8_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
209 return toInt8(value, configuration, ok);
216 static inline uint16_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
218 return toUInt16(value, configuration, ok);
225 static inline int16_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
227 return toInt16(value, configuration, ok);
234 static inline uint32_t toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
236 return toUInt32(value, configuration, ok);
243 toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
252 toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
261 toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
270 toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
279 toIntegral(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
[all...]
H A DV8Binding.cpp145 static double enforceRange(double x, double minimum, double maximum, bool& ok) argument
148 ok = false;
153 ok = false;
190 static inline T toSmallerInt(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
193 ok = true;
201 ok = false;
211 ok = false;
216 return enforceRange(numberObject->Value(), LimitsTrait::minValue, LimitsTrait::maxValue, ok);
229 static inline T toSmallerUInt(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
232 ok
319 toUInt32(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
362 toInt64(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
392 toUInt64(v8::Handle<v8::Value> value, IntegerConversionConfiguration configuration, bool& ok) argument
[all...]
/external/chromium/chrome/browser/autofill/
H A Dname_field.cc25 bool ok = Add(field_type_map, field_, AutofillType(NAME_FULL)); local
26 DCHECK(ok);
156 bool ok = Add(field_type_map, first_name_, AutofillType(NAME_FIRST)); local
157 DCHECK(ok);
158 ok = ok && Add(field_type_map, last_name_, AutofillType(NAME_LAST));
159 DCHECK(ok);
162 ok = ok && Add(field_type_map, middle_name_, type);
163 DCHECK(ok);
[all...]
H A Daddress_field.cc55 bool ok; local
56 ok = Add(field_type_map, company_, AutofillType(address_company));
57 DCHECK(ok);
58 ok = ok && Add(field_type_map, address1_, AutofillType(address_line1));
59 DCHECK(ok);
60 ok = ok && Add(field_type_map, address2_, AutofillType(address_line2));
61 DCHECK(ok);
62 ok
[all...]
/external/valgrind/main/VEX/switchback/
H A Dbinary_switchback.pl223 my $ok=0;
232 $ok = 0; # stop on prev line
236 if ($ok) {
249 $ok = 1;
253 $ok = 1;
320 my $ok = 1;
325 $ok = 0;
334 # If we're ok so far (no seg faults) then test for correct output
335 if ($ok) {
336 $ok
[all...]

Completed in 816 milliseconds

1234567891011>>