Home
last modified time | relevance | path

Searched refs:userType (Results 1 – 16 of 16) sorted by relevance

/external/angle/src/compiler/translator/tree_ops/gl/
DRegenerateStructNames.cpp49 const TStructure *userType = type.getStruct(); in visitSymbol() local
50 if (!userType) in visitSymbol()
53 if (userType->symbolType() == SymbolType::BuiltIn || in visitSymbol()
54 userType->symbolType() == SymbolType::Empty) in visitSymbol()
60 int uniqueId = userType->uniqueId().get(); in visitSymbol()
84 if (userType->name().beginsWith(kPrefix)) in visitSymbol()
90 userType->name().length()); in visitSymbol()
93 tmp << '_' << userType->name(); in visitSymbol()
97 const_cast<TStructure *>(userType)->setName(tmp); in visitSymbol()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/creators/
DRequiredCreatorTest.java25 private String userType; field in RequiredCreatorTest.LoginUserResponse
29 @JsonProperty(value = "userType", required = true) String userType) { in LoginUserResponse()
31 this.userType = userType; in LoginUserResponse()
43 return userType; in getUserType()
46 public void setUserType(String userType) { in setUserType() argument
47 this.userType = userType; in setUserType()
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
DPropertyBoxParserImpl.java78 public Class<? extends Box> getClassForFourCc(String type, byte[] userType, String parent) { in getClassForFourCc() argument
79 FourCcToBox fourCcToBox = new FourCcToBox(type, userType, parent).invoke(); in getClassForFourCc()
88 public Box createBox(String type, byte[] userType, String parent) { in createBox() argument
90 FourCcToBox fourCcToBox = new FourCcToBox(type, userType, parent).invoke(); in createBox()
104 constructorArgs[i] = userType; in createBox()
145 private byte[] userType; field in PropertyBoxParserImpl.FourCcToBox
150 public FourCcToBox(String type, byte[] userType, String parent) { in FourCcToBox() argument
153 this.userType = userType; in FourCcToBox()
166 if (userType != null) { in invoke()
170 …constructor = mapping.getProperty((parent) + "-uuid[" + Hex.encodeHex(userType).toUpperCase() + "]… in invoke()
[all …]
DBoxParser.java28 Class<? extends Box> getClassForFourCc(String type, byte[] userType, String parent); in getClassForFourCc() argument
DAbstractBoxParser.java37 public abstract Box createBox(String type, byte[] userType, String parent); in createBox() argument
/external/nist-sip/java/gov/nist/javax/sip/address/
DUserInfo.java57 protected int userType; field in UserInfo
83 if (this.userType != other.userType) { in equals()
129 return userType; in getUserType()
181 userType = type; in setUserType()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
DAbstractBox.java53 private byte[] userType; field in AbstractBox
64 protected AbstractBox(String type, byte[] userType) { in AbstractBox() argument
66 this.userType = userType; in AbstractBox()
190 return userType; in getUserType()
DAbstractFullBox.java37 protected AbstractFullBox(String type, byte[] userType) { in AbstractFullBox() argument
38 super(type, userType); in AbstractFullBox()
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
DUserBox.java30 public UserBox(byte[] userType) { in UserBox() argument
31 super(TYPE, userType); in UserBox()
/external/swiftshader/src/OpenGL/compiler/
DSymbolTable.h87 …ring *name, const TType& t, bool uT = false ) : TSymbol(name), type(t), userType(uT), unionArray(0… in TSymbol()
92 bool isUserType() const { return userType; } in isUserType()
119 bool userType; variable
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/
DSymbolTable.cpp346 userType = copyOf.userType; in TVariable()
DSymbolTable.h160 userType(uT), in TSymbol()
172 virtual bool isUserType() const { return userType; } in isUserType()
208 bool userType; variable
/external/deqp-deps/glslang/glslang/MachineIndependent/
DSymbolTable.cpp345 userType = copyOf.userType; in TVariable()
DSymbolTable.h160 userType(uT), in TSymbol()
172 virtual bool isUserType() const { return userType; } in isUserType()
208 bool userType; variable
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowUserManager.java570 @NonNull String userType, @UserInfo.UserInfoFlag int flags, @UserIdInt int userId, in createProfileForUserEvenWhenDisallowed() argument
/external/mp4parser/isoparser/src/main/resources/
Disoparser-default.properties148 uuid=com.coremedia.iso.boxes.UserBox(userType)