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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/provider/
MetadataReader.java 63 private static final int TYPE_STRING = 2;
71 TYPE_MAPPING.put(ExifInterface.TAG_ARTIST, TYPE_STRING);
74 TYPE_MAPPING.put(ExifInterface.TAG_COPYRIGHT, TYPE_STRING);
75 TYPE_MAPPING.put(ExifInterface.TAG_DATETIME, TYPE_STRING);
76 TYPE_MAPPING.put(ExifInterface.TAG_IMAGE_DESCRIPTION, TYPE_STRING);
81 TYPE_MAPPING.put(ExifInterface.TAG_MAKE, TYPE_STRING);
82 TYPE_MAPPING.put(ExifInterface.TAG_MODEL, TYPE_STRING);
91 TYPE_MAPPING.put(ExifInterface.TAG_SOFTWARE, TYPE_STRING);
103 TYPE_MAPPING.put(ExifInterface.TAG_CFA_PATTERN, TYPE_STRING);
105 TYPE_MAPPING.put(ExifInterface.TAG_COMPONENTS_CONFIGURATION, TYPE_STRING);
    [all...]
  /external/adhd/cras/src/server/
cras_dbus_util.c 9 int type, const char *type_string,
20 type_string, &variant))
cras_dbus_util.h 13 * type_string - the type of the value in string form (for example, "y")
19 int type, const char *type_string,
  /external/ltp/utils/ffsb-6.0-rc2/
parser.h 31 #define TYPE_STRING 0x0004
55 {"callout", NULL, TYPE_STRING, STORE_SINGLE}, \
59 {"bindfs", NULL, TYPE_STRING, STORE_SINGLE}, \
89 {"location", NULL, TYPE_STRING, STORE_SINGLE}, \
102 {"clone", NULL, TYPE_STRING, STORE_SINGLE}, \
108 {"ignore", NULL, TYPE_STRING, STORE_LIST}, \
  /external/v8/tools/turbolizer/
