Home
last modified time | relevance | path

Searched refs:AsValue (Results 1 – 5 of 5) sorted by relevance

/external/vulkan-validation-layers/libs/vkjson/
Dvkjson.cc478 bool AsValue(cJSON* json_value, T* t);
480 inline bool AsValue(cJSON* json_value, int32_t* value) { in AsValue() function
490 inline bool AsValue(cJSON* json_value, uint64_t* value) { in AsValue() function
497 inline bool AsValue(cJSON* json_value, uint32_t* value) { in AsValue() function
506 inline bool AsValue(cJSON* json_value, uint8_t* value) { in AsValue() function
508 AsValue(json_value, &value32); in AsValue()
515 inline bool AsValue(cJSON* json_value, float* value) { in AsValue() function
528 if (!AsValue(cJSON_GetArrayItem(json_value, i), values + i)) in AsArray()
535 inline bool AsValue(cJSON* json_value, T (*value)[N]) { in AsValue() function
540 inline bool AsValue(cJSON* json_value, char (*value)[N]) { in AsValue() function
[all …]
/external/libchrome/base/test/
Dtest_pending_task.cc54 TestPendingTask::AsValue() const { in AsValue() function in base::TestPendingTask
63 AsValue()->AppendAsTraceFormat(&output); in ToString()
Dtest_pending_task.h61 scoped_refptr<base::trace_event::ConvertableToTraceFormat> AsValue() const;
/external/clang/lib/CodeGen/
DCGAtomic.cpp187 SourceLocation loc, bool AsValue) const;
194 SourceLocation Loc, bool AsValue) const;
213 bool AsValue, llvm::AtomicOrdering AO,
1211 bool AsValue) const { in ConvertIntToValueOrAtomic()
1218 !AsValue)) { in ConvertIntToValueOrAtomic()
1219 auto *ValTy = AsValue in ConvertIntToValueOrAtomic()
1235 if (AsValue && getEvaluationKind() == TEK_Aggregate) { in ConvertIntToValueOrAtomic()
1248 return convertAtomicTempToRValue(Temp, ResultSlot, Loc, AsValue); in ConvertIntToValueOrAtomic()
1318 bool AsValue, llvm::AtomicOrdering AO, in EmitAtomicLoad() argument
1333 return convertAtomicTempToRValue(TempAddr, ResultSlot, Loc, AsValue); in EmitAtomicLoad()
[all …]
/external/llvm/bindings/go/llvm/
Dir.go1095 func (bb BasicBlock) AsValue() (v Value) { v.C = C.LLVMBasicBlockAsValue(bb.C); return } func