OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FunctionSet
(Results
1 - 5
of
5
) sorted by null
/external/swiftshader/src/OpenGL/compiler/
AnalyzeCallDepth.h
59
typedef std::set<FunctionNode*>
FunctionSet
;
60
FunctionSet
globalFunctionCalls;
AnalyzeCallDepth.cpp
234
for(
FunctionSet
::iterator globalCall = globalFunctionCalls.begin(); globalCall != globalFunctionCalls.end(); globalCall++)
/external/google-breakpad/src/common/
module.h
314
typedef set<Function *, FunctionCompare>
FunctionSet
;
323
FunctionSet
functions_; // This module's functions.
module.cc
62
for (
FunctionSet
::iterator it = functions_.begin();
108
std::pair<
FunctionSet
::iterator,bool> ret = functions_.insert(function);
196
for (
FunctionSet
::const_iterator func_it = functions_.begin();
253
for (
FunctionSet
::const_iterator func_it = functions_.begin();
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
CalledValuePropagation.cpp
57
/// The states of the lattice values. Only the
FunctionSet
state is
60
enum CVPLatticeStateTy { Undefined,
FunctionSet
, Overdefined, Untracked };
73
: LatticeState(
FunctionSet
), Functions(std::move(Functions)) {
79
/// of functions will be zero for states other than
FunctionSet
.
84
/// Returns true if the lattice value is in the
FunctionSet
state.
85
bool isFunctionSet() const { return LatticeState ==
FunctionSet
; }
148
///
FunctionSet
values and a
FunctionSet
value with an Undefined value. For
200
OS << "
FunctionSet
";
233
return CVPLatticeVal(CVPLatticeVal::
FunctionSet
);
[
all
...]
Completed in 330 milliseconds