Searched defs:kind (Results 1 - 7 of 7) sorted by relevance

/system/tools/aidl/
H A Dtype_namespace.cpp73 int kind, const string& package, const string& type_name,
75 : kind_(kind),
72 ValidatableType( int kind, const string& package, const string& type_name, const string& decl_file, int decl_line) argument
H A Dtype_cpp.cpp81 CppArrayType(int kind, // from ValidatableType argument
90 : Type(kind, package,
98 : new CppArrayType(kind, package, underlying_aidl_type,
391 Type::Type(int kind, argument
402 : ValidatableType(kind, package, aidl_type, src_file_name, line),
H A Dtype_java.cpp43 Type::Type(const JavaTypeNamespace* types, const string& name, int kind, argument
45 : Type(types, "", name, kind, canWriteToParcel, canBeOut, "", -1) {}
48 const string& name, int kind, bool canWriteToParcel,
50 : ValidatableType(kind, package, name, declFile, declLine),
47 Type(const JavaTypeNamespace* types, const string& package, const string& name, int kind, bool canWriteToParcel, bool canBeOut, const string& declFile, int declLine) argument
/system/tools/hidl/
H A DScalarType.cpp23 ScalarType::ScalarType(Kind kind) argument
24 : mKind(kind) {
H A DConstantExpression.cpp58 static inline bool isSupported(ScalarType::Kind kind) { argument
59 return SK(BOOL) == kind || ScalarType(kind).isValidEnumStorageType();
155 ConstantExpression ConstantExpression::Zero(ScalarType::Kind kind) { argument
156 ConstantExpression ce = ValueOf(kind, 0);
161 ConstantExpression ConstantExpression::One(ScalarType::Kind kind) { argument
162 ConstantExpression ce = ValueOf(kind, 1);
167 ConstantExpression ConstantExpression::ValueOf(ScalarType::Kind kind, uint64_t value) { argument
169 CHECK(isSupported(kind));
173 ce.mValueKind = kind;
[all...]
/system/media/camera/docs/
H A Dmetadata_model.py28 InnerNamespace: A node corresponding to a <namespace> nested under a <kind>.
29 OuterNamespace: A node corresponding to a <namespace> with <kind> children.
209 # kind => { name => entry }
299 Subsequent calls to insert_entry with the same entry+kind name are safe
304 self._entry_map[e.kind][e.name] = e
316 Subsequent calls to insert_clone with the same clone+kind name are safe
323 self._entry_map[c.kind][c.name] = c
351 self._entry_map[p.kind].pop(p.name)
354 def is_entry_this_kind(self, entry, kind):
356 Check if input entry if of input kind
1154 def kind(self): member in class:Entry
[all...]
/system/vold/
H A DKeyStorage.cpp83 static bool checkSize(const std::string& kind, size_t actual, size_t expected) { argument
85 LOG(ERROR) << "Wrong number of bytes in " << kind << ", expected " << expected << " got "

Completed in 1355 milliseconds