OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:JType
(Results
1 - 5
of
5
) sorted by null
/frameworks/native/opengl/tools/glgen/src/
JType.java
19
public class
JType
{
26
static HashMap<CType,
JType
> typeMapping = new HashMap<CType,
JType
>();
27
static HashMap<CType,
JType
> arrayTypeMapping = new HashMap<CType,
JType
>();
31
typeMapping.put(new CType("GLbitfield"), new
JType
("int"));
32
typeMapping.put(new CType("GLboolean"), new
JType
("boolean"));
33
typeMapping.put(new CType("GLclampf"), new
JType
("float"));
34
typeMapping.put(new CType("GLclampx"), new
JType
("int"));
35
typeMapping.put(new CType("GLenum"), new
JType
("int"))
[
all
...]
JFunc.java
25
JType
ftype;
29
List<
JType
> argTypes = new ArrayList<
JType
>();
52
public void setType(
JType
ftype) {
56
public
JType
getType() {
80
public void addArgument(String argName,
JType
argType, int cindex) {
113
public
JType
getArgType(int index) {
125
jfunc.setType(
JType
.convert(cfunc.getType(), false));
140
jfunc.addArgument(cArgName,
JType
.convert(cArgType, useArray), i);
143
jfunc.addArgument(cArgName + "Offset", new
JType
("int"), i)
[
all
...]
/art/compiler/llvm/
backend_types.h
27
enum
JType
{
62
inline
JType
GetJTypeFromShorty(char shorty_jty) {
/system/core/libpixelflinger/codeflinger/
mips_opcode.h
61
}
JType
;
93
}
JType
;
/external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp
[
all
...]
Completed in 493 milliseconds