HomeSort by relevance Sort by last modified time
    Searched defs:Actual (Results 1 - 7 of 7) 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/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/extensions/multibindings/src/com/google/inject/multibindings/
OptionalBinder.java 270 * Returns a binding builder used to set the actual value that will be injected.
278 enum Source { DEFAULT, ACTUAL }
288 @interface Actual {
293 * The actual OptionalBinder plays several roles. It implements Module to hide that
313 /** the actual binding, for the SPI */
524 // ACTUAL to fallback to DEFAULT if ACTUAL's provider returns null.
525 // Right now, an ACTUAL binding can convert from present -> absent
531 // If neither the actual or default is set, then we fallback
533 // "actual binding" for the SPI
    [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/pdfium/xfa/fxfa/
fxfa_basic.h 155 Actual,

Completed in 293 milliseconds