Home
last modified time | relevance | path

Searched refs:is_a (Results 1 – 22 of 22) sorted by relevance

/external/protobuf/php/src/Google/Protobuf/Internal/
DGPBUtil.php593 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 …]
DMessage.php774 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/
Dvc4_qpu_disasm.c248 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 …]
Dvc4_qpu_schedule.c150 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/
DInterceptorChannel.php37 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/
Dp2.cpp31 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/
Dp2.cpp31 struct X<T, typename T::is_a, typename T::is_b> {
42 typedef void is_a; typedef
/external/skia/tests/
DPathBuilderTest.cpp145 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/
Dini_str.rs7 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/
Dwrapper_type_setters_test.php238 … 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/
DBaseStub.php72 if (!is_a($channel, 'Grpc\Channel') &&
73 !is_a($channel, 'Grpc\Internal\InterceptorChannel')) {
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
DASTDbg.stg9 adaptor.is_a?( ANTLR3::Debug::TreeAdaptor ) ? adaptor :
/external/rust/crates/nom/src/
Dstr.rs385 is_a!(input, MATCH) in is_a_succeed()
433 is_a!(input, MATCH) in is_a_fail()
/external/rust/crates/nom/src/bytes/
Dmacros.rs85 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()
Dcomplete.rs147 pub fn is_a<T, Input, Error: ParseError<Input>>(arr: T) -> impl Fn(Input) -> IResult<Input, Input, … in is_a() function
Dstreaming.rs147 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/
DCHANGELOG.md826 - @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/
Dinstr-a3xx.h721 uint32_t is_a : 1; member
Dir3.c524 cat5->is_a = !!(instr->flags & IR3_INSTR_A); in emit_cat5()
Ddisasm-a3xx.c772 if (cat5->is_a) fprintf(ctx->out, ".a"); in print_instr_cat5()
/external/rust/crates/nom/src/number/
Dstreaming.rs704 let (i, o) = crate::bytes::streaming::is_a(&b"0123456789abcdefABCDEF"[..])(input)?; in hex_u32()
Dcomplete.rs708 let (i, o) = crate::bytes::complete::is_a(&b"0123456789abcdefABCDEF"[..])(input)?; in hex_u32()