Home
last modified time | relevance | path

Searched defs:With (Results 1 – 22 of 22) sorted by relevance

/external/rust/crates/futures-util/src/sink/
Dwith.rs24 impl<Si, Item, U, Fut, F> fmt::Debug for With<Si, Item, U, Fut, F> implementation
34 impl<Si, Item, U, Fut, F> With<Si, Item, U, Fut, F> impl
49 impl<Si, Item, U, Fut, F> Clone for With<Si, Item, U, Fut, F> implementation
66 impl<S, Item, U, Fut, F> Stream for With<S, Item, U, Fut, F> implementation
77 impl<Si, Item, U, Fut, F, E> With<Si, Item, U, Fut, F> impl
100 impl<Si, Item, U, Fut, F, E> Sink<U> for With<Si, Item, U, Fut, F> implementation
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/Utils/
DSimplifyLibCalls.h116 static void replaceAllUsesWithDefault(Instruction *I, Value *With) { in replaceAllUsesWithDefault()
130 void substituteInParent(Instruction *I, Value *With) { in substituteInParent()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DWith.java35 public final class With<V> implements Iterable<V>, Iterator<V> { class
282 private With() { in With() method in With
/external/vixl/src/
Dcpu-features.h333 CPUFeatures With(T... others) const { in With() function
/external/rust/crates/combine/src/parser/
Dsequence.rs498 pub struct With<P1, P2>((Ignore<P1>, P2)); struct
499 impl<Input, P1, P2> Parser<Input> for With<P1, P2> implementation
/external/googletest/googlemock/include/gmock/
Dgmock-spec-builders.h319 OnCallSpec& With(const Matcher<const ArgumentTuple&>& m) { in With() function
924 TypedExpectation& With(const Matcher<const ArgumentTuple&>& m) { in With() function
1603 MockSpec<F> With(Matcher<Args>... m) { in With() function
/external/rust/crates/tinytemplate/src/
Dcompiler.rs20 With, enumerator
/external/python/cpython3/Objects/
Dframeobject.c95 With = 1, enumerator
/external/libchrome/third_party/jinja2/
Dnodes.py340 class With(Stmt): class
/external/python/jinja/src/jinja2/
Dnodes.py329 class With(Stmt): class
/external/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp74 static bool isOnlyUsedInEqualityComparison(Value *V, Value *With) { in isOnlyUsedInEqualityComparison()
2134 void LibCallSimplifier::replaceAllUsesWith(Instruction *I, Value *With) { in replaceAllUsesWith()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp2389 auto InstCombineRAUW = [this](Instruction *From, Value *With) { in tryOptimizeCall()
2393 if (Value *With = Simplifier.optimizeCall(CI)) { in tryOptimizeCall() local
/external/python/cpython2/Include/
DPython-ast.h134 } With; member
414 #define With(a0, a1, a2, a3, a4, a5) _Py_With(a0, a1, a2, a3, a4, a5) macro
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPULibCalls.cpp151 void replaceCall(Value *With) { in replaceCall()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp93 static bool isOnlyUsedInEqualityComparison(Value *V, Value *With) { in isOnlyUsedInEqualityComparison()
3194 void LibCallSimplifier::replaceAllUsesWith(Instruction *I, Value *With) { in replaceAllUsesWith()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCalls.cpp4259 auto InstCombineRAUW = [this](Instruction *From, Value *With) { in tryOptimizeCall()
4267 if (Value *With = Simplifier.optimizeCall(CI)) { in tryOptimizeCall() local
/external/python/cpython3/Include/internal/
Dpycore_ast.h273 } With; member
/external/python/cpython2/Lib/compiler/
Dast.py1378 class With(Node): class
/external/sqlite/dist/orig/
Dsqlite3.c14679 typedef struct With With; typedef
19115 struct With { struct
19117 With *pOuter; /* Containing WITH clause, or NULL */ argument
19118 struct Cte { /* For each CTE in the WITH clause.... */
19123 } a[1];
/external/sqlite/dist/
Dsqlite3.c14679 typedef struct With With; typedef
19115 struct With { struct
19117 With *pOuter; /* Containing WITH clause, or NULL */ argument
19118 struct Cte { /* For each CTE in the WITH clause.... */
19123 } a[1];
/external/rust/crates/libsqlite3-sys/sqlite3/
Dsqlite3.c14829 typedef struct With With; typedef
19395 struct With { struct
19397 With *pOuter; /* Containing WITH clause, or NULL */ argument
19398 Cte a[1]; /* For each CTE in the WITH clause.... */
/external/python/cpython2/Python/
DPython-ast.c1262 With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body, int lineno, in With() function