Home
last modified time | relevance | path

Searched refs:field (Results 251 - 275 of 2152) sorted by relevance

1...<<11121314151617181920>>...87

/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DFormattedStringBuilder.java32 public static java.text.Format.Field unwrapField(Object field) { in unwrapField() argument
33 if (field == null) { in unwrapField()
35 } else if (field instanceof FieldWrapper) { in unwrapField()
36 return ((FieldWrapper) field).unwrap(); in unwrapField()
37 } else if (field instanceof java.text.Format.Field) { in unwrapField()
38 return (java.text.Format.Field) field; in unwrapField()
40 throw new AssertionError("Not a field: " + field); in unwrapField()
139 public int appendChar16(char codeUnit, Object field) { in appendChar16() argument
140 return insertChar16(length - appendOffset, codeUnit, field); in appendChar16()
143 insertChar16(int index, char codeUnit, Object field) insertChar16() argument
156 appendCodePoint(int codePoint, Object field) appendCodePoint() argument
165 insertCodePoint(int index, int codePoint, Object field) insertCodePoint() argument
180 append(CharSequence sequence, Object field) append() argument
189 insert(int index, CharSequence sequence, Object field) insert() argument
208 insert(int index, CharSequence sequence, int start, int end, Object field) insert() argument
226 splice( int startThis, int endThis, CharSequence sequence, int startOther, int endOther, Object field) splice() argument
504 setAppendableField(Object field) setAppendableField() argument
[all...]
/third_party/protobuf/src/google/protobuf/compiler/objectivec/
H A Dobjectivec_field.cc121 FieldGenerator* FieldGenerator::Make(const FieldDescriptor* field, in Make() argument
124 if (field->is_repeated()) { in Make()
125 switch (GetObjectiveCType(field)) { in Make()
127 if (field->is_map()) { in Make()
128 result = new MapFieldGenerator(field, options); in Make()
130 result = new RepeatedMessageFieldGenerator(field, options); in Make()
135 result = new RepeatedEnumFieldGenerator(field, options); in Make()
138 result = new RepeatedPrimitiveFieldGenerator(field, options); in Make()
142 switch (GetObjectiveCType(field)) { in Make()
144 result = new MessageFieldGenerator(field, option in Make()
[all...]
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DUnknownFieldSetTest.java52 * Tests related to unknown field handling.
67 Descriptors.FieldDescriptor field = descriptor.findFieldByName(name); in getField()
68 assertNotNull(field); in getField()
69 return unknownFields.getField(field.getNumber()); in getField()
73 // numbers as allFieldsData except that each field is some other wire
83 // Original field is not a varint, so use a varint. in getBizarroData()
86 // Original field *is* a varint, so use something else. in getBizarroData()
175 UnknownFieldSet.Field field = getField("optional_int32"); in testAddField_zero()
177 UnknownFieldSet.newBuilder().addField(0, field); in testAddField_zero()
180 assertThat(expected).hasMessageThat().isEqualTo("0 is not a valid field numbe in testAddField_zero()
[all...]
/arkcompiler/runtime_core/static_core/runtime/mem/
H A Dobject_helpers.cpp82 static void DumpReferenceField(ObjectHeader *objectHeader, const Field &field, in DumpReferenceField() argument
85 size_t offset = field.GetOffset(); in DumpReferenceField()
94 static void DumpPrimitivesField(ObjectHeader *objectHeader, const Field &field, in DumpPrimitivesField() argument
97 size_t offset = field.GetOffset(); in DumpPrimitivesField()
98 panda_file::Type::TypeId typeId = field.GetTypeId(); in DumpPrimitivesField()
165 for (Field &field : fields) { in DumpObjectFields()
166 *oStream << "\tfield \"" << GetFieldName(field) << "\" "; in DumpObjectFields()
167 panda_file::Type::TypeId typeId = field.GetTypeId(); in DumpObjectFields()
169 DumpReferenceField(objectHeader, field, oStream); in DumpObjectFields()
171 DumpPrimitivesField(objectHeader, field, oStrea in DumpObjectFields()
244 GetFieldName(const Field &field) GetFieldName() argument
263 operator ()(ObjectHeader *obj, ObjectHeader *field, [[maybe_unused]] uint32_t offset, [[maybe_unused]] bool isVolatile) operator ()() argument
329 operator ()(ObjectHeader *object, ObjectHeader *field, uint32_t offset, [[maybe_unused]] bool isVolatile) operator ()() argument
358 operator ()(ObjectHeader *object, ObjectHeader *field, uint32_t offset, [[maybe_unused]] bool isVolatile) operator ()() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
H A DPropertiesTest.java74 for (Field field : fields) { in testFieldCoverage()
75 if (Modifier.isStatic(field.getModifiers())) { in testFieldCoverage()
80 String fieldNamePascalCase = Character.toUpperCase(field.getName().charAt(0)) in testFieldCoverage()
81 + field.getName().substring(1); in testFieldCoverage()
88 field.getType(), in testFieldCoverage()
91 fail("Could not find method " + getterName + " for field " + field); in testFieldCoverage()
94 fail("Could not access method " + getterName + " for field " + field); in testFieldCoverage()
98 setter = DecimalFormatProperties.class.getMethod(setterName, field in testFieldCoverage()
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
H A DPropertiesTest.java71 for (Field field : fields) { in testFieldCoverage()
72 if (Modifier.isStatic(field.getModifiers())) { in testFieldCoverage()
77 String fieldNamePascalCase = Character.toUpperCase(field.getName().charAt(0)) in testFieldCoverage()
78 + field.getName().substring(1); in testFieldCoverage()
85 field.getType(), in testFieldCoverage()
88 fail("Could not find method " + getterName + " for field " + field); in testFieldCoverage()
91 fail("Could not access method " + getterName + " for field " + field); in testFieldCoverage()
95 setter = DecimalFormatProperties.class.getMethod(setterName, field in testFieldCoverage()
[all...]
/third_party/protobuf/src/google/protobuf/
H A Dtext_format.h92 // Outputs a textual representation of the value of the field supplied on
95 // field if it is not set.
97 const FieldDescriptor* field, int index,
143 const FieldDescriptor* field,
147 const FieldDescriptor* field,
185 const FieldDescriptor* field) const;
215 // Try to find an extension of *message by fully-qualified field
235 // Find the message factory for the given extension field. This can be used
239 const FieldDescriptor* field) const;
260 const FieldDescriptor* field, in
630 RecordLocation(ParseInfoTree* info_tree, const FieldDescriptor* field, ParseLocation location) RecordLocation() argument
636 CreateNested( ParseInfoTree* info_tree, const FieldDescriptor* field) CreateNested() argument
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCalendar.java70 * <p>A <code>Calendar</code> object can produce all the time field values
77 * <code>YEAR</code>. See individual field documentation and subclass
81 * of field values than it produces. For example, a lenient
85 * out-of-range field settings. When calendars recompute field values for
117 * the Gregorian calendar, the default for a field is the same as that of the
124 * most recently set single field, will be used.
189 * <p><strong><code>set(f, value)</code></strong> changes field
191 * internal member variable to indicate that field <code>f</code> has
192 * been changed. Although field <cod
2017 get(int field) get() argument
2030 internalGet(int field) internalGet() argument
2045 internalGet(int field, int defaultValue) internalGet() argument
2055 set(int field, int value) set() argument
2297 clear(int field) clear() argument
2312 isSet(int field) isSet() argument
2463 getActualMaximum(int field) getActualMaximum() argument
2532 getActualMinimum(int field) getActualMinimum() argument
2581 prepareGetActual(int field, boolean isMinimum) prepareGetActual() argument
2628 getActualHelper(int field, int startValue, int endValue) getActualHelper() argument
2733 roll(int field, boolean up) roll() argument
2806 roll(int field, int amount) roll() argument
3185 add(int field, int amount) add() argument
3887 pinField(int field) pinField() argument
4054 fieldDifference(Date when, int field) fieldDifference() argument
4416 handleGetLimit(int field, int limitType) handleGetLimit() argument
4428 getLimit(int field, int limitType) getLimit() argument
4511 getMinimum(int field) getMinimum() argument
4522 getMaximum(int field) getMaximum() argument
4533 getGreatestMinimum(int field) getGreatestMinimum() argument
4544 getLeastMaximum(int field) getLeastMaximum() argument
5366 getStamp(int field) getStamp() argument
5406 validateField(int field) validateField() argument
5437 validateField(int field, int min, int max) validateField() argument
6276 internalSet(int field, int value) internalSet() argument
6439 fieldName(int field) fieldName() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DCalendar.java69 * <p>A <code>Calendar</code> object can produce all the time field values
76 * <code>YEAR</code>. See individual field documentation and subclass
80 * of field values than it produces. For example, a lenient
84 * out-of-range field settings. When calendars recompute field values for
116 * the Gregorian calendar, the default for a field is the same as that of the
123 * most recently set single field, will be used.
188 * <p><strong><code>set(f, value)</code></strong> changes field
190 * internal member variable to indicate that field <code>f</code> has
191 * been changed. Although field <cod
1937 get(int field) get() argument
1949 internalGet(int field) internalGet() argument
1963 internalGet(int field, int defaultValue) internalGet() argument
1972 set(int field, int value) set() argument
2211 clear(int field) clear() argument
2225 isSet(int field) isSet() argument
2369 getActualMaximum(int field) getActualMaximum() argument
2437 getActualMinimum(int field) getActualMinimum() argument
2485 prepareGetActual(int field, boolean isMinimum) prepareGetActual() argument
2532 getActualHelper(int field, int startValue, int endValue) getActualHelper() argument
2636 roll(int field, boolean up) roll() argument
2708 roll(int field, int amount) roll() argument
3086 add(int field, int amount) add() argument
3703 pinField(int field) pinField() argument
3867 fieldDifference(Date when, int field) fieldDifference() argument
4212 handleGetLimit(int field, int limitType) handleGetLimit() argument
4223 getLimit(int field, int limitType) getLimit() argument
4301 getMinimum(int field) getMinimum() argument
4311 getMaximum(int field) getMaximum() argument
4321 getGreatestMinimum(int field) getGreatestMinimum() argument
4331 getLeastMaximum(int field) getLeastMaximum() argument
5117 getStamp(int field) getStamp() argument
5154 validateField(int field) validateField() argument
5184 validateField(int field, int min, int max) validateField() argument
6006 internalSet(int field, int value) internalSet() argument
6161 fieldName(int field) fieldName() argument
[all...]
/third_party/libdrm/vc4/
H A Dvc4_qpu_defines.h148 * Non-hardware mux value, stores a small immediate field to be
211 #define QPU_SET_FIELD(value, field) \
213 uint64_t fieldval = (uint64_t)(value) << field ## _SHIFT; \
214 assert((fieldval & ~ field ## _MASK) == 0); \
215 fieldval & field ## _MASK; \
218 #define QPU_GET_FIELD(word, field) ((uint32_t)(((word) & field ## _MASK) >> field ## _SHIFT))
220 #define QPU_UPDATE_FIELD(inst, value, field) \
221 (((inst) & ~(field ## _MAS
[all...]
/third_party/rust/crates/rust-openssl/systest/
H A Dbuild.rs139 cfg.skip_field_type(|s, field| { in main()
140 (s == "EVP_PKEY" && field == "pkey") || // union in main()
141 (s == "GENERAL_NAME" && field == "d") || // union in main()
142 (s == "DIST_POINT_NAME" && field == "name") || // union in main()
143 (s == "X509_OBJECT" && field == "data") || // union in main()
144 (s == "PKCS7" && field == "d") || // union in main()
145 (s == "ASN1_TYPE" && field == "value") // union in main()
156 cfg.field_name(|_s, field| { in main()
157 if field == "type_" { in main()
160 field in main()
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/include/
H A Dquery_expression.h87 void EqualTo(const std::string &field, const QueryValueType type, const FieldValue &value);
89 void NotEqualTo(const std::string &field, const QueryValueType type, const FieldValue &value);
91 void GreaterThan(const std::string &field, const QueryValueType type, const FieldValue &value);
93 void LessThan(const std::string &field, const QueryValueType type, const FieldValue &value);
95 void GreaterThanOrEqualTo(const std::string &field, const QueryValueType type, const FieldValue &value);
97 void LessThanOrEqualTo(const std::string &field, const QueryValueType type, const FieldValue &value);
99 void OrderBy(const std::string &field, bool isAsc);
103 void Like(const std::string &field, const std::string &value);
104 void NotLike(const std::string &field, const std::string &value);
106 void In(const std::string &field, cons
[all...]
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A DSymbolTable.cpp110 for(const auto& field : *mFields) in containsArrays()
112 const TType *fieldType = field->type(); in containsArrays()
121 for(const auto& field : *mFields) in containsType()
123 const TType *fieldType = field->type(); in containsType()
132 for(const auto& field : *mFields) in containsSamplers()
134 const TType *fieldType = field->type(); in containsSamplers()
143 for(auto& field : *mFields) in setMatrixPackingIfUnspecified()
145 field->type()->setMatrixPackingIfUnspecified(matrixPacking); in setMatrixPackingIfUnspecified()
153 for(const auto& field : *mFields) in buildMangledName()
156 mangledName += field in buildMangledName()
[all...]
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DGPBJsonWire.php40 $field,
45 $field_name = GPBJsonWire::formatFieldName($field);
51 $field,
58 $field,
62 if ($field->isMap()) {
65 $map_entry = $field->getMessageType();
112 } elseif ($field->isRepeated()) {
123 $field,
134 $field,
142 $field,
[all...]
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/
H A Dets_type_visitor-inl.h94 virtual void VisitFieldPrimitive(ark::Field const *field, ark::panda_file::Type type) = 0;
95 virtual void VisitFieldReference(ark::Field const *field, ark::Class *klass) = 0;
97 virtual void VisitField(ark::Field const *field) in VisitField() argument
99 auto type = field->GetType(); in VisitField()
101 return VisitFieldPrimitive(field, type); in VisitField()
103 return VisitFieldReference(field, field->ResolveTypeClass()); in VisitField()
258 u_.field.obj = obj; // NOLINT(cppcoreguidelines-pro-type-union-access) in EtsConvertorRef()
259 u_.field.offs = offs; // NOLINT(cppcoreguidelines-pro-type-union-access) in EtsConvertorRef()
267 return (*u_.field in LoadPrimitive()
307 FieldSlot field; global() member
[all...]
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
H A DinterfacePropertyDeclarations.cpp35 void TransformOptionalFieldTypeAnnotation(checker::ETSChecker *const checker, ir::ClassProperty *const field) in TransformOptionalFieldTypeAnnotation() argument
37 if (!field->IsOptionalDeclaration()) { in TransformOptionalFieldTypeAnnotation()
41 if (field->IsETSUnionType()) { in TransformOptionalFieldTypeAnnotation()
43 auto unionTypes = field->AsETSUnionType()->Types(); in TransformOptionalFieldTypeAnnotation()
51 ArenaVector<ir::TypeNode *> types(field->AsETSUnionType()->Types(), checker->Allocator()->Adapter()); in TransformOptionalFieldTypeAnnotation()
54 field->SetTypeAnnotation(unionType); in TransformOptionalFieldTypeAnnotation()
58 types.push_back(field->TypeAnnotation()); in TransformOptionalFieldTypeAnnotation()
61 field->SetTypeAnnotation(unionType); in TransformOptionalFieldTypeAnnotation()
63 field->ClearModifier(ir::ModifierFlags::OPTIONAL); in TransformOptionalFieldTypeAnnotation()
68 static ir::MethodDefinition *GenerateGetterOrSetter(checker::ETSChecker *const checker, ir::ClassProperty *const field, in GenerateGetterOrSetter() argument
[all...]
/third_party/rust/crates/libc/src/
H A Dmacros.rs65 ($($(#[$attr:meta])* pub $t:ident $i:ident { $($field:tt)* })*) => ($(
66 s!(it: $(#[$attr])* pub $t $i { $($field)* });
68 (it: $(#[$attr:meta])* pub union $i:ident { $($field:tt)* }) => (
71 (it: $(#[$attr:meta])* pub struct $i:ident { $($field:tt)* }) => (
77 pub struct $i { $($field)* }
89 ($($(#[$attr:meta])* pub $t:ident $i:ident { $($field:tt)* })*) => ($(
90 s_no_extra_traits!(it: $(#[$attr])* pub $t $i { $($field)* });
92 (it: $(#[$attr:meta])* pub union $i:ident { $($field:tt)* }) => (
98 pub union $i { $($field)* }
108 (it: $(#[$attr:meta])* pub struct $i:ident { $($field
[all...]
/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_helpers.h56 // annotation's comments field. delimiter should be the Printer's delimiter
77 // Converts the field's name to camel-case, e.g. "foo_bar_baz" becomes
79 std::string UnderscoresToCamelCase(const FieldDescriptor* field);
80 std::string UnderscoresToCapitalizedCamelCase(const FieldDescriptor* field);
87 std::string UnderscoresToCamelCaseCheckReserved(const FieldDescriptor* field);
91 std::string CamelCaseFieldName(const FieldDescriptor* field);
154 std::string GetOneofStoredType(const FieldDescriptor* field);
199 // Get the unqualified name that should be used for a field's field
201 std::string FieldConstantName(const FieldDescriptor* field);
238 ImmutableDefaultValue(const FieldDescriptor* field, ClassNameResolver* name_resolver) ImmutableDefaultValue() argument
397 SupportUnknownEnumValue(const FieldDescriptor* field) SupportUnknownEnumValue() argument
[all...]
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/dataability/src/
H A Dnapi_data_ability_predicates.cpp203 std::string field; in EqualTo() local
204 RDB_CHECK_RETURN_NULLPTR(JSUtils::Convert2Value(env, args[0], field) == napi_ok, "the field is invalid"); in EqualTo()
209 nativePredicates->EqualTo(field, value); in EqualTo()
220 std::string field; in NotEqualTo() local
221 RDB_CHECK_RETURN_NULLPTR(JSUtils::Convert2Value(env, args[0], field) == napi_ok, "the field is invalid"); in NotEqualTo()
226 nativePredicates->NotEqualTo(field, value); in NotEqualTo()
277 std::string field; in Contains() local
278 RDB_CHECK_RETURN_NULLPTR(JSUtils::Convert2Value(env, args[0], field) in Contains()
294 std::string field; BeginsWith() local
311 std::string field; EndsWith() local
328 std::string field; IsNull() local
343 std::string field; IsNotNull() local
358 std::string field; Like() local
375 std::string field; Glob() local
393 std::string field; Between() local
416 std::string field; NotBetween() local
438 std::string field; GreaterThan() local
455 std::string field; LessThan() local
472 std::string field; GreaterThanOrEqualTo() local
489 std::string field; LessThanOrEqualTo() local
507 std::string field; OrderByAsc() local
524 std::string field; OrderByDesc() local
619 std::string field; In() local
639 std::string field; NotIn() local
[all...]
/arkcompiler/runtime_core/static_core/runtime/include/coretypes/
H A Dclass.h53 T GetFieldPrimitive(const Field &field) const in GetFieldPrimitive()
55 return klass_.GetFieldPrimitive<T>(field); in GetFieldPrimitive()
59 void SetFieldPrimitive(const Field &field, T value) in SetFieldPrimitive() argument
61 klass_.SetFieldPrimitive(field, value); in SetFieldPrimitive()
65 ObjectHeader *GetFieldObject(const Field &field) const in GetFieldObject()
67 return klass_.GetFieldObject<NEED_READ_BARRIER>(field); in GetFieldObject()
71 void SetFieldObject(const Field &field, ObjectHeader *value) in SetFieldObject() argument
73 klass_.SetFieldObject<NEED_WRITE_BARRIER>(field, value); in SetFieldObject()
95 // Klass field has variable size so it must be last
/third_party/ffmpeg/libavfilter/
H A Dvf_field.c24 * field filter, based on libmpcodecs/vf_field.c by Rich Felker
44 {"type", "set field type (top or bottom)", OFFSET(type), AV_OPT_TYPE_INT, {.i64=FIELD_TYPE_TOP}, 0, 1, FLAGS, "field_type" },
45 {"top", "select top field", 0, AV_OPT_TYPE_CONST, {.i64=FIELD_TYPE_TOP}, INT_MIN, INT_MAX, FLAGS, "field_type"},
46 {"bottom", "select bottom field", 0, AV_OPT_TYPE_CONST, {.i64=FIELD_TYPE_BOTTOM}, INT_MIN, INT_MAX, FLAGS, "field_type"},
50 AVFILTER_DEFINE_CLASS(field); variable
55 FieldContext *field = ctx->priv; in config_props_output() local
58 field->nb_planes = av_pix_fmt_count_planes(outlink->format); in config_props_output()
61 outlink->h = (inlink->h + (field->type == FIELD_TYPE_TOP)) / 2; in config_props_output()
64 inlink->w, inlink->h, field->type == FIELD_TYPE_BOTTOM ? "bottom" : "top", in config_props_output()
71 FieldContext *field in filter_frame() local
[all...]
/arkcompiler/runtime_core/static_core/runtime/
H A Dclass_initializer.cpp420 static void InitializePrimitiveField(Class *klass, const Field &field)
422 panda_file::FieldDataAccessor fda(*field.GetPandaFile(), field.GetFileId());
424 klass->SetFieldPrimitive<T>(field, value ? value.value() : 0);
427 static void InitializeTaggedField(Class *klass, const Field &field)
430 klass->SetFieldPrimitive<coretypes::TaggedValue>(field, ctx.GetInitialTaggedValue());
433 static void InitializeStringField(Class *klass, const Field &field)
435 panda_file::FieldDataAccessor fda(*field.GetPandaFile(), field.GetFileId());
441 klass->SetFieldObject(field, st
[all...]
/third_party/libbpf/src/
H A Dbpf_core_read.h8 * a field, captured as a first argument. __builtin_preserve_field_info(field,
9 * info_kind) returns __u32 integer and produces BTF field relocation, which
14 BPF_FIELD_BYTE_OFFSET = 0, /* field byte offset */
16 BPF_FIELD_EXISTS = 2, /* field existence in target kernel */
41 #define __CORE_RELO(src, field, info) \
42 __builtin_preserve_field_info((src)->field, BPF_FIELD_##info)
53 * field byte size
63 * Extract bitfield, identified by s->field, and return its value as u64.
70 #define BPF_CORE_READ_BITFIELD_PROBED(s, field) ({ \
[all...]
/third_party/protobuf/src/google/protobuf/util/
H A Dfield_comparator_test.cc60 const FieldDescriptor* field = descriptor_->FindFieldByName("optionalgroup"); in TEST_F() local
62 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL)); in TEST_F()
66 const FieldDescriptor* field = in TEST_F() local
69 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL)); in TEST_F()
73 const FieldDescriptor* field = in TEST_F() local
76 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL)); in TEST_F()
80 const FieldDescriptor* field = descriptor_->FindFieldByName("optional_int32"); in TEST_F() local
85 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL)); in TEST_F()
89 comparator_.Compare(message_1_, message_2_, field, -1, -1, NULL)); in TEST_F()
93 const FieldDescriptor* field in TEST_F() local
106 const FieldDescriptor* field = TEST_F() local
120 const FieldDescriptor* field = TEST_F() local
134 const FieldDescriptor* field = descriptor_->FindFieldByName("optional_bool"); TEST_F() local
147 const FieldDescriptor* field = TEST_F() local
161 const FieldDescriptor* field = TEST_F() local
476 const FieldDescriptor* field = TEST_F() local
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/jskitsimpl/distributedkvstore/src/
H A Djs_query.cpp103 std::string field; member
109 // required 2 arguments :: <field> <value> in GetValueSync()
112 status = JSUtil::GetValue(env, argv[0], field); in GetValueSync()
114 "Parameter error:parameter field type must be string"); in GetValueSync()
123 /* [js] equalTo(field:string, value:number|string|boolean):JsQuery */
140 query.EqualTo(ctxt->field, *strValue); in EqualTo()
144 query.EqualTo(ctxt->field, *boolValue); in EqualTo()
148 query.EqualTo(ctxt->field, *dblValue); in EqualTo()
167 query.NotEqualTo(ctxt->field, *strValue); in NotEqualTo()
171 query.NotEqualTo(ctxt->field, *boolValu in NotEqualTo()
292 std::string field; IsNull() local
323 std::string field; global() member
400 std::string field; InString() member
449 std::string field; NotInString() member
478 std::string field; Like() member
507 std::string field; Unlike() member
559 std::string field; OrderByAsc() local
582 std::string field; OrderByDesc() local
633 std::string field; IsNotNull() local
[all...]

Completed in 18 milliseconds

1...<<11121314151617181920>>...87