OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Actual
(Results
1 - 4
of
4
) sorted by null
/external/llvm/unittests/Support/
CommandLineTest.cpp
156
SmallVector<const char *, 0>
Actual
;
159
parse(Input, Saver,
Actual
, /*MarkEOLs=*/false);
160
EXPECT_EQ(OutputSize,
Actual
.size());
161
for (unsigned I = 0, E =
Actual
.size(); I != E; ++I) {
163
EXPECT_STREQ(Output[I],
Actual
[I]);
189
{ "-tool", "-
actual
=x", "-extra" },
190
{ "-tool", "-
actual
", "x" },
196
StackOption<std::string>
Actual
("
actual
");
200
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/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/llvm/unittests/IR/
MetadataTest.cpp
283
std::string
Actual
;
285
raw_string_ostream OS(
Actual
);
289
EXPECT_EQ(Expected,
Actual
);
[
all
...]
Completed in 88 milliseconds