Home
last modified time | relevance | path

Searched refs:IsArray (Results 1 – 25 of 54) sorted by relevance

123

/third_party/flatbuffers/src/
Didl_gen_java.cpp166 : (IsArray(type) ? GenTypeGet(type.VectorType()) in GenTypeGet()
424 const auto array_field = IsArray(field_type); in GenStructArgs()
470 IsArray(field_type) ? field_type.VectorType() : field_type; in GenStructBody()
472 if (IsArray(field_type)) { in GenStructBody()
483 code += IsArray(field_type) ? " " : ""; in GenStructBody()
489 size_t array_cnt = index + (IsArray(field_type) ? 1 : 0); in GenStructBody()
495 if (IsArray(field_type)) { code += indent + " }\n"; } in GenStructBody()
660 IsArray(field.value.type) in GenStruct()
740 if (IsArray(field.value.type)) { in GenStruct()
755 if (!IsArray(field.value.type)) { in GenStruct()
[all …]
Didl_gen_csharp.cpp163 : (IsArray(type) ? GenTypeGet(type.VectorType()) in GenTypeGet()
390 const auto array_field = IsArray(field_type); in GenStructArgs()
440 IsArray(field_type) ? field_type.VectorType() : field_type; in GenStructBody()
442 if (IsArray(field_type)) { in GenStructBody()
453 code += IsArray(field_type) ? " " : ""; in GenStructBody()
459 size_t array_cnt = index + (IsArray(field_type) ? 1 : 0); in GenStructBody()
470 if (IsArray(field_type)) { code += indent + " }\n"; } in GenStructBody()
629 IsArray(field.value.type) in GenStruct()
721 if (IsArray(field.value.type)) { in GenStruct()
736 if (!IsArray(field.value.type)) { in GenStruct()
[all …]
Didl_gen_python.cpp472 IsArray(field_type) ? field_type.VectorType() : field_type; in StructBuilderArgs()
513 IsArray(field_type) ? field_type.VectorType() : field_type; in StructBuilderBody()
523 if (IsArray(field_type)) { in StructBuilderBody()
535 code += IsArray(field_type) ? " " : ""; in StructBuilderBody()
538 size_t array_cnt = index + (IsArray(field_type) ? 1 : 0); in StructBuilderBody()
703 } else if (IsArray(field.value.type)) { in GenStructAccessor()
732 if (IsVector(field.value.type) || IsArray(field.value.type)) { in GenStructAccessor()
1647 return (IsScalar(field.value.type.base_type) || IsArray(field.value.type)) in GenMethod()
1662 return ctypename[IsArray(type) ? type.VectorType().base_type in GenTypeBasic()
Didl_gen_cpp.cpp817 } else if (IsArray(type)) { in GenTypeGet()
1006 auto is_array = IsArray(type); in GenMiniReflect()
2060 const auto is_array = IsArray(field.value.type); in GenStructFieldType()
3150 if (IsStruct(field->value.type) || IsArray(field->value.type)) { in GenStructDefaultConstructor()
3192 const auto is_array = IsArray(type); in GenStructConstructor()
3233 if (IsArray(type) && init_arrays) { in GenStructConstructor()
3258 FLATBUFFERS_ASSERT(IsArray(type)); in GenArrayAccessor()
3301 IsArray(field_type) in GenStruct()
3339 return IsArray(fd->value.type); in GenStruct()
3352 const auto is_array = IsArray(type); in GenStruct()
Didl_gen_rust.cpp134 } else if (IsArray(type)) { in GetFullType()
2429 IsStruct(field.value.type) || IsArray(field.value.type) ? "&" : ""); in ForAllStructFields()
2566 } else if (IsArray(field.value.type)) { in GenStruct()
2596 } else if (IsArray(field.value.type)) { in GenStruct()
2645 if (IsArray(field.value.type)) { in GenStruct()
2684 } else if (IsArray(field.value.type)) { in GenStruct()
Didl_gen_swift.cpp549 (IsVector(field.value.type) || IsArray(field.value.type)) ? "VectorOf(" in GenTableWriterFields()
608 (IsVector(field.value.type) || IsArray(field.value.type) in GenTableWriterFields()
623 (IsVector(field.value.type) || IsArray(field.value.type))) { in GenTableWriterFields()
986 (IsVector(field.value.type) || IsArray(field.value.type)) in GenerateObjectAPITableExtension()
1492 : (IsArray(type) ? GenType(type.VectorType()) in GenType()
Didl_gen_json_schema.cpp217 if (IsArray(property->value.type)) { in generate()
/third_party/node/deps/npm/node_modules/es-abstract/
Des2015.js196 IsArray: $Array.isArray || function IsArray(argument) {
440 return this.IsArray(O);
579 var isArray = this.IsArray(originalArray);
/third_party/node/benchmark/napi/function_args/
Dbinding.cc32 assert(args.Length() == 1 && args[0]->IsArray()); in CallWithArray()
33 if (args.Length() == 1 && args[0]->IsArray()) { in CallWithArray()
/third_party/node/deps/npm/node_modules/es-abstract/test/
Dtests.js436 t.equal(true, ES.IsArray([]), '[] is array');
437 t.equal(false, ES.IsArray({}), '{} is not array');
438 t.equal(false, ES.IsArray({ length: 1, 0: true }), 'arraylike object is not array');
440 t.equal(false, ES.IsArray(value), debug(value) + ' is not array');
1236 st.ok(ES.IsArray(arr), 'is an array');
1249 st.ok(ES.IsArray(arr), 'is an array');
1264 st.equal(ES.IsArray(arr), true);
1280 t.equal(ES.IsArray(bar), true, 'Bar instance is an array');
1294 t.equal(ES.IsArray(bar), true, 'Bar instance is an array');
1307 t.equal(ES.IsArray(bar), true, 'Bar instance is an array');
[all …]
/third_party/node/deps/npm/node_modules/es-abstract/operations/
D2016.js28 IsArray: 'https://ecma-international.org/ecma-262/7.0/#sec-isarray', property
D2015.js28 IsArray: 'https://ecma-international.org/ecma-262/6.0/#sec-isarray', property
D2017.js29 IsArray: 'https://ecma-international.org/ecma-262/8.0/#sec-isarray', property
/third_party/cef/tests/ceftests/
Dv8_unittest.cc267 EXPECT_FALSE(value->IsArray()); in RunNullCreateTest()
287 EXPECT_FALSE(value->IsArray()); in RunBoolCreateTest()
311 EXPECT_FALSE(value->IsArray()); in RunIntCreateTest()
333 EXPECT_FALSE(value->IsArray()); in RunUIntCreateTest()
351 EXPECT_FALSE(value->IsArray()); in RunDoubleCreateTest()
390 EXPECT_FALSE(value->IsArray()); in RunDateCreateTest()
410 EXPECT_FALSE(value->IsArray()); in RunStringCreateTest()
430 EXPECT_FALSE(value->IsArray()); in RunEmptyStringCreateTest()
451 EXPECT_TRUE(value->IsArray()); in RunArrayCreateTest()
481 EXPECT_TRUE(value->IsArray()); in RunArrayValueTest()
[all …]
/third_party/cef/libcef_dll/ctocpp/
Dv8value_ctocpp.h47 bool IsArray() override;
/third_party/skia/third_party/externals/angle2/util/capture/
Dframe_capture_test_utils.cpp44 if (!doc.IsObject() || !doc.HasMember("traces") || !doc["traces"].IsArray()) in LoadTraceNamesFromJSON()
/third_party/node/src/
Dprocess_wrap.cc188 if (!argv_v.IsEmpty() && argv_v->IsArray()) { in Spawn()
216 if (!env_v.IsEmpty() && env_v->IsArray()) { in Spawn()
Dtty_wrap.cc86 CHECK(args[0]->IsArray()); in GetWindowSize()
Dnode_trace_events.cc61 CHECK(args[0]->IsArray()); in New()
Dspawn_sync.cc855 if (!js_value->IsArray()) in ParseStdioOptions()
1024 if (!js_value->IsArray()) return Just<int>(UV_EINVAL); in CopyJsStringArray()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dstl_type_traits.h58 using IsArray = IsArrayImpl<absl::decay_t<C>>;
70 IsArray<C>, IsBitset<C>, IsSpecialization<C, std::deque>,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
DItaniumDemangle.h1741 bool IsArray; // new[] ? variable
1746 IsGlobal(IsGlobal_), IsArray(IsArray_) {} in NewExpr()
1749 F(ExprList, Type, InitList, IsGlobal, IsArray); in match()
1756 if (IsArray) in printLeft()
1777 bool IsArray; variable
1781 : Node(KDeleteExpr), Op(Op_), IsGlobal(IsGlobal_), IsArray(IsArray_) {} in DeleteExpr()
1783 template<typename Fn> void match(Fn F) const { F(Op, IsGlobal, IsArray); } in match()
1789 if (IsArray) in printLeft()
1867 bool IsArray; variable
1870 : Node(KBracedExpr), Elem(Elem_), Init(Init_), IsArray(IsArray_) {} in BracedExpr()
[all …]
/third_party/flatbuffers/include/flatbuffers/
Didl.h482 inline bool IsArray(const Type &type) { in IsArray() function
487 return IsVector(type) || IsArray(type); in IsSeries()
497 : (IsArray(type) in InlineSize()
505 } else if (IsArray(type)) { in InlineAlignment()
/third_party/flutter/engine/flutter/lib/ui/plugins/
Dcallback_cache.cc130 if (d.HasParseError() || !d.IsArray()) { in LoadCacheFromDisk()
/third_party/cef/include/
Dcef_v8.h603 virtual bool IsArray() = 0;

123