Home
last modified time | relevance | path

Searched refs:chained (Results 1 – 25 of 160) sorted by relevance

1234567

/external/grpc-grpc/test/core/security/
Dauth_context_test.cc85 grpc_auth_context* chained = grpc_auth_context_create(nullptr); in test_chained_context() local
86 grpc_auth_context* ctx = grpc_auth_context_create(chained); in test_chained_context()
91 GRPC_AUTH_CONTEXT_UNREF(chained, "chained"); in test_chained_context()
92 grpc_auth_context_add_cstring_property(chained, "name", "padapo"); in test_chained_context()
93 grpc_auth_context_add_cstring_property(chained, "foo", "baz"); in test_chained_context()
107 for (i = 0; i < chained->properties.count; i++) { in test_chained_context()
109 GPR_ASSERT(p == &chained->properties.array[i]); in test_chained_context()
117 &chained->properties.array[1]); in test_chained_context()
126 &chained->properties.array[0]); in test_chained_context()
/external/kotlinx.coroutines/integration/kotlinx-coroutines-jdk8/test/future/
DFutureExceptionsTest.kt62 val chained = transformer(future) in <lambda>() constant
65 chained.await() in <lambda>()
74 val chained = transformer(future) in <lambda>() constant
81 chained.await() in <lambda>()
/external/kotlinx.coroutines/integration/kotlinx-coroutines-guava/test/
DListenableFutureExceptionsTest.kt59 val chained = if (transformer == null) { in <lambda>() constant
66 chained.await() in <lambda>()
75 val chained = if (transformer == null) { in <lambda>() constant
85 chained.await() in <lambda>()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
DTestIDNARef.java556 StringBuffer chained; in doTestChainingToASCII() local
560 chained = expected; in doTestChainingToASCII()
562 chained = IDNAReference.convertIDNtoASCII(chained,IDNAReference.DEFAULT); in doTestChainingToASCII()
564 if(!expected.toString().equals(chained.toString())){ in doTestChainingToASCII()
569 chained = expected; in doTestChainingToASCII()
571 chained = IDNAReference.convertToASCII(chained,IDNAReference.DEFAULT); in doTestChainingToASCII()
573 if(!expected.toString().equals(chained.toString())){ in doTestChainingToASCII()
588 StringBuffer chained; in doTestChainingToUnicode() local
592 chained = expected; in doTestChainingToUnicode()
594 chained = IDNAReference.convertIDNToUnicode(chained,IDNAReference.DEFAULT); in doTestChainingToUnicode()
[all …]
DTestIDNA.java470 StringBuffer chained; in doTestChainingToASCII() local
474 chained = expected; in doTestChainingToASCII()
476 chained = IDNA.convertIDNToASCII(chained,IDNA.DEFAULT); in doTestChainingToASCII()
478 if(!expected.toString().equals(chained.toString())){ in doTestChainingToASCII()
483 chained = expected; in doTestChainingToASCII()
485 chained = IDNA.convertToASCII(chained,IDNA.DEFAULT); in doTestChainingToASCII()
487 if(!expected.toString().equals(chained.toString())){ in doTestChainingToASCII()
496 StringBuffer chained; in doTestChainingToUnicode() local
500 chained = expected; in doTestChainingToUnicode()
502 chained = IDNA.convertIDNToUnicode(chained,IDNA.DEFAULT); in doTestChainingToUnicode()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
DTestIDNARef.java559 StringBuffer chained; in doTestChainingToASCII() local
563 chained = expected; in doTestChainingToASCII()
565 chained = IDNAReference.convertIDNtoASCII(chained,IDNAReference.DEFAULT); in doTestChainingToASCII()
567 if(!expected.toString().equals(chained.toString())){ in doTestChainingToASCII()
572 chained = expected; in doTestChainingToASCII()
574 chained = IDNAReference.convertToASCII(chained,IDNAReference.DEFAULT); in doTestChainingToASCII()
576 if(!expected.toString().equals(chained.toString())){ in doTestChainingToASCII()
591 StringBuffer chained; in doTestChainingToUnicode() local
595 chained = expected; in doTestChainingToUnicode()
597 chained = IDNAReference.convertIDNToUnicode(chained,IDNAReference.DEFAULT); in doTestChainingToUnicode()
[all …]
DTestIDNA.java473 StringBuffer chained; in doTestChainingToASCII() local
477 chained = expected; in doTestChainingToASCII()
479 chained = IDNA.convertIDNToASCII(chained,IDNA.DEFAULT); in doTestChainingToASCII()
481 if(!expected.toString().equals(chained.toString())){ in doTestChainingToASCII()
486 chained = expected; in doTestChainingToASCII()
488 chained = IDNA.convertToASCII(chained,IDNA.DEFAULT); in doTestChainingToASCII()
490 if(!expected.toString().equals(chained.toString())){ in doTestChainingToASCII()
499 StringBuffer chained; in doTestChainingToUnicode() local
503 chained = expected; in doTestChainingToUnicode()
505 chained = IDNA.convertIDNToUnicode(chained,IDNA.DEFAULT); in doTestChainingToUnicode()
[all …]
/external/grpc-grpc/src/core/lib/security/context/
Dsecurity_context.cc122 grpc_auth_context* grpc_auth_context_create(grpc_auth_context* chained) { in grpc_auth_context_create() argument
126 if (chained != nullptr) { in grpc_auth_context_create()
127 ctx->chained = GRPC_AUTH_CONTEXT_REF(chained, "chained"); in grpc_auth_context_create()
129 ctx->chained->peer_identity_property_name; in grpc_auth_context_create()
169 GRPC_AUTH_CONTEXT_UNREF(ctx->chained, "chained");
223 if (it->ctx->chained == nullptr) return nullptr;
224 it->ctx = it->ctx->chained;
Dsecurity_context.h44 struct grpc_auth_context* chained; member
52 grpc_auth_context* grpc_auth_context_create(grpc_auth_context* chained);
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/context/
Dsecurity_context.h54 grpc_core::RefCountedPtr<grpc_auth_context> chained) in grpc_auth_context()
60 chained_(std::move(chained)) { in grpc_auth_context()
76 const grpc_auth_context* chained() const { return chained_.get(); } in chained() function
/external/cldr/tools/java/org/unicode/cldr/util/
DDiscreteComparator.java270 if (item.chained) { in getCycle()
303 private boolean chained = false; field in DiscreteComparator.Node
321 currentNode.chained = true; in visit()
323 if (subNode.chained) { in visit()
331 currentNode.chained = false; in visit()
/external/rust/crates/grpcio-sys/grpc/test/core/security/
Dauth_context_test.cc90 grpc_core::RefCountedPtr<grpc_auth_context> chained = in test_chained_context() local
92 grpc_auth_context* chained_ptr = chained.get(); in test_chained_context()
94 grpc_core::MakeRefCounted<grpc_auth_context>(std::move(chained)); in test_chained_context()
/external/llvm-project/llvm/test/CodeGen/Hexagon/
Dswp-chain-refs.ll5 ; Test that we do not schedule chained references too far apart,
7 ; not be pipelined when the chained references are constrained correctly.
/external/fonttools/Tests/mtiLib/data/mti/
Dchained-glyph.txt1 lookup raucontext-sinh chained
Dchainedclass.txt2 lookup swashes-knda chained
Dchainedcoverage.txt1 lookup slashcontext chained
/external/google-java-format/core/src/test/resources/com/google/googlejavaformat/java/testdata/
DB21278211.output5 // use unified breaks for all chained dereferences
DB21278211.input5 // use unified breaks for all chained dereferences
/external/clang/test/PCH/
Dchain-predecl.m4 // Test predeclarations across chained PCH.
/external/fonttools/Tests/mtiLib/data/
Dmixed-toplevels.txt2 lookup 0 chained
Dlookupnames-backward.txt9 lookup l0 chained
Dlookupnames-forward.txt2 lookup l0 chained
/external/llvm-project/clang/test/PCH/
Dchain-predecl.m4 // Test predeclarations across chained PCH.
/external/llvm-project/clang/docs/
DPCHInternals.rst114 Precompiled headers can be chained. When you create a PCH while including an
121 mechanisms behind chained precompiled headers are discussed in a :ref:`later
122 section <pchinternals-chained>`.
190 A chained PCH file (that is, one that references another PCH) and a module
195 For chained precompiled headers, the language options, target architecture and
458 .. _pchinternals-chained:
474 this case, Clang will create the precompiled preamble as a chained precompiled
483 the semantic model of chained precompiled headers, because the most-recent
489 There are several ways in which chained precompiled headers generalize the AST
502 When writing a chained precompiled header, Clang attempts to write only
[all …]
/external/clang/docs/
DPCHInternals.rst114 Precompiled headers can be chained. When you create a PCH while including an
121 mechanisms behind chained precompiled headers are discussed in a :ref:`later
122 section <pchinternals-chained>`.
190 A chained PCH file (that is, one that references another PCH) and a module
195 For chained precompiled headers, the language options, target architecture and
458 .. _pchinternals-chained:
474 this case, Clang will create the precompiled preamble as a chained precompiled
483 the semantic model of chained precompiled headers, because the most-recent
489 There are several ways in which chained precompiled headers generalize the AST
502 When writing a chained precompiled header, Clang attempts to write only
[all …]

1234567