node.js 74 var type_string = this.type;
75 if (type_string == undefined) return "";
76 if (type_string.length > 24) {
77 type_string = type_string.substr(0, 25) + "...";
79 return type_string;
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_context.cc 128 const string type_string = DataTypeString(type);
129 VLOG(1) << "Building Max() for " << type_string;
130 xla::ComputationBuilder b(builder()->client(), "max<" + type_string + ">");
142 const string type_string = DataTypeString(type);
143 VLOG(1) << "Building Min() for " << type_string;
144 xla::ComputationBuilder b(builder()->client(), "min<" + type_string + ">");
156 const string type_string = DataTypeString(type);
157 VLOG(1) << "Building Add() for " << type_string;
158 xla::ComputationBuilder b(builder()->client(), "add<" + type_string + ">");
170 const string type_string = DataTypeString(type)
    [all...]
const_analysis.cc 46 if (metadata_ops.find(node->type_string()) != metadata_ops.end()) return;
51 if (node->type_string() == "_Arg") {
66 XlaOpRegistry::CompileTimeConstantInputs(node->type_string());
  /packages/apps/TvSettings/QuickSettings/src/com/android/tv/quicksettings/
Setting.java 22 static final int TYPE_STRING = 2;
50 mSettingType = TYPE_STRING;
88 mSettingType = TYPE_STRING;
  /external/autotest/client/deps/ibusclient/src/
ibusclient.cc 43 // Converts |type_string| into GVariantClass.
44 GVariantClass GetGVariantClassFromStringOrDie(const std::string& type_string) {
45 if (type_string == "boolean") {
47 } else if (type_string == "int") {
49 } else if (type_string == "double") {
51 } else if (type_string == "string") {
53 } else if (GetElementType(type_string) != type_string) {
56 printf("FAIL (unknown type: %s)\n", type_string.c_str());
70 // dummy value by |type_string|. "boolean", "int", "double", or "string" ar
    [all...]
  /external/bsdiff/
bsdiff_arguments.cc 110 string type_string = str; local
111 std::transform(type_string.begin(), type_string.end(), type_string.begin(),
113 if (type_string == kNoCompressionString) {
116 } else if (type_string == kBZ2String) {
119 } else if (type_string == kBrotliString) {
  /external/protobuf/src/google/protobuf/util/internal/
datapiece.cc 116 if (type_ == TYPE_STRING) return StringToNumber<int32>(safe_strto32);
128 if (type_ == TYPE_STRING) return StringToNumber<uint32>(safe_strtou32);
140 if (type_ == TYPE_STRING) return StringToNumber<int64>(safe_strto64);
152 if (type_ == TYPE_STRING) return StringToNumber<uint64>(safe_strtou64);
167 if (type_ == TYPE_STRING) {
180 if (type_ == TYPE_STRING) {
195 case TYPE_STRING:
205 case TYPE_STRING:
234 case TYPE_STRING:
250 if (type_ == TYPE_STRING) {
    [all...]
  /system/core/init/
property_type.h 25 bool CheckType(const std::string& type_string, const std::string& value);
property_type.cpp 31 bool CheckType(const std::string& type_string, const std::string& value) {
32 auto type_strings = Split(type_string, " ");
  /external/selinux/gui/
usersPage.py 56 self.store = Gtk.ListStore(GObject.TYPE_STRING, GObject.TYPE_STRING, GObject.TYPE_STRING, GObject.TYPE_STRING, GObject.TYPE_STRING)
  /external/tensorflow/tensorflow/tools/graph_transforms/
strip_unused_nodes.cc 44 const string& type_string = context.params.at("type")[0]; local
45 if (!DataTypeFromString(type_string, result)) {
47 type_string, "'");
65 const string& type_string = context.params.at("type_for_name")[i]; local
66 if (!DataTypeFromString(type_string, result)) {
68 type_string, "'");
  /external/tensorflow/tensorflow/compiler/jit/
xla_device_ops.cc 26 << type_string() << " on an XLA device. This should never happen.";
mark_for_compilation_pass.cc 52 if (node.type_string() == "SymbolicGradient") return false;
69 VLOG(2) << "Loop marking: " << while_node.type_string();
140 if (node->type_string() == "_Arg" || node->type_string() == "_Retval")
142 if (node->type_string() == "While") {
209 << ": " << node->type_string();
215 << node->name() << ": " << node->type_string();
218 if (node->type_string() == "While" &&
224 if (node->type_string() == "_Arg") {
231 if (node->type_string() == "_Retval")
    [all...]
  /frameworks/base/core/jni/hwbinder/
EphemeralStorage.h 57 TYPE_STRING,
  /frameworks/base/tools/incident_report/
generic_message.cpp 60 node.type = TYPE_STRING;
generic_message.h 41 TYPE_STRING,
  /external/mesa3d/src/mapi/glapi/gen/
typeexpr.py 115 def __init__(self, type_string, extra_types = None):
118 if not type_string:
121 self.original_string = type_string
126 # Replace '*' with ' * ' in type_string. Then, split the string
128 tokens = string.split( string.replace( type_string, "*", " * " ) )
glX_proto_recv.py 201 t = param.type_string()
268 type_string = param.type_string()
273 print '%s %s const %s = (%s) (%s(pc + %s));' % (indent, type_string, param.name, type_string, cond, offset)
283 print '%s const %s %s = %s;' % (indent, type_string, param.name, location)
288 print '%s %s %s = %s%s;' % (indent, type_string, param.name, cond, location)
290 print '%s %s %s;' % (indent, type_string, param.name)
343 print ' %s = (%s) (pc + %s); break;' % (param.name, param.type_string(), o)
346 print ' %s = (%s) %s( (%s *) (pc + %s), %s ); break;' % (param.name, param.type_string(), swap_func, self.real_types[sub[0]], o, count_name
    [all...]
  /external/v8/src/
flags.cc 43 TYPE_STRING,
86 DCHECK(type_ == TYPE_STRING);
91 DCHECK(type_ == TYPE_STRING);
124 DCHECK(type_ == TYPE_STRING);
146 case TYPE_STRING: {
178 case TYPE_STRING:
206 case Flag::TYPE_STRING: return "string";
233 case Flag::TYPE_STRING: {
451 case Flag::TYPE_STRING:
  /external/tensorflow/tensorflow/core/framework/
op_def_builder.cc 124 bool ProcessCompoundType(const StringPiece type_string, AttrValue* allowed) {
125 if (type_string == "numbertype" || type_string == "numerictype") {
129 } else if (type_string == "quantizedtype") {
133 } else if (type_string == "realnumbertype" ||
134 type_string == "realnumerictype") {
157 StringPiece type_string; // Used if type == "type" local
174 } else if (ConsumeCompoundAttrType(&spec, &type_string)) {
177 VERIFY(ProcessCompoundType(type_string, allowed),
178 "Expected to see a compound type, saw: ", type_string); local
215 "Unrecognized type string '", type_string, "'"); local
    [all...]
  /external/nanopb-c/generator/google/protobuf/internal/
type_checkers.py 68 field_type == _FieldDescriptor.TYPE_STRING):
182 _FieldDescriptor.TYPE_STRING: wire_format.StringByteSize,
205 _FieldDescriptor.TYPE_STRING: encoder.StringEncoder,
228 _FieldDescriptor.TYPE_STRING: encoder.StringSizer,
251 _FieldDescriptor.TYPE_STRING: decoder.StringDecoder,
273 _FieldDescriptor.TYPE_STRING:

Completed in 1832 milliseconds

1 2 3 4 5 6 7 8 91011>>