OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OpMap
(Results
1 - 3
of
3
) sorted by null
/external/llvm/utils/TableGen/
X86RecognizableInstr.h
42
/// The
OpMap
field from the record
43
uint8_t
OpMap
;
AsmWriterEmitter.cpp
639
std::map<StringRef, std::pair<int, int>>
OpMap
;
653
OpMap
[Op] = std::make_pair(OpIdx, PrintMethodIdx);
656
bool isOpMapped(StringRef Op) { return
OpMap
.find(Op) !=
OpMap
.end(); }
657
int getOpIndex(StringRef Op) { return
OpMap
[Op].first; }
658
std::pair<int, int> &getOpData(StringRef Op) { return
OpMap
[Op]; }
[
all
...]
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpMap.java
19
* $Id:
OpMap
.java 468655 2006-10-28 07:12:06Z minchau $
32
public class
OpMap
252
* @param
opMap
The operations map.
256
public static int getNextOpPos(int[]
opMap
, int opPos)
258
return opPos +
opMap
[opPos + 1];
Completed in 464 milliseconds