Searched refs:StringLength (Results 1 – 14 of 14) sorted by relevance
| /third_party/node/deps/v8/src/builtins/ |
| D | accessors.h | 47 V(_, string_length, StringLength, kHasNoSideEffect, \
|
| /third_party/node/deps/v8/src/parsing/ |
| D | token.h | 329 static uint8_t StringLength(Value token) { in StringLength() function
|
| /third_party/node/deps/v8/src/compiler/ |
| D | access-info.h | 92 static PropertyAccessInfo StringLength(Zone* zone, MapRef receiver_map);
|
| D | graph-assembler.cc | 281 TNode<Number> JSGraphAssembler::StringLength(TNode<String> string) { in StringLength() function in v8::internal::compiler::JSGraphAssembler 283 graph()->NewNode(simplified()->StringLength(), string)); in StringLength()
|
| D | access-info.cc | 160 PropertyAccessInfo PropertyAccessInfo::StringLength(Zone* zone, in StringLength() function in v8::internal::compiler::PropertyAccessInfo 1050 return PropertyAccessInfo::StringLength(zone(), map); in LookupSpecialFieldAccessor()
|
| D | js-call-reducer.cc | 1183 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 …]
|
| D | js-typed-lowering.cc | 591 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()
|
| D | simplified-operator.h | 835 const Operator* StringLength(); in NON_EXPORTED_BASE()
|
| D | opcodes.h | 485 V(StringLength) \
|
| D | graph-assembler.h | 851 TNode<Number> StringLength(TNode<String> string);
|
| D | js-native-context-specialization.cc | 1566 Node* length = graph()->NewNode(simplified()->StringLength(), receiver); in ReduceElementAccessOnString() 2308 value = graph()->NewNode(simplified()->StringLength(), receiver); in BuildPropertyLoad()
|
| D | simplified-operator.cc | 737 V(StringLength, Operator::kNoProperties, 1, 0) \
|
| /third_party/node/typings/ |
| D | primordials.d.ts | 377 export const StringLength: typeof String.length
|
| /third_party/node/deps/v8/src/api/ |
| D | api.cc | 6777 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); \
|