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

1 2

  /external/llvm/utils/fpcmp/
fpcmp.cpp 22 File1(cl::Positional, cl::desc("<input file #1>"), cl::Required);
24 File2(cl::Positional, cl::desc("<input file #2>"), cl::Required);
  /external/llvm/include/llvm/ADT/
DAGDeltaAlgorithm.h 23 /// removing any single element not required by the dependencies on the other
34 /// is not required to satisfy this property, but the algorithm will run
69 const changeset_ty &Required) {}
  /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
123 const changeset_ty &Required) {
124 DDA.UpdatedSearchState(Changes, Sets, Required);
149 /// \p Required changes from the cache, executing the test if necessary.
153 /// \param Required - The set of changes which have previously been
154 /// established to be required.
156 bool GetTestResult(const changeset_ty &Changes, const changeset_ty &Required);
163 const changeset_ty &Required;
169 DDAI.UpdatedSearchState(Changes, Sets, Required);
    [all...]
YAMLTraits.cpp 116 bool Input::preflightKey(const char *Key, bool Required, bool, bool &UseDefault,
122 // CurrentNode is null for empty documents, which is an error in case required
125 if (Required)
138 if (Required)
139 setError(CurrentNode, Twine("missing required key '") + Key + "'");
420 bool Output::preflightKey(const char *Key, bool Required, bool SameAsDefault,
423 if (Required || !SameAsDefault) {
CommandLine.cpp 455 return O->getNumOccurrencesFlag() == cl::Required ||
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-412203.js 9 // Required to reproduce the bug.
  /external/llvm/tools/llvm-diff/
llvm-diff.cpp 62 cl::Required);
65 cl::Required);
  /external/llvm/lib/CodeGen/
ScoreboardHazardRecognizer.cpp 154 case InstrStage::Required:
155 // Required FUs conflict with both reserved and required ones
159 // Reserved FUs can conflict only with required ones.
206 case InstrStage::Required:
207 // Required FUs conflict with both reserved and required ones
211 // Reserved FUs can conflict only with required ones.
223 if (IS->getReservationKind() == InstrStage::Required)
ScheduleDAG.cpp 66 bool SUnit::addPred(const SDep &D, bool Required) {
72 if (!Required && I->getSUnit() == D.getSUnit())
  /external/llvm/lib/IR/
Pass.cpp 277 Required.push_back(ID);
282 Required.push_back(&ID);
287 Required.push_back(&ID);
  /external/chromium_org/native_client_sdk/src/doc/reference/
nacl-manifest-format.rst 23 section that discusses each field in detail. The only field that is required
29 // Required
32 // Only required for glibc
60 // Required
62 // url is required
70 // url is required
105 // Required: at least one entry
120 // Required: at least one entry
265 required to load the Native Client application.
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 274 /// The number of required arguments, or ~0 if the signature does
285 /// Compute the arguments required by the given formal prototype,
352 RequiredArgs Required;
366 CGFunctionInfo() : Required(RequiredArgs::All) {}
374 RequiredArgs required);
394 bool isVariadic() const { return Required.allowsOptionalArgs(); }
395 RequiredArgs getRequiredArgs() const { return Required; }
453 ID.AddInteger(Required.getOpaqueData());
461 RequiredArgs required,
470 ID.AddInteger(required.getOpaqueData())
    [all...]
  /external/llvm/include/llvm/
PassAnalysisSupport.h 42 // Sets of analyses required and preserved by a pass
43 VectorType Required, RequiredTransitive, Preserved;
49 // addRequired - Add the specified ID to the required set of the usage info
108 const VectorType &getRequiredSet() const { return Required; }
163 // that are required by the current pass (to implement getAnalysis()).
214 "'required' by pass!");
  /external/chromium_org/tools/stats_viewer/
OpenDialog.Designer.cs 10 /// Required designer variable.
30 /// Required method for Designer support - do not modify
stats_viewer.Designer.cs 10 /// Required designer variable.
30 /// Required method for Designer support - do not modify
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 37 cl::list<std::string> Inputs(cl::Positional, cl::Required, cl::OneOrMore,
43 cl::alias OutputFilenameA("o", cl::desc("Alias for --output"), cl::Required,
75 cl::opt<std::string> Filename(cl::Positional, cl::Required,
  /external/llvm/lib/Target/R600/
SIInsertWaits.cpp 246 const Counters &Required) {
272 if (Required.Array[i] <= WaitedOn.Array[i])
278 unsigned Value = LastIssued.Array[i] - Required.Array[i];
344 // FIXME: Insert waits listed in Table 4.2 "Required User-Inserted Wait States"
  /external/llvm/include/llvm/MC/
MCInstrItineraries.h 61 Required = 0,
  /external/llvm/include/llvm/Support/
YAMLTraits.h 522 processKeyWithDefault(Key, Val, Optional<T>(), /*Required=*/false);
539 const Optional<T> &DefaultValue, bool Required) {
547 if (this->preflightKey(Key, Required, sameAsDefault, UseDefault,
549 yamlize(*this, Val.getValue(), Required);
559 bool Required) {
563 if ( this->preflightKey(Key, Required, sameAsDefault, UseDefault,
565 yamlize(*this, Val, Required);
575 void processKey(const char *Key, T &Val, bool Required) {
578 if ( this->preflightKey(Key, Required, false, UseDefault, SaveInfo) ) {
579 yamlize(*this, Val, Required);
    [all...]
  /external/chromium_org/third_party/skia/tools/
submit_try 146 -b, --bot Builder(s) or Alias on which to run the try. Required.
  /external/llvm/tools/llvm-jitlistener/
llvm-jitlistener.cpp 190 cl::Required);
  /external/chromium_org/third_party/openmax_dl/dl/api/arm/
armCOMM_s.h 415 @ $a = Required byte alignment
442 @ $a = Required byte alignment
  /art/build/
Android.common_build.mk 10 # Unless required by applicable law or agreed to in writing, software
263 $(error Required DEX2OAT_TARGET_INSTRUCTION_SET_FEATURES is not set)
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 593 KeyStatus(bool Required=false) : Required(Required), Seen(false) {}
594 bool Required;
620 if (I->second.Required && !I->second.Seen) {
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
folder_shortcuts_data_model.js 102 this.rememberLastDriveURL_(); // Required for conversions.
306 this.rememberLastDriveURL_(); // Required for saving.

Completed in 1560 milliseconds

1 2