/external/protobuf/src/google/protobuf/ |
D | wire_format_lite_inl.h | 228 template <typename CType, enum WireFormatLite::FieldType DeclaredType> 233 RepeatedField<CType>* values) { in ReadRepeatedPrimitive() 234 CType value; in ReadRepeatedPrimitive() 235 if (!ReadPrimitive<CType, DeclaredType>(input, &value)) return false; in ReadRepeatedPrimitive() 239 if (!ReadPrimitive<CType, DeclaredType>(input, &value)) return false; in ReadRepeatedPrimitive() 246 template <typename CType, enum WireFormatLite::FieldType DeclaredType> 251 RepeatedField<CType>* values) { in ReadRepeatedFixedSizePrimitive() 253 CType value; in ReadRepeatedFixedSizePrimitive() 254 if (!ReadPrimitive<CType, DeclaredType>(input, &value)) in ReadRepeatedFixedSizePrimitive() 281 buffer = ReadPrimitiveFromArray<CType, DeclaredType>(buffer, &value); in ReadRepeatedFixedSizePrimitive() [all …]
|
D | wire_format_lite.h | 253 template <typename CType, enum FieldType DeclaredType> 254 static inline bool ReadPrimitive(input, CType* value) INL; 259 template <typename CType, enum FieldType DeclaredType> 263 RepeatedField<CType>* value) INL; 267 template <typename CType, enum FieldType DeclaredType> 271 RepeatedField<CType>* value); 278 template <typename CType, enum FieldType DeclaredType> 280 CType* value) INL; 285 template <typename CType, enum FieldType DeclaredType> 287 RepeatedField<CType>* value) INL; [all …]
|
D | descriptor.pb.h | 1903 typedef FieldOptions_CType CType; typedef 1904 static const CType STRING = FieldOptions_CType_STRING; 1905 static const CType CORD = FieldOptions_CType_CORD; 1906 static const CType STRING_PIECE = FieldOptions_CType_STRING_PIECE; 1910 static const CType CType_MIN = 1912 static const CType CType_MAX = 1920 static inline const ::std::string& CType_Name(CType value) { in CType_Name() 1924 CType* value) { in CType_Parse()
|
D | descriptor.proto | 386 optional CType ctype = 1 [default = STRING]; 387 enum CType { enum
|
/external/v8/test/cctest/compiler/ |
D | codegen-tester.h | 123 template <typename CType, MachineType rep, bool use_result_buffer> 130 p0(static_cast<CType>(0)), in BinopTester() 131 p1(static_cast<CType>(0)), in BinopTester() 132 result(static_cast<CType>(0)) {} in BinopTester() 138 CType call(CType a0, CType a1) { in call() 170 CType p0; 171 CType p1; 172 CType result;
|
D | test-run-machops.cc | 2726 template <typename CType> 2729 CType buffer[kNumElems]; in RunLoadStore()
|
/external/clang/include/clang/Analysis/Analyses/ |
D | ThreadSafetyTIL.h | 396 typename C::CType compare(const Variable* E, C& Cmp) const { in compare() 457 typename C::CType compare(const Future* E, C& Cmp) const { in compare() 485 typename C::CType compare(const Undefined* E, C& Cmp) const { in compare() 507 typename C::CType compare(const Wildcard* E, C& Cmp) const { in compare() 541 typename C::CType compare(const Literal* E, C& Cmp) const { in compare() 643 typename C::CType compare(const LiteralPtr* E, C& Cmp) const { in compare() 686 typename C::CType compare(const Function* E, C& Cmp) const { in compare() 687 typename C::CType Ct = in compare() 742 typename C::CType compare(const SFunction* E, C& Cmp) const { in compare() 744 typename C::CType Ct = Cmp.compare(body(), E->body()); in compare() [all …]
|
D | ThreadSafetyTraverse.h | 307 typedef bool CType; typedef 309 CType trueResult() { return true; } in trueResult() 310 bool notTrue(CType ct) { return !ct; } in notTrue() 343 typedef bool CType; typedef 345 CType trueResult() { return true; } in trueResult() 346 bool notTrue(CType ct) { return !ct; } in notTrue()
|
/external/skia/src/c/ |
D | sk_c_from_to.h | 8 static bool find_sk(CType from, SKType* to) { in find_sk() 20 static bool find_c(SKType from, CType* to) { in find_c() 32 #undef CType
|
D | sk_paint.cpp | 33 #define CType sk_stroke_cap_t macro 38 #define CType sk_stroke_join_t macro
|
/external/clang/test/CodeGen/ |
D | 2008-03-24-BitField-And-Alloca.c | 44 unsigned int CType : 4; member
|
/external/valgrind/perf/ |
D | tinycc.c | 2148 typedef struct CType { struct 2151 } CType; typedef 2170 CType type; /* type */ 2183 CType type; /* associated type */ 2356 static CType func_vt; /* current function return type (used by return 2374 static CType char_pointer_type, func_old_type, int_type; 5400 static void parse_expr_type(CType *type); 5401 static void expr_type(CType *type); 5402 static void unary_type(CType *type); 5410 static void decl_initializer(CType *type, Section *sec, unsigned long c, [all …]
|
/external/llvm/lib/CodeGen/ |
D | Analysis.cpp | 144 TargetLowering::ConstraintType CType = TLI.getConstraintType(CI.Codes[j]); in hasInlineAsmMemConstraint() local 145 if (CType == TargetLowering::C_Memory) in hasInlineAsmMemConstraint()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 2566 TargetLowering::ConstraintType CType = in ChooseConstraint() local 2573 if (CType == TargetLowering::C_Other && Op.getNode()) { in ChooseConstraint() 2580 BestType = CType; in ChooseConstraint() 2588 if (CType == TargetLowering::C_Memory && OpInfo.hasMatchingInput()) in ChooseConstraint() 2592 int Generality = getConstraintGenerality(CType); in ChooseConstraint() 2594 BestType = CType; in ChooseConstraint()
|
D | SelectionDAGBuilder.cpp | 6359 CType = TLI.getConstraintType(OpInfo.Codes[j]); in visitInlineAsm() local 6360 if (CType == TargetLowering::C_Memory) { in visitInlineAsm()
|
/external/nanopb-c/generator/proto/google/protobuf/ |
D | descriptor.proto | 345 optional CType ctype = 1 [default = STRING]; 346 enum CType { enum
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
D | DescriptorsTest.java | 238 assertEquals(DescriptorProtos.FieldOptions.CType.CORD, in testFieldDescriptor()
|