HomeSort by relevance Sort by last modified time
    Searched full:fieldtype (Results 1 - 25 of 313) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/src/
field-type.cc 15 FieldType* FieldType::None() {
16 return reinterpret_cast<FieldType*>(Smi::FromInt(0));
20 FieldType* FieldType::Any() {
21 return reinterpret_cast<FieldType*>(Smi::FromInt(1));
25 Handle<FieldType> FieldType::None(Isolate* isolate) {
30 Handle<FieldType> FieldType::Any(Isolate* isolate)
    [all...]
field-type.h 15 class FieldType : public Object {
17 static FieldType* None();
18 static FieldType* Any();
19 static Handle<FieldType> None(Isolate* isolate);
20 static Handle<FieldType> Any(Isolate* isolate);
21 static FieldType* Class(i::Map* map);
22 static Handle<FieldType> Class(i::Handle<i::Map> map, Isolate* isolate);
23 static FieldType* cast(Object* object);
39 bool NowIs(FieldType* other);
40 bool NowIs(Handle<FieldType> other)
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map_field_lite.h 45 WireFormatLite::FieldType key_wire_type,
46 WireFormatLite::FieldType value_wire_type,
95 WireFormatLite::FieldType key_wire_type,
96 WireFormatLite::FieldType value_wire_type,
106 WireFormatLite::FieldType key_wire_type,
107 WireFormatLite::FieldType value_wire_type,
117 WireFormatLite::FieldType key_wire_type,
118 WireFormatLite::FieldType value_wire_type,
126 WireFormatLite::FieldType key_wire_type,
127 WireFormatLite::FieldType value_wire_type
    [all...]
map_field_inl.h 166 WireFormatLite::FieldType kKeyFieldType,
167 WireFormatLite::FieldType kValueFieldType,
173 WireFormatLite::FieldType kKeyFieldType,
174 WireFormatLite::FieldType kValueFieldType,
184 WireFormatLite::FieldType kKeyFieldType,
185 WireFormatLite::FieldType kValueFieldType,
192 WireFormatLite::FieldType kKeyFieldType,
193 WireFormatLite::FieldType kValueFieldType,
203 WireFormatLite::FieldType kKeyFieldType,
204 WireFormatLite::FieldType kValueFieldType
    [all...]
map_type_handler.h 102 template <WireFormatLite::FieldType field_type, typename Type>
105 #define TYPE_TRAITS(FieldType, CType, WireFormatType, IsMessage, IsEnum) \
107 class MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, Type> { \
137 template <WireFormatLite::FieldType field_type, typename Type>
199 #define MAP_HANDLER(FieldType) \
201 class MapTypeHandler<WireFormatLite::TYPE_##FieldType, Type> { \
203 typedef typename MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, \
206 typedef typename MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, \
209 MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, \
212 MapWireFieldTypeTraits<WireFormatLite::TYPE_##FieldType, \
    [all...]
extension_set.h 76 // Used to store values of type WireFormatLite::FieldType without having to
80 typedef uint8 FieldType;
94 inline ExtensionInfo(FieldType type_param, bool isrepeated, bool ispacked)
98 FieldType type;
172 int number, FieldType type,
175 int number, FieldType type,
179 int number, FieldType type,
224 FieldType ExtensionType(int number) const;
247 void SetInt32 (int number, FieldType type, int32 value, desc);
248 void SetInt64 (int number, FieldType type, int64 value, desc)
    [all...]
map_entry_lite.h 42 WireFormatLite::FieldType kKeyFieldType,
43 WireFormatLite::FieldType kValueFieldType,
47 WireFormatLite::FieldType kKeyFieldType,
48 WireFormatLite::FieldType kValueFieldType,
60 WireFormatLite::FieldType kKeyFieldType,
61 WireFormatLite::FieldType kValueFieldType,
293 template <typename K, typename V, WireFormatLite::FieldType k_wire_type,
294 WireFormatLite::FieldType v_wire_type, int default_enum>
327 template <typename K, typename V, WireFormatLite::FieldType k_wire_type,
328 WireFormatLite::FieldType v_wire_type, int default_enum
    [all...]
  /external/v8/test/cctest/
test-field-type-tracking.cc 93 // FieldType for kField, value for DATA_CONSTANT and getter for
158 Handle<FieldType> GetFieldType(int index) {
161 return Handle<FieldType>::cast(values_[index]);
165 Representation representation, Handle<FieldType> value) {
170 Handle<FieldType> value) {
176 FieldType::Any(isolate_));
232 values_[index] = FieldType::Any(isolate_);
248 FieldType* type = descriptors->GetFieldType(descriptor);
249 return FieldType::cast(expected_value) == type;
304 Handle<FieldType> heap_type)
    [all...]
  /external/javassist/src/main/javassist/expr/
FieldAccess.java 160 CtClass fieldType
166 retType = fieldType;
170 params[0] = fieldType;
190 jc.recordType(fieldType);
225 CtClass fieldType;
230 fieldType = type;
251 if (fieldType instanceof CtPrimitiveType)
252 stack += ((CtPrimitiveType)fieldType).getDataSize();
259 gen.setType(fieldType);
265 c.setType(fieldType);
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderFieldReference.java 42 @Nonnull final BuilderTypeReference fieldType;
47 @Nonnull BuilderTypeReference fieldType) {
50 this.fieldType = fieldType;
62 return fieldType.getType();
  /external/libchrome/base/json/
json_value_converter.h 110 template <typename FieldType>
114 virtual bool Convert(const base::Value& value, FieldType* field) const = 0;
117 template <typename StructType, typename FieldType>
121 FieldType StructType::* field,
122 ValueConverter<FieldType>* converter)
133 FieldType StructType::* field_pointer_;
134 scoped_ptr<ValueConverter<FieldType> > value_converter_;
138 template <typename FieldType>
198 template <typename FieldType>
199 class ValueFieldConverter : public ValueConverter<FieldType> {
    [all...]
  /external/javassist/src/main/javassist/compiler/
AccessorMaker.java 163 String fieldType = finfo.getDescriptor();
166 accDesc = "()" + fieldType;
168 accDesc = "(" + Descriptor.of(clazz) + ")" + fieldType;
175 code.addGetstatic(Bytecode.THIS, fieldName, fieldType);
179 code.addGetfield(Bytecode.THIS, fieldName, fieldType);
183 code.addReturn(Descriptor.toCtClass(fieldType, pool));
214 String fieldType = finfo.getDescriptor();
217 accDesc = "(" + fieldType + ")V";
219 accDesc = "(" + Descriptor.of(clazz) + fieldType + ")V";
227 reg = code.addLoad(0, Descriptor.toCtClass(fieldType, pool))
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
extension_set.h 74 // Used to store values of type WireFormatLite::FieldType without having to
78 typedef uint8 FieldType;
92 inline ExtensionInfo(FieldType type_param, bool isrepeated, bool ispacked)
96 FieldType type;
166 int number, FieldType type,
169 int number, FieldType type,
173 int number, FieldType type,
218 FieldType ExtensionType(int number) const;
241 void SetInt32 (int number, FieldType type, int32 value, desc);
242 void SetInt64 (int number, FieldType type, int64 value, desc)
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
extension_set.h 74 // Used to store values of type WireFormatLite::FieldType without having to
78 typedef uint8 FieldType;
92 inline ExtensionInfo(FieldType type_param, bool isrepeated, bool ispacked)
96 FieldType type;
166 int number, FieldType type,
169 int number, FieldType type,
173 int number, FieldType type,
218 FieldType ExtensionType(int number) const;
241 void SetInt32 (int number, FieldType type, int32 value, desc);
242 void SetInt64 (int number, FieldType type, int64 value, desc)
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
extension_set.h 74 // Used to store values of type WireFormatLite::FieldType without having to
78 typedef uint8 FieldType;
92 inline ExtensionInfo(FieldType type_param, bool isrepeated, bool ispacked)
96 FieldType type;
166 int number, FieldType type,
169 int number, FieldType type,
173 int number, FieldType type,
218 FieldType ExtensionType(int number) const;
241 void SetInt32 (int number, FieldType type, int32 value, desc);
242 void SetInt64 (int number, FieldType type, int64 value, desc)
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
extension_set.h 74 // Used to store values of type WireFormatLite::FieldType without having to
78 typedef uint8 FieldType;
92 inline ExtensionInfo(FieldType type_param, bool isrepeated, bool ispacked)
96 FieldType type;
166 int number, FieldType type,
169 int number, FieldType type,
173 int number, FieldType type,
218 FieldType ExtensionType(int number) const;
241 void SetInt32 (int number, FieldType type, int32 value, desc);
242 void SetInt64 (int number, FieldType type, int64 value, desc)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
form.h 109 * FIELDTYPE *
118 void* (*makearg)(va_list *); /* make fieldtype arg */
119 void* (*copyarg)(const void *); /* copy fieldtype arg */
120 void (*freearg)(void *); /* free fieldtype arg */
128 } FIELDTYPE;
268 extern NCURSES_EXPORT_VAR(FIELDTYPE *) TYPE_ALPHA;
269 extern NCURSES_EXPORT_VAR(FIELDTYPE *) TYPE_ALNUM;
270 extern NCURSES_EXPORT_VAR(FIELDTYPE *) TYPE_ENUM;
271 extern NCURSES_EXPORT_VAR(FIELDTYPE *) TYPE_INTEGER;
272 extern NCURSES_EXPORT_VAR(FIELDTYPE *) TYPE_NUMERIC
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
form.h 142 * FIELDTYPE *
151 void* (*makearg)(va_list *); /* make fieldtype arg */
152 void* (*copyarg)(const void *); /* copy fieldtype arg */
153 void (*freearg)(void *); /* free fieldtype arg */
181 } FIELDTYPE;
290 extern NCURSES_EXPORT_VAR(FIELDTYPE *) TYPE_ALPHA;
291 extern NCURSES_EXPORT_VAR(FIELDTYPE *) TYPE_ALNUM;
292 extern NCURSES_EXPORT_VAR(FIELDTYPE *) TYPE_ENUM;
293 extern NCURSES_EXPORT_VAR(FIELDTYPE *) TYPE_INTEGER;
294 extern NCURSES_EXPORT_VAR(FIELDTYPE *) TYPE_NUMERIC
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
FieldRef.java 25 public FieldRef(String declClass, String fieldType, String fieldName) {
27 mFieldType = fieldType;
  /external/opencv/otherlibs/highgui/
grfmt_tiff.cpp 295 TiffFieldType fieldType,
303 if( fieldType != TIFF_TYPE_SHORT &&
304 fieldType != TIFF_TYPE_LONG &&
305 fieldType != TIFF_TYPE_BYTE )
322 if( fieldType == TIFF_TYPE_LONG )
331 else if( fieldType == TIFF_TYPE_SHORT )
340 else // fieldType == TIFF_TYPE_BYTE
348 assert( (offset & ~tiffMask[fieldType]) == 0 );
392 TiffFieldType fieldType = (TiffFieldType)GetWordEx();
399 if( fieldType == TIFF_TYPE_SHORT
    [all...]
  /external/protobuf/src/google/protobuf/
extension_set.h 73 // Used to store values of type WireFormatLite::FieldType without having to
77 typedef uint8 FieldType;
91 inline ExtensionInfo(FieldType type_param, bool isrepeated, bool ispacked)
95 FieldType type;
168 int number, FieldType type,
171 int number, FieldType type,
175 int number, FieldType type,
220 FieldType ExtensionType(int number) const;
243 void SetInt32 (int number, FieldType type, int32 value, desc);
244 void SetInt64 (int number, FieldType type, int64 value, desc)
    [all...]
  /external/clang/include/clang/Basic/
AllDiagnostics.h 29 template <size_t SizeOfStr, typename FieldType>
31 char FIELD_TOO_SMALL[SizeOfStr <= FieldType(~0U) ? 1 : -1];
  /external/proguard/src/proguard/obfuscate/
MultiMappingProcessor.java 63 String fieldType,
70 fieldType,
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageObject.java 71 Class<?> fieldType = f.getType();
84 if (fieldType.isPrimitive()) {
85 String fname = fieldType.toString();
111 fieldType)) {
121 fieldType)) {
136 sprint(fieldType.getName() + ":");
  /prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar 

Completed in 560 milliseconds

1 2 3 4 5 6 7 8 91011>>