HomeSort by relevance Sort by last modified time
    Searched defs:Actual (Results 1 - 12 of 12) sorted by null

  /external/llvm/unittests/Support/
CommandLineTest.cpp 173 SmallVector<const char *, 0> Actual;
176 parse(Input, Saver, Actual, /*MarkEOLs=*/false);
177 EXPECT_EQ(OutputSize, Actual.size());
178 for (unsigned I = 0, E = Actual.size(); I != E; ++I) {
180 EXPECT_STREQ(Output[I], Actual[I]);
207 { "-tool", "-actual=x", "-extra" },
208 { "-tool", "-actual", "x" },
214 StackOption<std::string> Actual("actual");
218 cl::alias Alias("alias", llvm::cl::aliasopt(Actual));
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
CommandLineTest.cpp 165 SmallVector<const char *, 0> Actual;
168 parse(Input, Saver, Actual, /*MarkEOLs=*/false);
169 EXPECT_EQ(OutputSize, Actual.size());
170 for (unsigned I = 0, E = Actual.size(); I != E; ++I) {
172 EXPECT_STREQ(Output[I], Actual[I]);
247 SmallVector<const char *, 0> Actual;
250 cl::tokenizeConfigFile("\\\n", Saver, Actual, /*MarkEOLs=*/false);
251 EXPECT_TRUE(Actual.empty());
255 SmallVector<const char *, 0> Actual;
258 cl::tokenizeConfigFile("\\\r\n", Saver, Actual, /*MarkEOLs=*/false)
    [all...]
Path.cpp 532 SmallString<64> Actual;
543 Twine(TestDirectory) + "/././test1/../test1/test2/./test3/..", Actual));
545 EXPECT_EQ(Expected, Actual);
551 ASSERT_NO_ERROR(fs::real_path("~", Actual, true));
552 EXPECT_EQ(Expected, Actual);
553 ASSERT_NO_ERROR(fs::real_path("~/", Actual, true));
554 EXPECT_EQ(Expected, Actual);
    [all...]
  /external/llvm/lib/Analysis/
Lint.cpp 235 Value *Actual = *AI;
238 Assert(Formal->getType() == Actual->getType(),
246 if (Formal->hasNoAliasAttr() && Actual->getType()->isPointerTy())
255 if (Formal->hasStructRetAttr() && Actual->getType()->isPointerTy()) {
258 visitMemoryReference(I, Actual, DL->getTypeStoreSize(Ty),
  /external/swiftshader/third_party/LLVM/lib/Analysis/
Lint.cpp 222 Value *Actual = *AI;
225 Assert1(Formal->getType() == Actual->getType(),
232 if (Formal->hasNoAliasAttr() && Actual->getType()->isPointerTy())
242 if (Formal->hasStructRetAttr() && Actual->getType()->isPointerTy()) {
245 visitMemoryReference(I, Actual, AA->getTypeStoreSize(Ty),
  /external/guice/core/src/com/google/inject/internal/
RealOptionalBinder.java 56 * The actual OptionalBinder plays several roles. It implements Module to hide that fact from the
169 ACTUAL
180 @interface Actual {
219 * Returns the key to use for the actual binding, overrides the default if set.
621 // ACTUAL to fallback to DEFAULT if ACTUAL's provider returns null.
622 // Right now, an ACTUAL binding can convert from present -> absent
628 // If neither the actual or default is set, then we fallback
630 // "actual binding" for the SPI.
718 // if it isn't one of the things we bound directly it might be an actual or default ke
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
Lint.cpp 257 Value *Actual = *AI;
260 Assert(Formal->getType() == Actual->getType(),
268 if (Formal->hasNoAliasAttr() && Actual->getType()->isPointerTy()) {
285 if (Formal->hasStructRetAttr() && Actual->getType()->isPointerTy()) {
288 visitMemoryReference(I, Actual, DL->getTypeStoreSize(Ty),
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
APFloatTest.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITEmitter.cpp 534 void *Actual = TheJIT->isCompilingLazily()
540 Actual = TheJIT->getPointerToFunction(F);
544 if (!Actual) return 0;
549 // Codegen a new stub, calling the lazy resolver or the actual address of the
551 Stub = TheJIT->getJITInfo().emitFunctionStub(F, Actual, JE);
554 if (Actual != (void*)(intptr_t)LazyResolverFn) {
572 } else if (!Actual) {
577 "'Actual' should have been set above.");
669 << "' In stub ptr = " << Stub << " actual ptr = "
    [all...]
  /external/llvm/unittests/IR/
MetadataTest.cpp 285 std::string Actual;
287 raw_string_ostream OS(Actual);
291 EXPECT_EQ(Expected, Actual);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
MetadataTest.cpp 286 std::string Actual;
288 raw_string_ostream OS(Actual);
292 EXPECT_EQ(Expected, Actual);
    [all...]
  /external/pdfium/xfa/fxfa/
fxfa_basic.h 155 Actual,

Completed in 2217 milliseconds