HomeSort by relevance Sort by last modified time
    Searched defs:Result (Results 101 - 125 of 2692) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Analysis/
LoopAnalysisManager.h 80 /// A specialized result for the \c LoopAnalysisManagerFunctionProxy which
85 template <> class LoopAnalysisManagerFunctionProxy::Result {
87 explicit Result(LoopAnalysisManager &InnerAM, LoopInfo &LI)
89 Result(Result &&Arg) : InnerAM(std::move(Arg.InnerAM)), LI(Arg.LI) {
95 Result &operator=(Result &&RHS) {
104 ~Result() {
135 /// so it can pass the \c LoopInfo to the result.
137 LoopAnalysisManagerFunctionProxy::Result
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Analysis/
LoopAnalysisManager.h 80 /// A specialized result for the \c LoopAnalysisManagerFunctionProxy which
85 template <> class LoopAnalysisManagerFunctionProxy::Result {
87 explicit Result(LoopAnalysisManager &InnerAM, LoopInfo &LI)
89 Result(Result &&Arg) : InnerAM(std::move(Arg.InnerAM)), LI(Arg.LI) {
95 Result &operator=(Result &&RHS) {
104 ~Result() {
135 /// so it can pass the \c LoopInfo to the result.
137 LoopAnalysisManagerFunctionProxy::Result
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Analysis/
LoopAnalysisManager.h 80 /// A specialized result for the \c LoopAnalysisManagerFunctionProxy which
85 template <> class LoopAnalysisManagerFunctionProxy::Result {
87 explicit Result(LoopAnalysisManager &InnerAM, LoopInfo &LI)
89 Result(Result &&Arg) : InnerAM(std::move(Arg.InnerAM)), LI(Arg.LI) {
95 Result &operator=(Result &&RHS) {
104 ~Result() {
135 /// so it can pass the \c LoopInfo to the result.
137 LoopAnalysisManagerFunctionProxy::Result
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/
LoopAnalysisManager.h 80 /// A specialized result for the \c LoopAnalysisManagerFunctionProxy which
85 template <> class LoopAnalysisManagerFunctionProxy::Result {
87 explicit Result(LoopAnalysisManager &InnerAM, LoopInfo &LI)
89 Result(Result &&Arg) : InnerAM(std::move(Arg.InnerAM)), LI(Arg.LI) {
95 Result &operator=(Result &&RHS) {
104 ~Result() {
135 /// so it can pass the \c LoopInfo to the result.
137 LoopAnalysisManagerFunctionProxy::Result
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/
LoopAnalysisManager.h 80 /// A specialized result for the \c LoopAnalysisManagerFunctionProxy which
85 template <> class LoopAnalysisManagerFunctionProxy::Result {
87 explicit Result(LoopAnalysisManager &InnerAM, LoopInfo &LI)
89 Result(Result &&Arg) : InnerAM(std::move(Arg.InnerAM)), LI(Arg.LI) {
95 Result &operator=(Result &&RHS) {
104 ~Result() {
135 /// so it can pass the \c LoopInfo to the result.
137 LoopAnalysisManagerFunctionProxy::Result
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/tech/
TagVerifier.java 28 Result verifyTag(Tag tag) throws FormatException, IOException;
31 public static class Result {
39 public Result(CharSequence expectedContent, CharSequence actualContent, boolean isMatch) {
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Library/Dw8250SerialPortLib/
Dw8250SerialPortLib.c 86 UINTN Result;
92 Result = NumberOfBytes;
100 return Result;
122 UINTN Result;
128 Result = 0;
136 Result++;
139 return Result;
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Marvell/Library/ParsePcdLib/
ParsePcdLib.c 96 UINTN Result = 0;
120 Result <<= 4;
121 Result += HexCharToUintn (*String);
125 return (UINTN) Result;
134 UINTN Result = 0;
137 Result = 10 * Result + (*String - L'0');
141 return Result;
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiUsbLib/
Hid.c 60 EFI_STATUS Result;
72 Result = UsbIo->UsbControlTransfer (
82 return Result;
102 is not large enough to hold the result of the request.
117 EFI_STATUS Result;
132 Result = UsbIo->UsbControlTransfer (
142 return Result;
172 EFI_STATUS Result;
187 Result = UsbIo->UsbControlTransfer (
197 return Result;
    [all...]
UsbDxeLib.c 41 is not large enough to hold the result of the request.
148 and Interface, and place the result in the buffer specified by AlternateSetting.
258 and place the result in the buffer specified by ConfigurationValue. The status
517 Recipient, and Target and place the result in the buffer specified by DeviceStatus.
621 EFI_STATUS Result;
633 Result = UsbIo->UsbGetInterfaceDescriptor (
637 if (EFI_ERROR (Result)) {
638 return Result;
642 Result = UsbIo->UsbGetEndpointDescriptor (
647 if (EFI_ERROR (Result)) {
    [all...]
  /device/linaro/bootloader/edk2/SignedCapsulePkg/Universal/SystemFirmwareUpdate/
SystemFirmwareReportDxe.c 59 BOOLEAN Result;
78 Result = ExtractDriverFvImage(AuthenticatedImage, AuthenticatedImageSize, &DispatchFvImage, &DispatchFvImageSize);
79 if (Result) {
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
NumericInt.c 138 integer, and return the result.
187 long Result = 0;
236 Previous = Result;
237 Result = (Result * base) + (long int)temp;
238 if( Result <= Previous) { // Detect Overflow
240 Result = LONG_MIN;
243 Result = LONG_MAX;
252 Result = -Result;
    [all...]
  /external/clang/include/clang/Lex/
PTHLexer.h 53 bool LexEndOfFile(Token &Result);
92 void IndirectLex(Token &Result) override { Lex(Result); }
  /external/clang/lib/Format/
TokenAnalyzer.cpp 92 tooling::Replacements Result;
110 analyze(Annotator, AnnotatedLines, Tokens, Result);
123 Result.insert(RunResult.begin(), RunResult.end());
125 return Result;
  /external/clang/lib/Index/
SimpleFormatContext.h 57 std::string Result;
58 llvm::raw_string_ostream OS(Result);
61 return Result;
  /external/clang/lib/Tooling/
FileMatchTrie.cpp 113 StringRef Result = MatchingChild->getValue().findEquivalent(
116 if (!Result.empty() || IsAmbiguous)
117 return Result;
121 StringRef Result;
124 if (Result.empty()) {
125 Result = AllChildren[i];
132 return Result;
185 StringRef Result = Root->findEquivalent(*Comparator, FileName, IsAmbiguous);
188 return Result;
  /external/clang/tools/libclang/
CXComment.h 33 CXComment Result;
34 Result.ASTNode = C;
35 Result.TranslationUnit = TU;
36 return Result;
  /external/clang/unittests/Format/
FormatTestJS.cpp 31 auto Result = applyAllReplacements(Code, Replaces);
32 EXPECT_TRUE(static_cast<bool>(Result));
33 DEBUG(llvm::errs() << "\n" << *Result << "\n\n");
34 return *Result;
52 std::string Result = format(test::messUp(Code), Style);
53 EXPECT_EQ(Code.str(), Result) << "Formatted:\n" << Result;
60 std::string Result = format(Code, Style);
61 EXPECT_EQ(Expected.str(), Result) << "Formatted:\n" << Result;
    [all...]
SortImportsTestJS.cpp 39 std::string Result = sort(Code, Offset, Length);
40 EXPECT_EQ(Expected.str(), Result) << "Expected:\n"
42 << Result;
SortIncludesTest.cpp 32 auto Result = applyAllReplacements(
34 EXPECT_TRUE(static_cast<bool>(Result));
35 return *Result;
  /external/clang/unittests/Rewrite/
RewriteBufferTest.cpp 44 std::string Result;
45 raw_string_ostream OS(Result);
48 EXPECT_EQ(Output, Result);
  /external/llvm/include/llvm/ADT/
StringSwitch.h 47 /// \brief The pointer to the result of this switch statement, once known,
49 const T *Result;
54 : Str(S), Result(nullptr) { }
59 if (!Result && N-1 == Str.size() &&
61 Result = &Value;
70 if (!Result && Str.size() >= N-1 &&
72 Result = &Value;
81 if (!Result && Str.size() >= N-1 &&
83 Result = &Value;
93 if (!Result &&
    [all...]
edit_distance.h 97 unsigned Result = Row[n];
98 return Result;
  /external/llvm/include/llvm/Analysis/
BlockFrequencyInfo.h 91 /// \brief Provide the result typedef for this analysis pass.
92 typedef BlockFrequencyInfo Result;
95 Result run(Function &F, AnalysisManager<Function> &AM);
CFLAndersAliasAnalysis.h 47 /// Analysis pass providing a never-invalidated alias analysis result.
56 typedef CFLAndersAAResult Result;
63 std::unique_ptr<CFLAndersAAResult> Result;
70 CFLAndersAAResult &getResult() { return *Result; }
71 const CFLAndersAAResult &getResult() const { return *Result; }

Completed in 317 milliseconds

1 2 3 45 6 7 8 91011>>