Searched defs:ToUint32 (Results 1 - 6 of 6) sorted by relevance

/external/protobuf/src/google/protobuf/util/internal/
H A Ddatapiece.cc127 StatusOr<uint32> DataPiece::ToUint32() const { function in class:google::protobuf::util::converter::DataPiece
/external/v8/src/ast/
H A Dast-value-factory.h197 bool ToUint32(uint32_t* value) const { function in class:v8::internal::AstValue
/external/v8/src/compiler/
H A Djs-builtin-reducer.cc1108 // Math.clz32(a:plain-primitive) -> NumberClz32(ToUint32(a))
1109 Node* input = ToUint32(r.GetJSCallInput(0));
1192 // b:plain-primitive) -> NumberImul(ToUint32(a),
1193 // ToUint32(b))
1194 Node* left = ToUint32(r.left());
1195 Node* right = ToUint32(r.right());
2180 Node* JSBuiltinReducer::ToUint32(Node* input) { function in class:v8::internal::compiler::JSBuiltinReducer
/external/v8/src/
H A Dobjects-inl.h1087 bool Object::ToUint32(uint32_t* value) { function in class:v8::internal::Object
1148 MaybeHandle<Object> Object::ToUint32(Isolate* isolate, Handle<Object> input) { function in class:v8::internal::Object
2339 bool Object::ToArrayLength(uint32_t* index) { return Object::ToUint32(index); }
2343 return Object::ToUint32(index) && *index != kMaxUInt32;
H A Dapi.cc3678 MaybeLocal<Uint32> Value::ToUint32(Local<Context> context) const { function in class:v8::Value
3682 PREPARE_FOR_EXECUTION(context, Object, ToUint32, Uint32);
3684 !ToLocal<Uint32>(i::Object::ToUint32(isolate, obj), &result);
3690 Local<Uint32> Value::ToUint32(Isolate* isolate) const { function in class:v8::Value
3691 RETURN_TO_LOCAL_UNCHECKED(ToUint32(isolate->GetCurrentContext()), Uint32);
4017 has_pending_exception = !i::Object::ToUint32(isolate, obj).ToHandle(&num);
/external/v8/include/
H A Dv8.h2205 V8_WARN_UNUSED_RESULT MaybeLocal<Uint32> ToUint32(
2222 Local<Uint32> ToUint32(Isolate* isolate) const);
2235 inline V8_DEPRECATED("Use maybe version", Local<Uint32> ToUint32() const);
9332 Local<Uint32> Value::ToUint32() const { function in class:v8::Value
9333 return ToUint32(Isolate::GetCurrent()->GetCurrentContext())

Completed in 331 milliseconds