/external/llvm/unittests/LineEditor/ |
LineEditor.cpp | 44 std::vector<LineEditor::Completion> Completions; 46 TestListCompleter(const std::vector<LineEditor::Completion> &Completions) 49 std::vector<LineEditor::Completion> operator()(StringRef Buffer, 58 std::vector<LineEditor::Completion> Comps; 60 Comps.push_back(LineEditor::Completion("foo", "int foo()")); 66 Comps.push_back(LineEditor::Completion("bar", "int bar()")); 75 Comps.push_back(LineEditor::Completion("fee", "int fee()")); 76 Comps.push_back(LineEditor::Completion("fi", "int fi()")); 77 Comps.push_back(LineEditor::Completion("foe", "int foe()")); 78 Comps.push_back(LineEditor::Completion("fum", "int fum()")) [all...] |
/external/llvm/include/llvm/LineEditor/ |
LineEditor.h | 48 /// The action to perform upon a completion request. 66 /// A possible completion at a given cursor position. 67 struct Completion { 68 Completion() {} 69 Completion(const std::string &TypedText, const std::string &DisplayText) 73 /// completion, this should only include the rest of the text. 76 /// A description of this completion. This may be the completion itself, or 92 /// position in the StringRef) and returns a std::vector<Completion>. 98 /// completion request. If the current completer is a list completer, thi [all...] |
/external/clang/lib/ASTMatchers/Dynamic/ |
Parser.cpp | 143 // A code completion location in/immediately after an identifier will 144 // cause the portion of the identifier before the code completion 145 // location to become a code completion token. 340 // Do not return here. We need to continue to give completion suggestions. 437 // If the prefix of this completion matches the completion token, add it to 440 const MatcherCompletion& Completion) { 441 if (StringRef(Completion.TypedText).startswith(CompToken.Text) && 442 Completion.Specificity > 0) { 443 Completions.emplace_back(Completion.TypedText.substr(CompToken.Text.size()) [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/NvmExpressDxe/ |
NvmExpressBlockIo.c | 42 EFI_NVM_EXPRESS_COMPLETION Completion;
52 ZeroMem (&Completion, sizeof(EFI_NVM_EXPRESS_COMPLETION));
55 CommandPacket.NvmeCompletion = &Completion;
104 EFI_NVM_EXPRESS_COMPLETION Completion;
115 ZeroMem (&Completion, sizeof(EFI_NVM_EXPRESS_COMPLETION));
118 CommandPacket.NvmeCompletion = &Completion;
282 EFI_NVM_EXPRESS_COMPLETION Completion;
289 ZeroMem (&Completion, sizeof(EFI_NVM_EXPRESS_COMPLETION));
292 CommandPacket.NvmeCompletion = &Completion;
604 EFI_NVM_EXPRESS_COMPLETION Completion;
[all...] |
NvmExpressHci.c | 337 Read Nvm Express admin completion queue base address register.
340 @param Acq The buffer used to store admin completion queue base address register content.
342 @return EFI_SUCCESS Successfully read the admin completion queue base address register content.
343 @return EFI_DEVICE_ERROR Fail to read the admin completion queue base address register.
376 Write Nvm Express admin completion queue base address register.
379 @param Acq The buffer used to store the content to be written into admin completion queue base address register.
381 @return EFI_SUCCESS Successfully write data into the admin completion queue base address register.
382 @return EFI_DEVICE_ERROR Fail to write data into the admin completion queue base address register.
578 EFI_NVM_EXPRESS_COMPLETION Completion;
583 ZeroMem (&Completion, sizeof(EFI_NVM_EXPRESS_COMPLETION)); [all...] |
/external/llvm/lib/LineEditor/ |
LineEditor.cpp | 37 const std::vector<Completion> &Comps) { 41 for (std::vector<Completion>::const_iterator I = Comps.begin() + 1, 58 std::vector<Completion> Comps = getCompletions(Buffer, Pos); 67 // single completion, this will insert the full completion. If there is more 73 for (std::vector<Completion>::iterator I = Comps.begin(), E = Comps.end(); 120 // Handles tab completion. 218 ::el_set(Data->EL, EL_ADDFN, "tab_complete", "Tab completion function",
|
/libcore/ojluni/src/main/java/java/util/concurrent/ |
CompletableFuture.java | 49 * completion. 64 * a completion method. 91 * completion. Method {@link #cancel cancel} has the same effect as 96 * <li>In case of exceptional completion with a CompletionException, 105 * <p>Arguments used to pass a completion result (that is, for 120 * A CompletableFuture may have dependent completion actions, 128 * exceptions. Using a single field makes completion simple to 138 * Dependent actions are represented by Completion objects linked 139 * as Treiber stacks headed by field "stack". There are Completion 145 * Completion extends ForkJoinTask to enable async executio [all...] |
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/ |
FirmwareManagement.h | 246 @param[in] Completion A value between 1 and 100 indicating the current completion
247 progress of the firmware update. Completion progress is
259 IN UINTN Completion
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
Parser.h | 98 /// \brief Compute the list of completion types for \p Context. 104 /// the completion point in the argument list). An empty list requests 105 /// completion for the root matcher. 112 /// \param AcceptedTypes All types accepted for this completion. 237 const MatcherCompletion &Completion);
|
/external/clang/lib/Frontend/ |
ASTUnit.cpp | 263 /// \brief Determine the set of code-completion contexts in which this 364 CachedResult.Completion = R.CreateCodeCompletionString( 373 // Keep track of the type of this completion in an ASTContext-agnostic 423 // If there any contexts where this completion can be a 425 // nested-name-specifier completion. 427 CachedResult.Completion = R.CreateCodeCompletionString( 448 CachedResult.Completion = R.CreateCodeCompletionString( [all...] |
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/DxeCapsuleLib/ |
DxeCapsuleLib.c | 35 Function indicate the current completion progress of the firmware
38 @param Completion A value between 1 and 100 indicating the current completion progress of the firmware update
45 IN UINTN Completion
|
/external/clang/include/clang/Frontend/ |
ASTUnit.h | 296 /// \brief Whether we should be caching code-completion results. 321 /// \brief A cached code-completion result, which may be introduced in one of 324 /// \brief The code-completion string corresponding to this completion 326 CodeCompletionString *Completion; 328 /// \brief A bitmask that indicates which code-completion contexts should 329 /// contain this completion result. 332 /// CodeCompleteContext::Kind. To map from a completion context kind to a 337 /// \brief The priority given to this code-completion result. 340 /// \brief The libclang cursor kind corresponding to this code-completion [all...] |
/external/clang/unittests/ASTMatchers/Dynamic/ |
RegistryTest.cpp | 447 TEST_F(RegistryTest, Completion) {
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
documenttarget.h | 217 PrintDocumentPackageCompletion Completion;
|
/frameworks/base/ |
compiled-classes-phone | [all...] |