Home
last modified time | relevance | path

Searched refs:StringLength (Results 1 – 14 of 14) sorted by relevance

/third_party/node/deps/v8/src/builtins/
Daccessors.h47 V(_, string_length, StringLength, kHasNoSideEffect, \
/third_party/node/deps/v8/src/parsing/
Dtoken.h329 static uint8_t StringLength(Value token) { in StringLength() function
/third_party/node/deps/v8/src/compiler/
Daccess-info.h92 static PropertyAccessInfo StringLength(Zone* zone, MapRef receiver_map);
Dgraph-assembler.cc281 TNode<Number> JSGraphAssembler::StringLength(TNode<String> string) { in StringLength() function in v8::internal::compiler::JSGraphAssembler
283 graph()->NewNode(simplified()->StringLength(), string)); in StringLength()
Daccess-info.cc160 PropertyAccessInfo PropertyAccessInfo::StringLength(Zone* zone, in StringLength() function in v8::internal::compiler::PropertyAccessInfo
1050 return PropertyAccessInfo::StringLength(zone(), map); in LookupSpecialFieldAccessor()
Djs-call-reducer.cc1183 TNode<Number> length = StringLength(receiver_string); in ReduceStringPrototypeSubstring()
1207 TNode<Number> length = StringLength(receiver_string); in ReduceStringPrototypeStartsWith()
1252 TNode<Number> length = StringLength(receiver_string); in ReduceStringPrototypeStartsWith()
1257 TNode<Number> search_string_length = StringLength(search_string); in ReduceStringPrototypeStartsWith()
1293 TNode<Number> length = StringLength(receiver_string); in ReduceStringPrototypeSlice()
5283 graph()->NewNode(simplified()->StringLength(), new_receiver); in ReduceStringPrototypeIndexOfIncludes()
5362 Node* length = graph()->NewNode(simplified()->StringLength(), receiver); in ReduceStringPrototypeSubstr()
6496 graph()->NewNode(simplified()->StringLength(), receiver); in ReduceStringPrototypeStringAt()
6571 graph()->NewNode(simplified()->StringLength(), receiver); in ReduceStringPrototypeCharAt()
6784 Node* length = graph()->NewNode(simplified()->StringLength(), string); in ReduceStringIteratorPrototypeNext()
[all …]
Djs-typed-lowering.cc591 graph()->NewNode(simplified()->StringLength(), r.left()); in ReduceJSAdd()
593 graph()->NewNode(simplified()->StringLength(), r.right()); in ReduceJSAdd()
1180 Node* value = graph()->NewNode(simplified()->StringLength(), receiver); in ReduceJSLoadNamed()
Dsimplified-operator.h835 const Operator* StringLength(); in NON_EXPORTED_BASE()
Dopcodes.h485 V(StringLength) \
Dgraph-assembler.h851 TNode<Number> StringLength(TNode<String> string);
Djs-native-context-specialization.cc1566 Node* length = graph()->NewNode(simplified()->StringLength(), receiver); in ReduceElementAccessOnString()
2308 value = graph()->NewNode(simplified()->StringLength(), receiver); in BuildPropertyLoad()
Dsimplified-operator.cc737 V(StringLength, Operator::kNoProperties, 1, 0) \
/third_party/node/typings/
Dprimordials.d.ts377 export const StringLength: typeof String.length
/third_party/node/deps/v8/src/api/
Dapi.cc6777 inline int StringLength(const char* string) { in StringLength() function
6783 inline int StringLength(const uint8_t* string) { in StringLength() function
6784 return StringLength(reinterpret_cast<const char*>(string)); in StringLength()
6787 inline int StringLength(const uint16_t* string) { in StringLength() function
6840 if (length < 0) length = StringLength(data); \