| /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/ |
| ResourceScriptCppFilter.cpp | 22 class Filter { 24 explicit Filter(StringRef Input) : Data(Input), DataLength(Input.size()) {} 42 std::string Filter::run() { 58 bool Filter::parseLine(StringRef Line) { 103 bool Filter::streamEof() const { return Pos == DataLength; } 109 std::string filterCppOutput(StringRef Input) { return Filter(Input).run(); }
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/ |
| Instrumentation.h | 71 // Regexes separated by a semi-colon to filter the files to instrument. 72 std::string Filter; 74 // Regexes separated by a semi-colon to filter the files to not instrument.
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGCleanup.h | 105 enum Kind { Cleanup, Catch, Terminate, Filter }; 433 /// Only exceptions matching the filter types will be permitted to be 451 : EHScope(Filter, EHScopeStack::stable_end()) { 473 return scope->getKind() == Filter; 515 case EHScope::Filter:
|
| CGException.cpp | 288 // Check if any of the filter values have the ObjC prefix. 515 EHFilterScope *Filter = EHStack.pushFilter(NumExceptions); 522 Filter->setFilter(I, EHType); 527 /// Emit the dispatch block for a filter scope if necessary. 539 // If this isn't a catch-all filter, we need to check whether we got 540 // here because the filter triggered. 682 case EHScope::Filter: 683 dispatchBlock = createBasicBlock("filter.dispatch"); 724 case EHScope::Filter: 742 case EHScope::Filter 859 EHFilterScope &filter = cast<EHFilterScope>(*I); local [all...] |
| CoverageMappingGen.cpp | 212 /// A set of regions which can be used as a filter. 402 void emitSourceRegions(const SourceRegionFilter &Filter) { 426 if (Filter.count(std::make_pair(LocStart, LocEnd))) 451 SourceRegionFilter Filter; 467 Filter.insert(std::make_pair(ParentLoc, LocEnd)); 475 return Filter; 950 SourceRegionFilter Filter = emitExpansionRegions(); 951 emitSourceRegions(Filter);
|
| CGStmtOpenMP.cpp | 3986 Expr *Filter = nullptr; 3988 Filter = FilterClause->getThreadID(); 3990 Filter); 3999 const Expr *Filter = nullptr; 4001 Filter = FilterClause->getThreadID(); 4002 llvm::Value *FilterVal = Filter 4003 ? EmitScalarExpr(Filter, CGM.Int32Ty)
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| CodeCompleteConsumer.cpp | 519 StringRef Filter, CodeCompletionResult Result) { 523 Result.Declaration->getIdentifier()->getName().startswith(Filter)); 525 return !StringRef(Result.Keyword).startswith(Filter); 527 return !Result.Macro->getName().startswith(Filter); 530 StringRef(Result.Pattern->getTypedText()).startswith(Filter)); 544 StringRef Filter = SemaRef.getPreprocessor().getCodeCompletionFilter(); 547 if (!Filter.empty() && isResultFilteredOut(Filter, Results[I]))
|
| SemaCodeComplete.cpp | 65 /// The type of a name-lookup filter, which can be provided to the 160 /// If non-NULL, a filter function used to remove any code-completion 162 LookupFilter Filter; 211 LookupFilter Filter = nullptr) 213 Filter(Filter), AllowNestedNameSpecifiers(false), 245 /// Set the filter used for code-completion results. 246 void setFilter(LookupFilter Filter) { this->Filter = Filter; } [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| WinEHFuncInfo.h | 53 /// Holds the filter expression function. 54 const Function *Filter = nullptr; 79 enum class ClrHandlerType { Catch, Finally, Fault, Filter };
|
| /src/external/bsd/libpcap/dist/ |
| pcap-pf.c | 23 * packet filter subroutines for tcpdump 84 int filtering_in_kernel; /* using kernel filter */ 86 u_long TotAccepted; /* count accepted by filter */ 198 * Short-circuit evaluation: if using BPF filter 200 * the packet passed the filter. 202 * Note: the filter code was generated assuming 205 * in the kernel, so we run the filter before 251 * "ps_recv" counts only packets that passed the filter. 257 * passed the filter, and on others it counts packets 258 * that didn't pass the filter.... [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| Lookup.h | 617 class Filter { 625 Filter(LookupResult &Results) : Results(Results), I(Results.begin()) {} 628 Filter(Filter &&F) 634 ~Filter() { 636 "LookupResult::Filter destroyed without done() call"); 644 assert(I != Results.end() && "next() called on empty filter"); 681 /// Create a filter for this result set. 682 Filter makeFilter() { 683 return Filter(*this) [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/TableGen/ |
| CodeGenMapTable.cpp | 36 // 2) For each record, filter out instructions based on the FilterClass value. 106 const RecordVal *Filter = MapRec->getValue("FilterClass"); 107 FilterClass = Filter->getValue()->getAsUnquotedString();
|
| FixedLenDecoderEmitter.cpp | 171 // BIT_UNFILTERED is used as the init value for a filter position. It is used 172 // only for filter processings. 233 /// Filter - Filter works with FilterChooser to produce the decoding tree for 236 /// It is useful to think of a Filter as governing the switch stmts of the 240 /// chooses a best Filter to do its job. 244 /// the Filter/FilterChooser combo does not know how to distinguish among the 269 class Filter { 271 const FilterChooser *Owner;// points to the FilterChooser who owns this filter 273 unsigned NumBits; // number of bits to filter [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| IvarInvalidationChecker.cpp | 214 /// Filter on the checks performed. 215 const ChecksFilter &Filter; 221 Mgr (InMgr), BR(InBR), Filter(InFilter) {} 463 if (Filter.check_MissingInvalidationMethod) 464 reportNoInvalidationMethod(Filter.checkName_MissingInvalidationMethod, 474 if (!Filter.check_InstanceVariableInvalidation) 521 reportNoInvalidationMethod(Filter.checkName_InstanceVariableInvalidation, 564 BR.EmitBasicReport(MethodD, Filter.checkName_InstanceVariableInvalidation, 570 IvarD, Filter.checkName_InstanceVariableInvalidation, 728 ChecksFilter Filter; [all...] |
| CStringChecker.cpp | 87 /// The filter is used to filter out the diagnostics which are not enabled by 101 CStringChecksFilter Filter; 306 if (Filter.CheckCStringNullArg) { 360 if (!Filter.CheckCStringOutOfBounds) 397 if (!Filter.CheckCStringOutOfBounds) 438 if (!Filter.CheckCStringBufferOverlap) 553 BT_Overlap.reset(new BugType(Filter.CheckNameCStringBufferOverlap, 570 Filter.CheckNameCStringNullArg, categories::UnixAPI, 588 Filter.CheckCStringOutOfBounds ? Filter.CheckNameCStringOutOfBound [all...] |
| /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
| ASTMatchFinder.cpp | 826 const auto &Filter = 829 if (Filter.empty()) 835 for (unsigned short I : Filter) { 856 auto &Filter = MatcherFiltersMap[Kind]; 861 Filter.push_back(I); 864 return Filter;
|
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| WinEHPrepare.cpp | 337 const Function *Filter, const BasicBlock *Handler) { 341 Entry.Filter = Filter; 352 Entry.Filter = nullptr; 371 // Extract the filter function and the __except basic block and create a 380 const Function *Filter = dyn_cast<Function>(FilterOrNull); 381 assert((Filter || FilterOrNull->isNullValue()) && 382 "unexpected filter value"); 383 int TryState = addSEHExcept(FuncInfo, ParentState, Filter, CatchPadBB);
|
| MachineVerifier.cpp | 2350 // This implements a set of registers that serves as a filter: can filter other 2351 // sets by passing through elements not in the filter and blocking those that 2352 // are. Any filter implicitly includes the full set of physical registers upon 2353 // creation, thus filtering them all out. The filter itself as a set only grows, 2356 // Add elements to the filter itself. \pre Input set \p FromRegSet must have 2362 // Filter \p FromRegSet through the filter and append passed elements into \p 2363 // ToVRegs. All elements appended are then added to the filter itself. 2429 VRegFilter Filter; [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-ar/ |
| llvm-ar.cpp | 605 bool Filter = !Members.empty(); 614 if (Filter) {
|
| /src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/ |
| llvm.ml | 259 | Filter
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| Instructions.h | 2848 enum ClauseType { Catch, Filter }; 2890 /// Add a catch or filter clause to the landing pad. 2904 /// Return 'true' if the clause and index Idx is a filter clause.
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| InstructionCombining.cpp | 3191 // A filter clause. If any of the filter elements were already caught 3192 // then they can be dropped from the filter. It is tempting to try to 3193 // exploit the filter further by saying that any typeinfo that does not 3194 // occur in the filter can't be caught later (and thus can be dropped). 3203 // An empty filter catches everything, so there is no point in keeping any 3214 bool MakeNewFilter = false; // If true, make a new filter. 3217 // Not an empty filter - it contains at least one null typeinfo. 3218 assert(NumTypeInfos > 0 && "Should have handled empty filter already!"); 3221 // If this typeinfo is a catch-all then the filter can never match [all...] |
| /src/external/apache2/llvm/dist/clang/tools/c-index-test/ |
| c-index-test.c | 1292 enum CXCursorKind *Filter; 1301 if (!Data->Filter || (Cursor.kind == *(enum CXCursorKind *)Data->Filter)) { 1395 if (!Data->Filter || (C.kind == *(enum CXCursorKind *)Data->Filter)) { 1936 const char *filter, const char *prefix, 1950 if (!strcmp(filter, "all") || !strcmp(filter, "local")) ck = NULL; 1951 else if (!strcmp(filter, "all-display") || 1952 !strcmp(filter, "local-display")) [all...] |
| /src/external/bsd/openldap/dist/servers/slapd/ |
| slap.h | 106 #undef f_next /* name conflict between sys/file.h on SCO and struct filter */ 360 typedef struct Filter Filter; 509 /* Filter index function */ 1048 ComponentFilter *ma_cf; /* component filter */ 1053 * represents a search filter 1055 struct Filter { 1094 Filter *f_un_complex; 1103 Filter *f_next; 1543 Filter *acl_filter [all...] |