Home
last modified time | relevance | path

Searched refs:stateId (Results 1 – 4 of 4) sorted by relevance

/external/deqp/modules/gles3/performance/
Des3pStateChangeTests.cpp58 virtual void changeState (const glw::Functions& gl, int stateId) = 0;
124 virtual void changeState (const glw::Functions& gl, int stateId)\
174 if (stateId == 0) in init()
176 else if (stateId == 1) in init()
221 if (stateId == 0) in init()
223 else if (stateId == 1) in init()
275 if (stateId == 0) in init()
277 else if (stateId == 1) in init()
320 if (stateId == 0) in init()
322 else if (stateId == 1) in init()
[all …]
/external/deqp/modules/gles2/performance/
Des2pStateChangeTests.cpp58 virtual void changeState (const glw::Functions& gl, int stateId) = 0;
124 virtual void changeState (const glw::Functions& gl, int stateId)\
174 if (stateId == 0) in init()
176 else if (stateId == 1) in init()
221 if (stateId == 0) in init()
223 else if (stateId == 1) in init()
275 if (stateId == 0) in init()
277 else if (stateId == 1) in init()
320 if (stateId == 0) in init()
322 else if (stateId == 1) in init()
[all …]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowStateListDrawable.java18 public void addState(int stateId, int resId) { in addState() argument
19 stateToResource.put(stateId, resId); in addState()
22 public int getResourceIdForState(int stateId) { in getResourceIdForState() argument
23 return stateToResource.get(stateId); in getResourceIdForState()
/external/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
DAudioStreamBase.java121 private String convertStateToString(int stateId) { in convertStateToString() argument
125 if (stateId < 0 || stateId >= STATE_ARRAY.length) { in convertStateToString()
126 return "Invalid - " + stateId; in convertStateToString()
128 return STATE_ARRAY[stateId]; in convertStateToString()