/external/protobuf/php/src/Google/Protobuf/Internal/ |
D | GPBUtil.php | 593 return is_a($msg, 'Google\Protobuf\Any') || 594 is_a($msg, "Google\Protobuf\ListValue") || 595 is_a($msg, "Google\Protobuf\Struct") || 596 is_a($msg, "Google\Protobuf\Value") || 597 is_a($msg, "Google\Protobuf\Duration") || 598 is_a($msg, "Google\Protobuf\Timestamp") || 599 is_a($msg, "Google\Protobuf\FieldMask") || 605 return is_a($msg, "Google\Protobuf\DoubleValue") || 606 is_a($msg, "Google\Protobuf\FloatValue") || 607 is_a($msg, "Google\Protobuf\Int64Value") || [all …]
|
D | Message.php | 774 if (is_a($submsg, "Google\Protobuf\Duration")) { 796 } else if (is_a($submsg, "Google\Protobuf\FieldMask")) { 808 !is_a($submsg, "Google\Protobuf\Value")) { 1077 if (is_a($this, "Google\Protobuf\Any")) { 1090 if (is_a($this, "Google\Protobuf\DoubleValue") || 1091 is_a($this, "Google\Protobuf\FloatValue") || 1092 is_a($this, "Google\Protobuf\Int64Value") || 1093 is_a($this, "Google\Protobuf\UInt64Value") || 1094 is_a($this, "Google\Protobuf\Int32Value") || 1095 is_a($this, "Google\Protobuf\UInt32Value") || [all …]
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_qpu_disasm.c | 248 get_special_write_desc(int reg, bool is_a) in get_special_write_desc() argument 250 if (is_a) { in get_special_write_desc() 298 bool is_a = is_mul == ((inst & QPU_WS) != 0); in print_alu_dst() local 302 const char *file = is_a ? "a" : "b"; in print_alu_dst() 307 else if (get_special_write_desc(waddr, is_a)) in print_alu_dst() 308 fprintf(stderr, "%s", get_special_write_desc(waddr, is_a)); in print_alu_dst() 314 } else if (is_a && !(inst & QPU_PM)) { in print_alu_dst() 322 bool is_a = mux != QPU_MUX_B; in print_alu_src() local 323 const char *file = is_a ? "a" : "b"; in print_alu_src() 324 uint32_t raddr = (is_a ? in print_alu_src() [all …]
|
D | vc4_qpu_schedule.c | 150 uint32_t raddr, bool is_a) in process_raddr_deps() argument 173 if (is_a) in process_raddr_deps() 230 bool is_a = is_add ^ ((inst & QPU_WS) != 0); in process_waddr_deps() local 233 if (is_a) { in process_waddr_deps() 260 if (is_a) in process_waddr_deps()
|
/external/grpc-grpc/src/php/lib/Grpc/Internal/ |
D | InterceptorChannel.php | 37 if (!is_a($channel, 'Grpc\Channel') && 38 !is_a($channel, 'Grpc\Internal\InterceptorChannel')) {
|
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/ |
D | p2.cpp | 31 struct X<T, typename T::is_a, typename T::is_b> { 42 typedef void is_a; typedef
|
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/ |
D | p2.cpp | 31 struct X<T, typename T::is_a, typename T::is_b> { 42 typedef void is_a; typedef
|
/external/skia/tests/ |
D | PathBuilderTest.cpp | 145 bool is_a = a.isOval(&ra); in is_eq() local 147 if (is_a != is_b) { in is_eq() 150 if (is_a && (ra != rb)) { in is_eq() 157 bool is_a = a.isRRect(&rra); in is_eq() local 159 if (is_a != is_b) { in is_eq() 162 if (is_a && (rra != rrb)) { in is_eq()
|
/external/rust/crates/nom/tests/ |
D | ini_str.rs | 7 bytes::complete::{take_while, is_a}, 23 is_a(" \r\n")(i) in space_or_line_ending() 27 terminated(delimited(char('['), take_while(|c| c != ']'), char(']')), opt(is_a(" \r\n")))(i) in category()
|
/external/protobuf/php/tests/ |
D | wrapper_type_setters_test.php | 238 … if (is_object($expectedElement) && is_a($expectedElement, '\Google\Protobuf\StringValue')) { 279 … if (is_object($expectedElement) && is_a($expectedElement, '\Google\Protobuf\StringValue')) { 281 …} elseif (is_object($expectedElement) && is_a($expectedElement, '\Google\Protobuf\Internal\MapEntr…
|
/external/grpc-grpc/src/php/lib/Grpc/ |
D | BaseStub.php | 72 if (!is_a($channel, 'Grpc\Channel') && 73 !is_a($channel, 'Grpc\Internal\InterceptorChannel')) {
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Ruby/ |
D | ASTDbg.stg | 9 adaptor.is_a?( ANTLR3::Debug::TreeAdaptor ) ? adaptor :
|
/external/rust/crates/nom/src/ |
D | str.rs | 385 is_a!(input, MATCH) in is_a_succeed() 433 is_a!(input, MATCH) in is_a_fail()
|
/external/rust/crates/nom/src/bytes/ |
D | macros.rs | 85 macro_rules! is_a ( macro 87 $crate::bytes::streaming::is_a($arr)($input) 484 fn is_a() { in is_a() function 485 named!(a_or_b, is_a!(&b"ab"[..])); in is_a()
|
D | complete.rs | 147 pub fn is_a<T, Input, Error: ParseError<Input>>(arr: T) -> impl Fn(Input) -> IResult<Input, Input, … in is_a() function
|
D | streaming.rs | 147 pub fn is_a<T, Input, Error: ParseError<Input>>(arr: T) -> impl Fn(Input) -> IResult<Input, Input, … in is_a() function
|
/external/rust/crates/nom/ |
D | CHANGELOG.md | 826 - @sxeraverx for pointing out a bug in `is_a!` 832 - `is_a!` and `is_not!` can now consume the whole input 870 …tes have been moved to src/bytes.rs`. This applies to `tag!`, `is_not!`, `is_a!`, `filter!`, `take… 1026 - `is_a!`, `is_not!`, `alpha`, `digit`, `space`, `multispace` will now return an error if they do n… 1072 - `is_a!` is now working properly
|
/external/mesa3d/src/freedreno/ir3/ |
D | instr-a3xx.h | 721 uint32_t is_a : 1; member
|
D | ir3.c | 524 cat5->is_a = !!(instr->flags & IR3_INSTR_A); in emit_cat5()
|
D | disasm-a3xx.c | 772 if (cat5->is_a) fprintf(ctx->out, ".a"); in print_instr_cat5()
|
/external/rust/crates/nom/src/number/ |
D | streaming.rs | 704 let (i, o) = crate::bytes::streaming::is_a(&b"0123456789abcdefABCDEF"[..])(input)?; in hex_u32()
|
D | complete.rs | 708 let (i, o) = crate::bytes::complete::is_a(&b"0123456789abcdefABCDEF"[..])(input)?; in hex_u32()
|