HomeSort by: relevance | last modified time | path
    Searched defs:Search (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Support/
DeltaAlgorithm.cpp 55 if (Search(Changes, Sets, Res))
69 bool DeltaAlgorithm::Search(const changeset_ty &Changes,
TargetParser.cpp 120 GPUInfo Search = { {""}, {""}, AK, AMDGPU::FEATURE_NONE };
123 llvm::lower_bound(Table, Search, [](const GPUInfo &A, const GPUInfo &B) {
  /src/sys/external/bsd/acpica/dist/disassembler/
dmnames.c 298 ACPI_PARSE_OBJECT *Search;
338 /* Search upwards in the tree to find scope with "prev" as its parent */
340 Search = Op;
343 if (Search->Common.Parent == Prev)
350 Search = Search->Common.Parent;
355 OpInfo = AcpiPsGetOpcodeInfo (Search->Common.AmlOpcode);
386 Name = AcpiPsGetName (Search);
394 Prev = Search;
  /src/external/mit/libcbor/dist/docs/doxygen/search/
search.js 1 function convertToId(search)
4 for (i=0;i<search.length;i++)
6 var c = search.charAt(i);
52 /* A class handling everything associated with the search panel.
102 // Called when focus is added or removed from the search field.
120 // show search selection popup
132 // show search selection popup
153 // Called when the content of the search field is changed.
186 else if (e.keyCode==27) // Escape out of the search field
199 if (searchValue != this.lastSearchValue) // search value has change
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
PrecompiledPreamble.cpp 86 // search path entries whose roots don't exist when the preamble is built.
87 // These are pruned by InitHeaderSearch and so we don't see the search path.
92 const HeaderSearch &Search;
96 MissingFileCollector(llvm::StringSet<> &Out, const HeaderSearch &Search,
98 : Out(Out), Search(Search), SM(SM) {}
132 // ...relative to the search paths.
134 IsAngled ? Search.angled_dir_begin() : Search.search_dir_begin(),
135 Search.search_dir_end()))
    [all...]
VerifyDiagnosticConsumer.cpp 177 // If S is the empty string, then search for any letter instead (makes sense
183 bool Search(StringRef S, bool EnsureStartOfWord = false,
187 P = std::search(C, End, S.begin(), S.end());
198 // If not start of word but required, skip and search again.
248 // Advance 1-past previous next/search.
249 // Behavior is undefined if previous next/search failed.
255 // Return the text matched by the previous next/search.
256 // Behavior is undefined if previous next/search failed.
279 // Previous next/search subject start.
283 // Previous next/search subject end (1-past)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMParallelDSP.cpp 225 bool Search(Value *V, BasicBlock *BB, Reduction &R);
436 // Search recursively back through the operands to find a tree of values that
437 // form a multiply-accumulate chain. The search records the Add and Mul
440 bool ARMParallelDSP::Search(Value *V, BasicBlock *BB, Reduction &R) {
442 // value. This may have already been found during the search in which case
443 // this function will return false, signaling a search fail.
464 bool ValidLHS = Search(LHS, BB, R);
465 bool ValidRHS = Search(RHS, BB, R);
478 return Search(I->getOperand(0), BB, R);
534 if (!Search(&I, &BB, R)
    [all...]
ARMLowOverheadLoops.cpp 129 std::function<void(MachineBasicBlock*)> Search = [this, &Search]
138 Search(Succ);
149 Search(ML.getHeader());
711 // Search backwards for a def, until we get to InsertBB.
1211 // Search the given block for a loop start instruction. If one isn't found,
1212 // and there's only one predecessor block, search that one too.
1225 // Search the preheader for the start intrinsic.
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
cpplint.py 374 matched = _RE_SUPPRESSION.search(raw_line)
411 # The regexp compilation caching is inlined in both Match and Search for
419 def Search(pattern, s):
423 return _regexp_compile_cache[pattern].search(s)
1104 if re.search(r'Copyright', lines[line], re.I): break
1423 if Search('(^|[^:]):($|[^:])', clean_lines.elided[linenum]):
1782 if Search(r'printf\s*\(.*".*%[-+ ]?\d*q', line):
1786 if Search(r'printf\s*\(.*".*%\d+\$', line):
1793 if Search(r'("|\').*\\(%|\[|\(|{)', line):
1800 if Search(r'\b(const|volatile|void|char|short|int|long
    [all...]

Completed in 25 milliseconds