Searched full:typecheck (Results 1 – 25 of 154) sorted by relevance
1234567
| /external/python/apitools/apitools/base/py/ |
| D | util_test.py | 109 instance_of_class1, util.Typecheck(instance_of_class1, Class1)) 113 util.Typecheck(instance_of_class1, ((Class1, Class2), Class3))) 117 util.Typecheck(instance_of_class1, (Class1, (Class2, Class3)))) 121 util.Typecheck(instance_of_class1, Class1, 'message')) 125 util.Typecheck( 130 util.Typecheck( 134 util.Typecheck(instance_of_class1, Class2) 137 util.Typecheck(instance_of_class1, (Class2, Class3)) 140 util.Typecheck(instance_of_class1, Class2, 'message') 143 util.Typecheck(instance_of_class1, (Class2, Class3), 'message')
|
| D | extra_types.py | 89 util.Typecheck(json_value, JsonValue) 107 util.Typecheck(json_value, JsonObject) 113 util.Typecheck(json_value, JsonArray) 143 util.Typecheck(py_value, dict) 212 util.Typecheck(json_proto, _JSON_PROTO_TYPES)
|
| D | base_api.py | 248 util.Typecheck(default_global_params, self.params_type) 383 util.Typecheck(value, six.integer_types) 395 util.Typecheck(value, six.integer_types) 513 util.Typecheck(global_params, (type(None), self.__client.params_type)) 645 util.Typecheck(body_field, messages.MessageField) 654 util.Typecheck(body_value, body_type) 663 util.Typecheck(request, request_type)
|
| /external/armnn/python/pyarmnn/src/pyarmnn/swig/typemaps/ |
| D | tensor_memory.i | 19 %typemap(typecheck) (TYPEMAP) { 26 %typemap(typecheck) (TYPEMAP); 43 %typemap(typecheck) (TYPEMAP) { 50 %typemap(typecheck) (TYPEMAP);
|
| D | vectors.i | 223 %typemap(typecheck) (TYPEMAP) { 232 %typemap(typecheck) (TYPEMAP);
|
| /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/ |
| D | dimension-handler.js | 111 var typeCheck = string.replace(/[-+]?(\d*\.)?\d+([Ee][-+]?\d+)?/g, 'N') 118 if (reductions[i].test(typeCheck)) { 119 typeCheck = typeCheck.replace(reductions[i], '$1'); 125 if (typeCheck != 'D')
|
| /external/curl/tests/data/ |
| D | test1912 | 5 typecheck 19 Cross validate that gcc-typecheck macros match the option types.
|
| /external/rust/crates/protobuf-parse/ |
| D | Cargo.toml.orig | 34 name = "parse-and-typecheck" 35 path = "src/bin/parse-and-typecheck.rs"
|
| D | Cargo.toml | 36 name = "parse-and-typecheck" 37 path = "src/bin/parse-and-typecheck.rs"
|
| /external/skia/src/sksl/ir/ |
| D | SkSLBinaryExpression.h | 53 // programmatically. Asserts if the expressions do not typecheck or are otherwise invalid. 61 // Asserts if the expressions do not typecheck or are otherwise invalid.
|
| D | SkSLConstructorArray.h | 35 // ConstructorArray::Convert will typecheck and create array-constructor expressions.
|
| D | SkSLConstructorStruct.h | 35 // ConstructorStruct::Convert will typecheck and create struct-constructor expressions.
|
| D | SkSLConstructorScalarCast.h | 37 // ConstructorScalarCast::Convert will typecheck and create scalar-constructor expressions.
|
| /external/curl/tests/libtest/ |
| D | lib1912.c | 43 /* Test for mismatch OR missing typecheck macros */ in test() 78 /* Todo: no gcc typecheck for CURLOPTTYPE_BLOB types? */ in test()
|
| /external/curl/packages/vms/ |
| D | stage_curl_install.com | 17 $! [usr.include.curl]typecheck-gcc.h 142 $ copy [--.include.curl]typecheck-gcc.h - 143 'new_gnu'[usr.include.curl]typecheck-gcc.h
|
| /external/pigweed/pw_console/py/pw_console/ |
| D | python_logging.py | 71 # pylint: disable=unidiomatic-typecheck 74 # pylint: enable=unidiomatic-typecheck
|
| /external/rust/crates/protobuf/src/ |
| D | byteorder.rs | 1 /// Expose cfg as constant to be able to typecheck both versions.
|
| /external/python/cpython3/Include/ |
| D | traceback.h | 12 /* Reveal traceback type so we can typecheck traceback objects */
|
| /external/bcc/src/lua/bcc/vendor/ |
| D | argparse.lua | 111 local function typecheck(name, types, value) function 123 return {name, function(_, value) typecheck(name, types, value) end} 127 typecheck("name", {"string"}, value) 168 typecheck(name, {"number", "string"}, value) 183 typecheck("action", {"function", "string"}, value) 203 typecheck("add_help", {"boolean", "string", "table"}, value)
|
| /external/python/cpython2/Include/ |
| D | traceback.h | 24 /* Reveal traceback type so we can typecheck traceback objects */
|
| /external/clang/test/SemaObjC/ |
| D | protocol-typecheck.m | 22 …// protocol-typecheck.m:21: warning: class 'NSObject <PWhatever, XCElementP>' does not implement t…
|
| /external/tink/python/tink/core/ |
| D | _registry.py | 95 if (type(existing) != type(key_manager) or # pylint: disable=unidiomatic-typecheck 172 …s._wrappers[wrapper.primitive_class()]) != type(wrapper)): # pylint: disable=unidiomatic-typecheck
|
| /external/rust/cxx/gen/src/ |
| D | check.rs | 7 pub(super) use crate::syntax::check::{typecheck, Generator};
|
| /external/perfetto/ui/ |
| D | tsconfig.base.json | 26 …UnknownInCatchVariables": false, // Use any for excpetions. TODO(hjd): Remove and typecheck uses.
|
| /external/cronet/base/trace_event/ |
| D | trace_arguments.h | 356 // TraceValue::TypeCheck<T>::value is only defined iff T can be used to 365 struct TypeCheck { 635 template <typename T, class = decltype(TraceValue::TypeCheck<T>::value)> 645 class = decltype(TraceValue::TypeCheck<T1>::value && 646 TraceValue::TypeCheck<T2>::value)>
|
1234567