HomeSort by relevance Sort by last modified time
    Searched defs:Required (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/llvm/include/llvm/
PassAnalysisSupport.h 42 /// Sets of analyses required and preserved by a pass
46 SmallVector<AnalysisID, 8> Required;
56 /// Add the specified ID to the required set of the usage info for a pass.
130 const VectorType &getRequiredSet() const { return Required; }
185 /// required by the current pass (to implement getAnalysis()).
236 "'required' by pass!");
  /external/llvm/lib/Support/
DAGDeltaAlgorithm.cpp 26 // the required set, we no longer consider them for elimination. For strictly
29 // this by allowing the required set to be minimized as well, but need more test
120 const changeset_ty &Required) {
121 DDA.UpdatedSearchState(Changes, Sets, Required);
145 /// \p Required changes from the cache, executing the test if necessary.
149 /// \param Required - The set of changes which have previously been
150 /// established to be required.
152 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
159 const changeset_ty &Required;
165 DDAI.UpdatedSearchState(Changes, Sets, Required);
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
PassAnalysisSupport.h 41 // Sets of analyses required and preserved by a pass
42 VectorType Required, RequiredTransitive, Preserved;
48 // addRequired - Add the specified ID to the required set of the usage info
107 const VectorType &getRequiredSet() const { return Required; }
162 // that are required by the current pass (to implement getAnalysis()).
213 "'required' by pass!");
  /external/swiftshader/third_party/LLVM/lib/Support/
DAGDeltaAlgorithm.cpp 26 // the required set, we no longer consider them for elimination. For strictly
29 // this by allowing the required set to be minimized as well, but need more test
121 const changeset_ty &Required) {
122 DDA.UpdatedSearchState(Changes, Sets, Required);
147 /// \arg Required changes from the cache, executing the test if necessary.
151 /// \param Required - The set of changes which have previously been
152 /// established to be required.
154 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
161 const changeset_ty &Required;
167 DDAI.UpdatedSearchState(Changes, Sets, Required);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/
PassAnalysisSupport.h 42 /// Sets of analyses required and preserved by a pass
46 SmallVector<AnalysisID, 8> Required;
56 /// Add the specified ID to the required set of the usage info for a pass.
130 const VectorType &getRequiredSet() const { return Required; }
185 /// required by the current pass (to implement getAnalysis()).
236 "'required' by pass!");
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/
PassAnalysisSupport.h 42 /// Sets of analyses required and preserved by a pass
46 SmallVector<AnalysisID, 8> Required;
56 /// Add the specified ID to the required set of the usage info for a pass.
130 const VectorType &getRequiredSet() const { return Required; }
185 /// required by the current pass (to implement getAnalysis()).
236 "'required' by pass!");
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/
PassAnalysisSupport.h 42 /// Sets of analyses required and preserved by a pass
46 SmallVector<AnalysisID, 8> Required;
56 /// Add the specified ID to the required set of the usage info for a pass.
130 const VectorType &getRequiredSet() const { return Required; }
185 /// required by the current pass (to implement getAnalysis()).
236 "'required' by pass!");
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/
PassAnalysisSupport.h 42 /// Sets of analyses required and preserved by a pass
46 SmallVector<AnalysisID, 8> Required;
56 /// Add the specified ID to the required set of the usage info for a pass.
130 const VectorType &getRequiredSet() const { return Required; }
185 /// required by the current pass (to implement getAnalysis()).
236 "'required' by pass!");
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/
PassAnalysisSupport.h 42 /// Sets of analyses required and preserved by a pass
46 SmallVector<AnalysisID, 8> Required;
56 /// Add the specified ID to the required set of the usage info for a pass.
130 const VectorType &getRequiredSet() const { return Required; }
185 /// required by the current pass (to implement getAnalysis()).
236 "'required' by pass!");
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/
PassAnalysisSupport.h 42 /// Sets of analyses required and preserved by a pass
46 SmallVector<AnalysisID, 8> Required;
56 /// Add the specified ID to the required set of the usage info for a pass.
130 const VectorType &getRequiredSet() const { return Required; }
185 /// required by the current pass (to implement getAnalysis()).
236 "'required' by pass!");
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/
PassAnalysisSupport.h 42 /// Sets of analyses required and preserved by a pass
46 SmallVector<AnalysisID, 8> Required;
56 /// Add the specified ID to the required set of the usage info for a pass.
130 const VectorType &getRequiredSet() const { return Required; }
185 /// required by the current pass (to implement getAnalysis()).
236 "'required' by pass!");
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/
PassAnalysisSupport.h 42 /// Sets of analyses required and preserved by a pass
46 SmallVector<AnalysisID, 8> Required;
56 /// Add the specified ID to the required set of the usage info for a pass.
130 const VectorType &getRequiredSet() const { return Required; }
185 /// required by the current pass (to implement getAnalysis()).
236 "'required' by pass!");
  /external/flatbuffers/net/FlatBuffers/
FlatBufferBuilder.cs 10 * Unless required by applicable law or agreed to in writing, software
565 // This checks a required field has been set in a given table that has
567 public void Required(int table, int field)
  /external/fmtlib/support/
docopt.py 83 parents = [Required, Optional, OptionsShortcut, Either, OneOrMore]
96 return Either(*[Required(*e) for e in result])
219 class Required(BranchPattern):
374 return Required(*result)
382 result = [Required(*seq)] if len(seq) > 1 else seq
386 result += [Required(*seq)] if len(seq) > 1 else seq
410 matching, pattern = {'(': [')', Required], '[': [']', Optional]}[token]
496 [optional], (required), (mutually | exclusive) or repeated...
  /external/llvm/include/llvm/MC/
MCInstrItineraries.h 61 Required = 0,
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCInstrItineraries.h 60 Required = 0,
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/
MCInstrItineraries.h 61 Required = 0,
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/
MCInstrItineraries.h 61 Required = 0,
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MCInstrItineraries.h 61 Required = 0,
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCInstrItineraries.h 61 Required = 0,
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/MC/
MCInstrItineraries.h 61 Required = 0,
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/MC/
MCInstrItineraries.h 61 Required = 0,
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/MC/
MCInstrItineraries.h 61 Required = 0,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/MC/
MCInstrItineraries.h 61 Required = 0,
  /art/compiler/dex/
inline_method_analyser.cc 10 * Unless required by applicable law or agreed to in writing, software
53 static bool Required(Matcher* matcher);
91 bool Matcher::Required(Matcher* matcher) {
283 &Matcher::Required<&Matcher::Opcode<Instruction::INVOKE_DIRECT>>,
287 &Matcher::Required<&Matcher::Opcode<Instruction::RETURN_VOID>>,

Completed in 1142 milliseconds

1 2 3