HomeSort by: relevance | last modified time | path
    Searched defs:Values (Results 1 - 25 of 56) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/lib/Option/
Arg.cpp 29 Values.push_back(Value0);
36 Values.push_back(Value0);
37 Values.push_back(Value1);
42 for (unsigned i = 0, e = Values.size(); i != e; ++i)
43 delete[] Values[i];
55 O << " Values: [";
56 for (unsigned i = 0, e = Values.size(); i != e; ++i) {
58 O << "'" << Values[i] << "'";
93 Output.append(Values.begin(), Values.end())
    [all...]
ArgList.cpp 93 SmallVector<const char *, 16> Values;
94 AddAllArgValues(Values, Id);
95 return std::vector<std::string>(Values.begin(), Values.end());
142 const auto &Values = Arg->getValues();
143 Output.append(Values.begin(), Values.end());
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
ProvenanceAnalysisEvaluator.cpp 49 static void insertIfNamed(SetVector<Value *> &Values, Value *V) {
52 Values.insert(V);
56 SetVector<Value *> Values;
59 insertIfNamed(Values, &Arg);
62 insertIfNamed(Values, &*I);
65 insertIfNamed(Values, Op);
71 for (Value *V1 : Values) {
73 for (Value *V2 : Values) {
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
gtest-param-test.h 50 // class hierarchies), where the type of your parameter values.
53 // lifespan of the pointed values.
81 // Range(begin, end [, step]) - Yields values {begin, begin+step,
82 // begin+step+step, ...}. The values do not
84 // Values(v1, v2, ..., vN) - Yields values {v1, v2, ..., vN}.
85 // ValuesIn(container) - Yields values from a C-style array, an STL
89 // for the math savvy) of the values generated
96 // each with parameter values "meeny", "miny", and "moe".
100 Values("meeny", "miny", "moe"))
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
RefactoringActionRulesInternal.h 35 /// Scans the tuple and returns a valid \c Error if any of the values are
52 auto Values =
54 auto Err = findError(std::get<Is>(Values)...);
60 RuleType::initiate(Context, std::move((*std::get<Is>(Values)))...);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Waymarking.h 169 // in Values.
173 static const uint8_t Values[sizeof...(Vals)];
194 Count, Vals...>::Values[sizeof...(Vals)] = {Vals...};
235 Marker::setWaymark(*Begin, Marker::Traits::Tags::Values[Offset]);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Option/
Arg.h 33 /// derive the argument values efficiently.
55 /// Does this argument own its values?
58 /// The argument values, as C strings.
59 SmallVector<const char *, 2> Values;
111 unsigned getNumValues() const { return Values.size(); }
114 return Values[N];
117 SmallVectorImpl<const char *> &getValues() { return Values; }
118 const SmallVectorImpl<const char *> &getValues() const { return Values; }
122 if (Values[i] == Value)
133 /// The distinction is that some options only render their values
    [all...]
OptTable.h 57 const char *Values;
124 /// this options values in the help text.
144 /// \return The vector of possible values.
161 /// string includes prefix dashes "-" as well as values "=l".
177 /// Add Values to Option's Values class
179 /// \param [in] Option - Prefix + Name of the flag which Values will be
181 /// \param [in] Values - String of Values seperated by ",", such as
186 bool addValues(const char *Option, const char *Values);
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptStmt.cpp 184 size_t NumValues = Values.size();
188 OS << " " << Values[Id];
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 65 std::map<Value *, GenericValue> Values; // LLVM values used in this invocation
66 std::vector<GenericValue> VarArgs; // Values passed through an ellipsis
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
GVNSink.cpp 156 // corresponding Values.
230 SmallVector<Value *, 4> Values;
244 Values.push_back(P.second);
253 M.Values.push_back(reinterpret_cast<Value*>(ID));
257 /// Create a PHI from an array of incoming values and incoming blocks.
260 llvm::copy(V, std::back_inserter(Values));
269 Values.push_back(I->getOperand(OpNum));
276 auto VI = Values.begin();
278 assert(VI != Values.end());
281 VI = Values.erase(VI)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Rewrite/
DeltaTree.cpp 23 /// than binary trees, because they store multiple keys/values in each node.
71 /// Values - This tracks the SourceDelta's currently in this node.
72 SourceDelta Values[2*WidthFactor-1];
74 /// NumValuesUsed - This tracks the number of values this node currently
82 /// FullDelta - This is the full delta of all the values in this node and
97 return Values[i];
102 return Values[i];
140 Values[0] = IR.Split;
173 NewFullDelta += Values[i].Delta;
201 Values[i].Delta += Delta
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
AccelTable.h 59 /// section contains all of the 32-bit hash values in contiguous memory, and the
101 /// obtain their values.
113 /// conform. It serves as a base class for different values of the template
144 std::vector<AccelTableData *> Values;
159 /// Allocator for HashData and Values.
214 Iter->second.Values.push_back(
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
ValueEnumerator.h 1 //===- Bitcode/Writer/ValueEnumerator.h - Number values ---------*- C++ -*-===//
9 // This class gives values and types Unique ID's.
63 ValueList Values;
128 /// When a function is incorporated, this is the size of the Values list
190 /// getFunctionConstantRange - Return the range of values that corresponds to
197 const ValueList &getValues() const { return Values; }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 178 SmallVector<DbgValueLoc, 1> Values;
183 /// \param Vals One or more values describing (parts of) the variable.
196 if ((End == Next.Begin && Values == Next.Values)) {
205 ArrayRef<DbgValueLoc> getValues() const { return Values; }
207 Values.append(Vals.begin(), Vals.end());
209 assert((Values.size() == 1 || all_of(Values, [](DbgValueLoc V) {
217 llvm::sort(Values);
218 Values.erase(std::unique(Values.begin(), Values.end()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/Disassembler/
XCoreDisassembler.cpp 226 static const unsigned Values[] = {
229 Inst.addOperand(MCOperand::createImm(Values[Val]));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
CoroEarly.cpp 125 Constant* Values[] = {NoopFn, NoopFn};
126 Constant* NoopCoroConst = ConstantStruct::get(FrameTy, Values);
  /src/external/apache2/llvm/dist/llvm/tools/verify-uselistorder/
verify-uselistorder.cpp 83 std::vector<const Value *> Values;
88 /// un-referencable values.
94 /// All constants that are referenced by other values are included in the
249 Values.push_back(V);
250 IDs[V] = Values.size();
255 dbgs() << "value-mapping (size = " << VM.Values.size() << "):\n";
256 for (unsigned I = 0, E = VM.Values.size(); I != E; ++I) {
258 VM.Values[I]->dump();
263 const Value *V = M.Values[I];
286 dbgs() << " - fail: map size: " << L.Values.size(
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
OptParserEmitter.cpp 80 std::vector<StringRef> Values;
137 for (unsigned I = 0, E = Values.size(); I != E; ++I) {
139 write_cstring(OS, Values[I]);
185 assert(!isa<UnsetInit>(R.getValueInit("Values")) &&
186 "Cannot provide normalized values for value-less options");
189 Ret.Values.reserve(Ret.NormalizedValues.size());
192 StringRef ValuesStr = R.getValueAsString("Values");
198 Ret.Values.push_back(ValuesStr.slice(0, Idx));
202 Ret.Values.push_back(ValuesStr);
204 assert(Ret.Values.size() == Ret.NormalizedValues.size() &
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 1 //= ProgramState.cpp - Path-Sensitive "State" for tracking values --*- C++ -*--=
161 SmallVector<SVal, 8> Values;
164 Values.push_back(loc::MemRegionVal(*I));
166 return invalidateRegionsImpl(Values, E, Count, LCtx, CausedByPointerEscape,
171 ProgramState::invalidateRegions(ValueList Values,
179 return invalidateRegionsImpl(Values, E, Count, LCtx, CausedByPointerEscape,
184 ProgramState::invalidateRegionsImpl(ValueList Values,
205 = Mgr.StoreMgr->invalidateRegions(getStore(), Values, E, Count, LCtx, Call,
252 // values. For example, SymbolicRegions of type 'id<...>' cannot
271 // on later analysis stages (so we have less symbolic values to reaso
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/TextAPI/
TextStub.cpp 244 std::vector<FlowStringRef> Values;
357 IO.mapRequired("clients", Section.Values);
360 IO.mapRequired("libraries", Section.Values);
931 for (const auto &lib : CurrentSection.Values)
937 for (const auto &Lib : CurrentSection.Values)
1014 CurrentSection.Values.emplace_back(it.first->getInstallName());
1016 llvm::sort(CurrentSection.Values);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-diff/
DifferenceEngine.cpp 10 // engine, which structurally compares global values within a module.
116 /// The current mapping from old local values to new local values.
117 DenseMap<Value*, Value*> Values;
180 Values[L] = R;
389 // Ask the engine about global values.
458 // Fall out if the values have different kind.
470 return Values[L] == R || TentativeValues.count(std::make_pair(L, R));
473 return Values[L] == R;
498 Values[&*LI] = &*RI
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h 40 SmallVector<DWARFFormValue, 3> Values;
63 /// Returns the raw values of fields in the Accelerator Entry. In general,
66 ArrayRef<DWARFFormValue> getValues() const { return Values; }
190 /// Return the Atom description, which can be used to interpret the raw values
310 /// Return the Abbreviation that can be used to interpret the raw values of
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
StratifiedSets.h 92 : Values(std::move(Map)), Links(std::move(Links)) {}
95 auto Iter = Values.find(Elem);
96 if (Iter == Values.end())
107 DenseMap<T, StratifiedInfo> Values;
295 for (auto &Pair : Values) {
340 return StratifiedSets<T>(std::move(Values), std::move(StratLinks));
393 DenseMap<T, StratifiedInfo> Values;
399 auto Pair = Values.insert(std::make_pair(ToAdd, Info));
548 auto Result = Values.find(Val);
549 if (Result == Values.end()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
PredicateInfo.cpp 167 // For two phi related values, return the ordering.
174 // This function should only be used for values in the same BB, check that.
181 assert(A.DFSIn == B.DFSIn && "Values must be in the same block");
234 // See if we have real values or uses. If we have real values, we are
371 // Only want real values, not constants. Additionally, operands with one use
420 SmallVector<Value *, 4> Values;
421 Values.push_back(Cond);
423 collectCmpOps(Cmp, Values);
425 for (Value *V : Values) {
    [all...]

Completed in 36 milliseconds

1 2 3