Searched refs:c_type (Results 1 – 9 of 9) sorted by relevance
/external/libmojo/base/android/jni_generator/ |
D | jni_generator.py | 138 def WrapCTypeForDeclaration(c_type): argument 140 if re.match(RE_SCOPED_JNI_TYPES, c_type): 141 return 'const base::android::JavaParamRef<' + c_type + '>&' 143 return c_type 156 c_type = JavaDataTypeToC(java_type) 157 if re.match(RE_SCOPED_JNI_TYPES, c_type): 158 return 'const base::android::JavaRefOrBare<' + c_type + '>&' 160 return c_type 934 c_type = self.GetJNIFirstParamType(native) 936 c_type = WrapCTypeForDeclaration(c_type) [all …]
|
/external/webrtc/webrtc/base/ |
D | flags.h | 156 #define DEFINE_FLAG(type, c_type, name, default, comment) \ argument 158 c_type FLAG_##name = (default); \ 166 #define DECLARE_FLAG(c_type, name) \ argument 168 extern c_type FLAG_##name
|
/external/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl14.c | 78 short c_type; member 614 flock.l_type = thiscase->c_type; in dochild() 700 flock.l_type = thiscase->c_type; in dochild() 819 if ((thiscase->c_type) == SKIP) { in run_test() 833 if (self_exec(argv0, "nddddddddd", 2, thiscase->c_type, in run_test() 952 maybe_run_child(&dochild, "nddddddddd", 2, &thiscase->c_type, in main() 1084 if (self_exec(argv0, "nddddddddd", 2, thiscase->c_type, in main()
|
/external/mesa3d/src/compiler/glsl/ |
D | ir_expression_operation.py | 28 def __init__(self, c_type, union_field, glsl_type): argument 29 self.c_type = c_type
|
/external/mesa3d/src/mapi/ |
D | mapi_abi.py | 113 c_type = m.group('type').strip() 118 return (c_type, c_name, c_array)
|
/external/tensorflow/tensorflow/c/ |
D | c_api.cc | 1682 #define DEFINE_GETATTR(func, c_type, cpp_type, list_field) \ argument 1683 void func(TF_Operation* oper, const char* attr_name, c_type* value, \ 1688 *value = static_cast<c_type>(v); \ 1690 void func##List(TF_Operation* oper, const char* attr_name, c_type* values, \ 1701 values[i] = static_cast<c_type>(attr->list().list_field(i)); \
|
/external/mesa3d/src/compiler/nir/ |
D | nir_algebraic.py | 106 def c_type(self): member in Value
|
/external/tensorflow/tensorflow/python/eager/ |
D | pywrap_tfe_src.cc | 148 #define PARSE_LIST(c_type, parse_fn) \ in SetOpAttrList() argument 149 std::unique_ptr<c_type[]> values(new c_type[num_values]); \ in SetOpAttrList()
|
/external/python/cpython3/Lib/test/ |
D | test_decimal.py | 5560 c_type = getattr(C, ty) 5565 c_func = getattr(c_type, attr) 5595 getattr(c_type(9), attr)(*args, **kwds)
|