Home
last modified time | relevance | path

Searched refs:Repetition (Results 1 – 25 of 2067) sorted by relevance

12345678910>>...83

/dports/net/kalarmcal/kalarmcal-21.12.3/src/
H A Drepetition.cpp17 class Q_DECL_HIDDEN Repetition::Private
34 Repetition::Repetition() in Repetition() function in KAlarmCal::Repetition
39 Repetition::Repetition(const KCalendarCore::Duration &interval, int count) in Repetition() function in KAlarmCal::Repetition
44 Repetition::Repetition(const Repetition &other) in Repetition() function in KAlarmCal::Repetition
49 Repetition::~Repetition() in ~Repetition()
54 Repetition &Repetition::operator=(const Repetition &other) in operator =()
83 Repetition::operator bool() const in operator bool()
88 bool Repetition::operator==(const Repetition &r) const in operator ==()
93 int Repetition::count() const in count()
113 bool Repetition::isDaily() const in isDaily()
[all …]
H A Drepetition.h29 class KALARMCAL_EXPORT Repetition
35 Repetition();
40 Repetition(const KCalendarCore::Duration &interval, int count);
42 Repetition(const Repetition &other);
44 ~Repetition();
46 Repetition &operator=(const Repetition &other);
69 bool operator==(const Repetition &r) const;
70 bool operator!=(const Repetition &r) const
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/parquet/arrow/
H A Dreconstruct_internal_test.cc331 "parent", Repetition::REQUIRED, in TEST_F()
346 "parent", Repetition::OPTIONAL, in TEST_F()
397 "a", Repetition::REQUIRED, in TEST_F()
418 "a", Repetition::OPTIONAL, in TEST_F()
439 "a", Repetition::REQUIRED, in TEST_F()
461 "a", Repetition::OPTIONAL, in TEST_F()
881 "a", Repetition::REQUIRED, in TEST_F()
904 "a", Repetition::OPTIONAL, in TEST_F()
951 "a", Repetition::OPTIONAL, in TEST_F()
975 "a", Repetition::OPTIONAL, in TEST_F()
[all …]
H A Darrow_schema_test.cc43 using parquet::Repetition;
590 "group1", Repetition::REQUIRED, in TEST_F()
625 "group1", Repetition::REQUIRED, in TEST_F()
629 "group2", Repetition::REQUIRED, in TEST_F()
1311 "parent", Repetition::OPTIONAL, in TEST_F()
1328 "parent", Repetition::OPTIONAL, in TEST_F()
1344 "parent", Repetition::REQUIRED, in TEST_F()
1364 "list", Repetition::REPEATED, in TEST_F()
1428 "parent", Repetition::REPEATED, in TEST_F()
1450 "parent", Repetition::REPEATED, in TEST_F()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/parquet/arrow/
H A Dreconstruct_internal_test.cc331 "parent", Repetition::REQUIRED, in TEST_F()
346 "parent", Repetition::OPTIONAL, in TEST_F()
397 "a", Repetition::REQUIRED, in TEST_F()
418 "a", Repetition::OPTIONAL, in TEST_F()
439 "a", Repetition::REQUIRED, in TEST_F()
461 "a", Repetition::OPTIONAL, in TEST_F()
881 "a", Repetition::REQUIRED, in TEST_F()
904 "a", Repetition::OPTIONAL, in TEST_F()
951 "a", Repetition::OPTIONAL, in TEST_F()
975 "a", Repetition::OPTIONAL, in TEST_F()
[all …]
H A Darrow_schema_test.cc45 using parquet::Repetition;
593 "group1", Repetition::REQUIRED, in TEST_F()
628 "group1", Repetition::REQUIRED, in TEST_F()
632 "group2", Repetition::REQUIRED, in TEST_F()
1449 "parent", Repetition::OPTIONAL, in TEST_F()
1466 "parent", Repetition::OPTIONAL, in TEST_F()
1482 "parent", Repetition::REQUIRED, in TEST_F()
1502 "list", Repetition::REPEATED, in TEST_F()
1566 "parent", Repetition::REPEATED, in TEST_F()
1588 "parent", Repetition::REPEATED, in TEST_F()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/parquet/arrow/
H A Darrow_schema_test.cc40 using parquet::Repetition;
420 auto element = PrimitiveNode::Make("str", Repetition::REQUIRED, in TEST_F()
477 auto element = PrimitiveNode::Make("str", Repetition::REQUIRED, in TEST_F()
498 auto element = PrimitiveNode::Make("str", Repetition::REQUIRED, in TEST_F()
546 "group1", Repetition::REQUIRED, in TEST_F()
581 "group1", Repetition::REQUIRED, in TEST_F()
585 "group2", Repetition::REQUIRED, in TEST_F()
621 "outerGroup", Repetition::REPEATED, in TEST_F()
624 "innerGroup", Repetition::REPEATED, in TEST_F()
958 auto value = PrimitiveNode::Make("value", Repetition::OPTIONAL, in TEST_F()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/src/parquet/
H A Dcolumn_io_benchmark.cc48 std::shared_ptr<ColumnDescriptor> Int64Schema(Repetition::type repetition) { in Int64Schema()
56 if (repetition != Repetition::REQUIRED) { in SetBytesProcessed()
59 if (repetition == Repetition::REPEATED) { in SetBytesProcessed()
65 template <Repetition::type repetition,
96 BENCHMARK_TEMPLATE(BM_WriteInt64Column, Repetition::REQUIRED)->Arg(1 << 20);
97 BENCHMARK_TEMPLATE(BM_WriteInt64Column, Repetition::OPTIONAL)->Arg(1 << 20);
98 BENCHMARK_TEMPLATE(BM_WriteInt64Column, Repetition::REPEATED)->Arg(1 << 20);
129 template <Repetition::type repetition,
168 BENCHMARK_TEMPLATE(BM_ReadInt64Column, Repetition::REQUIRED)
171 BENCHMARK_TEMPLATE(BM_ReadInt64Column, Repetition::OPTIONAL)
[all …]
H A Dschema_test.cc147 ASSERT_EQ(Repetition::REPEATED, node1.repetition()); in TEST_F()
148 ASSERT_EQ(Repetition::OPTIONAL, node2.repetition()); in TEST_F()
377 f2.push_back(Float("four", Repetition::OPTIONAL)); in TEST_F()
680 NodePtr inta = Int32("a", Repetition::REQUIRED); in TEST_F()
681 NodePtr intb = Int64("b", Repetition::OPTIONAL); in TEST_F()
731 NodePtr inta = Int32("a", Repetition::REQUIRED); in TEST_F()
806 NodePtr inta = Int32("a", Repetition::REQUIRED); in TEST_F()
1598 Repetition::type repetition = Repetition::REQUIRED; in ConfirmPrimitiveNodeFactoryEquivalence()
1615 Repetition::type repetition = Repetition::OPTIONAL; in ConfirmGroupNodeFactoryEquivalence()
1747 "timestamp", Repetition::REQUIRED, in TEST()
[all …]
H A Dstream_writer_test.cc50 fields.push_back(schema::PrimitiveNode::Make("bool_field", Repetition::REQUIRED, in GetSchema()
53 fields.push_back(schema::PrimitiveNode::Make("string_field", Repetition::REQUIRED, in GetSchema()
56 fields.push_back(schema::PrimitiveNode::Make("char_field", Repetition::REQUIRED, in GetSchema()
60 fields.push_back(schema::PrimitiveNode::Make("char[4]_field", Repetition::REQUIRED, in GetSchema()
64 fields.push_back(schema::PrimitiveNode::Make("int8_field", Repetition::REQUIRED, in GetSchema()
67 fields.push_back(schema::PrimitiveNode::Make("uint16_field", Repetition::REQUIRED, in GetSchema()
70 fields.push_back(schema::PrimitiveNode::Make("int32_field", Repetition::REQUIRED, in GetSchema()
73 fields.push_back(schema::PrimitiveNode::Make("uint64_field", Repetition::REQUIRED, in GetSchema()
76 fields.push_back(schema::PrimitiveNode::Make("float_field", Repetition::REQUIRED, in GetSchema()
83 schema::GroupNode::Make("schema", Repetition::REQUIRED, fields)); in GetSchema()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/src/parquet/
H A Dcolumn_io_benchmark.cc50 std::shared_ptr<ColumnDescriptor> Int64Schema(Repetition::type repetition) { in Int64Schema()
53 repetition == Repetition::REPEATED); in Int64Schema()
56 void SetBytesProcessed(::benchmark::State& state, Repetition::type repetition) { in SetBytesProcessed()
58 if (repetition != Repetition::REQUIRED) { in SetBytesProcessed()
61 if (repetition == Repetition::REPEATED) { in SetBytesProcessed()
67 template <Repetition::type repetition,
98 BENCHMARK_TEMPLATE(BM_WriteInt64Column, Repetition::REQUIRED)->Arg(1 << 20);
99 BENCHMARK_TEMPLATE(BM_WriteInt64Column, Repetition::OPTIONAL)->Arg(1 << 20);
100 BENCHMARK_TEMPLATE(BM_WriteInt64Column, Repetition::REPEATED)->Arg(1 << 20);
108 BENCHMARK_TEMPLATE(BM_WriteInt64Column, Repetition::REQUIRED, Compression::LZ4)
[all …]
H A Dschema_test.cc147 ASSERT_EQ(Repetition::REPEATED, node1.repetition()); in TEST_F()
148 ASSERT_EQ(Repetition::OPTIONAL, node2.repetition()); in TEST_F()
377 f2.push_back(Float("four", Repetition::OPTIONAL)); in TEST_F()
680 NodePtr inta = Int32("a", Repetition::REQUIRED); in TEST_F()
681 NodePtr intb = Int64("b", Repetition::OPTIONAL); in TEST_F()
731 NodePtr inta = Int32("a", Repetition::REQUIRED); in TEST_F()
806 NodePtr inta = Int32("a", Repetition::REQUIRED); in TEST_F()
1598 Repetition::type repetition = Repetition::REQUIRED; in ConfirmPrimitiveNodeFactoryEquivalence()
1615 Repetition::type repetition = Repetition::OPTIONAL; in ConfirmGroupNodeFactoryEquivalence()
1747 "timestamp", Repetition::REQUIRED, in TEST()
[all …]
H A Dstream_writer_test.cc51 fields.push_back(schema::PrimitiveNode::Make("bool_field", Repetition::REQUIRED, in GetSchema()
54 fields.push_back(schema::PrimitiveNode::Make("string_field", Repetition::REQUIRED, in GetSchema()
57 fields.push_back(schema::PrimitiveNode::Make("char_field", Repetition::REQUIRED, in GetSchema()
61 fields.push_back(schema::PrimitiveNode::Make("char[4]_field", Repetition::REQUIRED, in GetSchema()
65 fields.push_back(schema::PrimitiveNode::Make("int8_field", Repetition::REQUIRED, in GetSchema()
68 fields.push_back(schema::PrimitiveNode::Make("uint16_field", Repetition::REQUIRED, in GetSchema()
71 fields.push_back(schema::PrimitiveNode::Make("int32_field", Repetition::REQUIRED, in GetSchema()
74 fields.push_back(schema::PrimitiveNode::Make("uint64_field", Repetition::REQUIRED, in GetSchema()
77 fields.push_back(schema::PrimitiveNode::Make("float_field", Repetition::REQUIRED, in GetSchema()
84 schema::GroupNode::Make("schema", Repetition::REQUIRED, fields)); in GetSchema()
[all …]
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/parquet/
H A Dcolumn_io_benchmark.cc50 std::shared_ptr<ColumnDescriptor> Int64Schema(Repetition::type repetition) { in Int64Schema()
53 repetition == Repetition::REPEATED); in Int64Schema()
56 void SetBytesProcessed(::benchmark::State& state, Repetition::type repetition) { in SetBytesProcessed()
58 if (repetition != Repetition::REQUIRED) { in SetBytesProcessed()
61 if (repetition == Repetition::REPEATED) { in SetBytesProcessed()
67 template <Repetition::type repetition,
98 BENCHMARK_TEMPLATE(BM_WriteInt64Column, Repetition::REQUIRED)->Arg(1 << 20);
99 BENCHMARK_TEMPLATE(BM_WriteInt64Column, Repetition::OPTIONAL)->Arg(1 << 20);
100 BENCHMARK_TEMPLATE(BM_WriteInt64Column, Repetition::REPEATED)->Arg(1 << 20);
108 BENCHMARK_TEMPLATE(BM_WriteInt64Column, Repetition::REQUIRED, Compression::LZ4)
[all …]
H A Dschema_test.cc147 ASSERT_EQ(Repetition::REPEATED, node1.repetition()); in TEST_F()
148 ASSERT_EQ(Repetition::OPTIONAL, node2.repetition()); in TEST_F()
377 f2.push_back(Float("four", Repetition::OPTIONAL)); in TEST_F()
680 NodePtr inta = Int32("a", Repetition::REQUIRED); in TEST_F()
681 NodePtr intb = Int64("b", Repetition::OPTIONAL); in TEST_F()
731 NodePtr inta = Int32("a", Repetition::REQUIRED); in TEST_F()
806 NodePtr inta = Int32("a", Repetition::REQUIRED); in TEST_F()
1596 Repetition::type repetition = Repetition::REQUIRED; in ConfirmPrimitiveNodeFactoryEquivalence()
1613 Repetition::type repetition = Repetition::OPTIONAL; in ConfirmGroupNodeFactoryEquivalence()
1745 "timestamp", Repetition::REQUIRED, in TEST()
[all …]
H A Dstream_writer_test.cc51 fields.push_back(schema::PrimitiveNode::Make("bool_field", Repetition::REQUIRED, in GetSchema()
54 fields.push_back(schema::PrimitiveNode::Make("string_field", Repetition::REQUIRED, in GetSchema()
57 fields.push_back(schema::PrimitiveNode::Make("char_field", Repetition::REQUIRED, in GetSchema()
61 fields.push_back(schema::PrimitiveNode::Make("char[4]_field", Repetition::REQUIRED, in GetSchema()
65 fields.push_back(schema::PrimitiveNode::Make("int8_field", Repetition::REQUIRED, in GetSchema()
68 fields.push_back(schema::PrimitiveNode::Make("uint16_field", Repetition::REQUIRED, in GetSchema()
71 fields.push_back(schema::PrimitiveNode::Make("int32_field", Repetition::REQUIRED, in GetSchema()
74 fields.push_back(schema::PrimitiveNode::Make("uint64_field", Repetition::REQUIRED, in GetSchema()
77 fields.push_back(schema::PrimitiveNode::Make("float_field", Repetition::REQUIRED, in GetSchema()
84 schema::GroupNode::Make("schema", Repetition::REQUIRED, fields)); in GetSchema()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/cpp/examples/parquet/low-level-api/
H A Dreader_writer.h25 using parquet::Repetition;
36 fields.push_back(PrimitiveNode::Make("boolean_field", Repetition::REQUIRED, in SetupSchema()
41 fields.push_back(PrimitiveNode::Make("int32_field", Repetition::REQUIRED, Type::INT32, in SetupSchema()
45 fields.push_back(PrimitiveNode::Make("int64_field", Repetition::REPEATED, Type::INT64, in SetupSchema()
48 fields.push_back(PrimitiveNode::Make("int96_field", Repetition::REQUIRED, Type::INT96, in SetupSchema()
51 fields.push_back(PrimitiveNode::Make("float_field", Repetition::REQUIRED, Type::FLOAT, in SetupSchema()
54 fields.push_back(PrimitiveNode::Make("double_field", Repetition::REQUIRED, Type::DOUBLE, in SetupSchema()
58 fields.push_back(PrimitiveNode::Make("ba_field", Repetition::OPTIONAL, Type::BYTE_ARRAY, in SetupSchema()
63 fields.push_back(PrimitiveNode::Make("flba_field", Repetition::REQUIRED, in SetupSchema()
70 GroupNode::Make("schema", Repetition::REQUIRED, fields)); in SetupSchema()
/dports/databases/arrow/apache-arrow-6.0.1/cpp/examples/parquet/low_level_api/
H A Dreader_writer.h24 using parquet::Repetition;
35 fields.push_back(PrimitiveNode::Make("boolean_field", Repetition::REQUIRED, in SetupSchema()
40 fields.push_back(PrimitiveNode::Make("int32_field", Repetition::REQUIRED, Type::INT32, in SetupSchema()
44 fields.push_back(PrimitiveNode::Make("int64_field", Repetition::REPEATED, Type::INT64, in SetupSchema()
47 fields.push_back(PrimitiveNode::Make("int96_field", Repetition::REQUIRED, Type::INT96, in SetupSchema()
50 fields.push_back(PrimitiveNode::Make("float_field", Repetition::REQUIRED, Type::FLOAT, in SetupSchema()
53 fields.push_back(PrimitiveNode::Make("double_field", Repetition::REQUIRED, Type::DOUBLE, in SetupSchema()
57 fields.push_back(PrimitiveNode::Make("ba_field", Repetition::OPTIONAL, Type::BYTE_ARRAY, in SetupSchema()
62 fields.push_back(PrimitiveNode::Make("flba_field", Repetition::REQUIRED, in SetupSchema()
69 GroupNode::Make("schema", Repetition::REQUIRED, fields)); in SetupSchema()
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/cpp/examples/parquet/low-level-api/
H A Dreader_writer.h25 using parquet::Repetition;
36 fields.push_back(PrimitiveNode::Make("boolean_field", Repetition::REQUIRED, in SetupSchema()
41 fields.push_back(PrimitiveNode::Make("int32_field", Repetition::REQUIRED, Type::INT32, in SetupSchema()
45 fields.push_back(PrimitiveNode::Make("int64_field", Repetition::REPEATED, Type::INT64, in SetupSchema()
48 fields.push_back(PrimitiveNode::Make("int96_field", Repetition::REQUIRED, Type::INT96, in SetupSchema()
51 fields.push_back(PrimitiveNode::Make("float_field", Repetition::REQUIRED, Type::FLOAT, in SetupSchema()
54 fields.push_back(PrimitiveNode::Make("double_field", Repetition::REQUIRED, Type::DOUBLE, in SetupSchema()
58 fields.push_back(PrimitiveNode::Make("ba_field", Repetition::OPTIONAL, Type::BYTE_ARRAY, in SetupSchema()
63 fields.push_back(PrimitiveNode::Make("flba_field", Repetition::REQUIRED, in SetupSchema()
70 GroupNode::Make("schema", Repetition::REQUIRED, fields)); in SetupSchema()
/dports/games/openbve/OpenBVE-1.8.2.1/source/OpenBveApi/Routes/
H A DStaticBackground.cs11 public double Repetition; field in OpenBveApi.Routes.StaticBackground
28 …cBackground(Texture Texture, double Repetition, bool KeepAspectRatio, double Distance = 0) : this(… in StaticBackground() argument
42 …re Texture, double Repetition, bool KeepAspectRatio, double transitionTime, BackgroundTransitionMo… in StaticBackground() argument
53 …public StaticBackground(Texture Texture, double Repetition, bool KeepAspectRatio, double transitio… in StaticBackground() argument
56 this.Repetition = Repetition; in StaticBackground()
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/apache/arrow/rust/parquet/src/schema/
H A Dtypes.rs193 repetition: Repetition,
828 Repetition::OPTIONAL => { in build_tree()
831 Repetition::REPEATED => { in build_tree()
1583 Repetition::REPEATED, in test_check_contains_group_group()
1595 Repetition::REPEATED, in test_check_contains_group_group()
1610 Repetition::REPEATED, in test_check_contains_group_group()
1622 Repetition::REPEATED, in test_check_contains_group_group()
1648 Repetition::REPEATED, in test_check_contains_group_group()
1660 Repetition::REPEATED, in test_check_contains_group_group()
1675 Repetition::REPEATED, in test_check_contains_group_group()
[all …]
H A Dprinter.rs371 .with_repetition(Repetition::REPEATED) in test_print_and_parse_primitive()
377 .with_repetition(Repetition::OPTIONAL) in test_print_and_parse_primitive()
384 .with_repetition(Repetition::OPTIONAL) in test_print_and_parse_primitive()
389 .with_repetition(Repetition::OPTIONAL) in test_print_and_parse_primitive()
394 .with_repetition(Repetition::REPEATED) in test_print_and_parse_primitive()
401 .with_repetition(Repetition::OPTIONAL) in test_print_and_parse_primitive()
408 .with_repetition(Repetition::REQUIRED) in test_print_and_parse_primitive()
424 .with_repetition(Repetition::REQUIRED) in test_print_and_parse_nested()
430 .with_repetition(Repetition::OPTIONAL) in test_print_and_parse_nested()
436 .with_repetition(Repetition::OPTIONAL) in test_print_and_parse_nested()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/apache/arrow/rust/parquet/src/schema/
H A Dtypes.rs181 repetition: Repetition,
833 Repetition::OPTIONAL => { in build_tree()
836 Repetition::REPEATED => { in build_tree()
1604 Repetition::REPEATED, in test_check_contains_group_group()
1616 Repetition::REPEATED, in test_check_contains_group_group()
1631 Repetition::REPEATED, in test_check_contains_group_group()
1643 Repetition::REPEATED, in test_check_contains_group_group()
1669 Repetition::REPEATED, in test_check_contains_group_group()
1681 Repetition::REPEATED, in test_check_contains_group_group()
1696 Repetition::REPEATED, in test_check_contains_group_group()
[all …]
H A Dprinter.rs371 .with_repetition(Repetition::REPEATED) in test_print_and_parse_primitive()
377 .with_repetition(Repetition::OPTIONAL) in test_print_and_parse_primitive()
384 .with_repetition(Repetition::OPTIONAL) in test_print_and_parse_primitive()
389 .with_repetition(Repetition::OPTIONAL) in test_print_and_parse_primitive()
394 .with_repetition(Repetition::REPEATED) in test_print_and_parse_primitive()
401 .with_repetition(Repetition::OPTIONAL) in test_print_and_parse_primitive()
408 .with_repetition(Repetition::REQUIRED) in test_print_and_parse_primitive()
424 .with_repetition(Repetition::REQUIRED) in test_print_and_parse_nested()
430 .with_repetition(Repetition::OPTIONAL) in test_print_and_parse_nested()
436 .with_repetition(Repetition::OPTIONAL) in test_print_and_parse_nested()
[all …]
/dports/deskutils/kalarm/kalarm-21.12.3/src/
H A Drepetitionbutton.h33 void set(const Repetition&);
34 void set(const Repetition&, bool dateOnly, int maxDuration = -1);
35 …void initialise(const Repetition&, bool dateOnly, int maxDuration = -1); // use only a…
37 Repetition repetition() const { return mRepetition; } in repetition()
53 Repetition mRepetition; // repetition interval and count
67 void set(const Repetition&, bool dateOnly = false, int maxDuration = -1);
68 Repetition repetition() const; // get the repetition interval and count

12345678910>>...83