OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:remember
(Results
351 - 375
of
3625
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/CodeGen/
ScheduleDAGInstrs.h
163
/// Defs, Uses -
Remember
where defs and uses of each register are as we
179
///
Remember
a generic side-effecting instruction as we proceed.
240
///
Remember
instruction that precedes DBG_VALUE.
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
PointerUnion.h
171
/// pointer type, setting the discriminator to
remember
what it came from.
306
/// pointer type, setting the discriminator to
remember
what it came from.
409
/// pointer type, setting the discriminator to
remember
what it came from.
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
ScheduleDAGInstrs.h
143
/// Defs, Uses -
Remember
where defs and uses of each register are as we
159
///
Remember
a generic side-effecting instruction as we proceed.
220
///
Remember
instruction that precedes DBG_VALUE.
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
PointerUnion.h
171
/// pointer type, setting the discriminator to
remember
what it came from.
306
/// pointer type, setting the discriminator to
remember
what it came from.
409
/// pointer type, setting the discriminator to
remember
what it came from.
/prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/CodeGen/
ScheduleDAGInstrs.h
163
/// Defs, Uses -
Remember
where defs and uses of each register are as we
179
///
Remember
a generic side-effecting instruction as we proceed.
240
///
Remember
instruction that precedes DBG_VALUE.
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
PointerUnion.h
171
/// pointer type, setting the discriminator to
remember
what it came from.
306
/// pointer type, setting the discriminator to
remember
what it came from.
409
/// pointer type, setting the discriminator to
remember
what it came from.
/prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/CodeGen/
ScheduleDAGInstrs.h
163
/// Defs, Uses -
Remember
where defs and uses of each register are as we
179
///
Remember
a generic side-effecting instruction as we proceed.
240
///
Remember
instruction that precedes DBG_VALUE.
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
PointerUnion.h
171
/// pointer type, setting the discriminator to
remember
what it came from.
305
/// pointer type, setting the discriminator to
remember
what it came from.
407
/// pointer type, setting the discriminator to
remember
what it came from.
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/CodeGen/
ScheduleDAGInstrs.h
163
/// Defs, Uses -
Remember
where defs and uses of each register are as we
179
///
Remember
a generic side-effecting instruction as we proceed.
240
///
Remember
instruction that precedes DBG_VALUE.
/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
PointerUnion.h
171
/// pointer type, setting the discriminator to
remember
what it came from.
305
/// pointer type, setting the discriminator to
remember
what it came from.
407
/// pointer type, setting the discriminator to
remember
what it came from.
/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
ScheduleDAGInstrs.h
163
/// Defs, Uses -
Remember
where defs and uses of each register are as we
179
///
Remember
a generic side-effecting instruction as we proceed.
240
///
Remember
instruction that precedes DBG_VALUE.
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
PointerUnion.h
171
/// pointer type, setting the discriminator to
remember
what it came from.
305
/// pointer type, setting the discriminator to
remember
what it came from.
407
/// pointer type, setting the discriminator to
remember
what it came from.
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
ScheduleDAGInstrs.h
163
/// Defs, Uses -
Remember
where defs and uses of each register are as we
179
///
Remember
a generic side-effecting instruction as we proceed.
240
///
Remember
instruction that precedes DBG_VALUE.
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
PointerUnion.h
171
/// pointer type, setting the discriminator to
remember
what it came from.
305
/// pointer type, setting the discriminator to
remember
what it came from.
407
/// pointer type, setting the discriminator to
remember
what it came from.
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
ScheduleDAGInstrs.h
163
/// Defs, Uses -
Remember
where defs and uses of each register are as we
179
///
Remember
a generic side-effecting instruction as we proceed.
240
///
Remember
instruction that precedes DBG_VALUE.
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/FwVol/
FwVolRead.c
171
//
remember
the key
338
//
Remember
callers buffer size
/external/deqp/framework/qphelper/
qpTestLog.h
90
/* Add new values here if needed,
remember
to update relevant code in qpTestLog.c and change format revision */
103
/* Add new values here if needed,
remember
to update relevant code in qpTestLog.c and change format revision */
/external/googletest/googlemock/docs/
ForDummies.md
13
If all this seems too abstract for you, don't worry - the most important thing to
remember
is that a mock allows you to check the _interaction_ between itself and code that uses it. The difference between fakes and mocks will become much clearer once you start to use mocks.
120
1. Import the Google Mock names from the `testing` namespace such that you can use them unqualified (You only have to do it once per file.
Remember
that namespaces are a good idea and good for your health.).
241
Sometimes you may not want to be too specific (
Remember
that talk about tests being too rigid? Over specification leads to brittle tests and obscures the intent of tests. Therefore we encourage you to specify only what's necessary - no more, no less.). If you care to check that `Forward()` will be called but aren't interested in its actual argument, write `_` as the argument, which means "anything goes":
269
The `Times()` clause can be omitted. **If you omit `Times()`, Google Mock will infer the cardinality for you.** The rules are easy to
remember
:
278
Remember
that a mock object doesn't really have a working implementation? We as users have to tell it what to do when a method is invoked. This is easy in Google Mock.
331
Obviously `turtle.GetY()` is expected to be called four times. But if you think it will return 100 every time, think twice!
Remember
that one `WillOnce()` clause will be consumed each time the function is invoked and the default action will be taken afterwards. So the right answer is that `turtle.GetY()` will return 100 the first time, but **return 0 from the second time on**, as returning 0 is the default action for `int` functions.
391
Suppose `turtle.GoTo(0, 0)` is called three times. In the third time, Google Mock will see that the arguments match expectation #2 (
remember
that we always pick the last matching expectation). Now, since we said that there should be only two such calls, Google Mock will report an error immediately. This is basically what we've told you in the "Using Multiple Expectations" section above.
393
This example shows that **expectations in Google Mock are "sticky" by default**, in the sense that they remain active even after we have reached their invocation upper bounds. This is an important rule to
remember
, as it affects the meaning of the spec, and is **different** to how it's done in many other mocking frameworks (Why'd we do that? Because we think our rule makes the common cases easier to express and understand.).
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CompactByteArray.java
231
//
remember
its index.
266
*
Remember
that a specified block was "touched", i.e. had a value set.
/external/llvm/docs/HistoricalNotes/
2000-11-18-EarlyDesignIdeasResp.txt
177
> BTW, on an unrelated note, after the meeting yesterday, I did
remember
180
> it yesterday, I didn't
remember
where the idea had come from but I
/external/llvm/lib/Support/
SmallPtrSet.cpp
105
// If this is a tombstone,
remember
it. If Ptr ends up not in the set, we
108
Tombstone = Array+Bucket; //
Remember
the first tombstone found.
/external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp
227
//
Remember
that this instruction is 8-bytes, increase the size of the
228
// block by 4,
remember
to iterate.
/external/proguard/src/proguard/classfile/editor/
MemberReferenceFixer.java
173
//
Remember
that the stack sizes of the methods in this class
229
//
Remember
that the stack sizes of the methods in this class
Utf8Shrinker.java
465
//
Remember
the new index.
473
//
Remember
an invalid index.
/external/skia/tests/
LListTest.cpp
232
//
remember
the elements before/after the insertion point.
294
//
remember
the prev and next elements from the element to be removed
Completed in 1628 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>