Home
last modified time | relevance | path

Searched refs:second (Results 1 – 22 of 22) sorted by relevance

/sdk/emulator/opengl/tests/ut_renderer/
DRenderer.cpp85 if (i->second->destroy(m_nw)) { in destroySurface()
100 shared = sctx->second; in createContext()
125 if (i->second->destroy()) { in destroyContext()
143 if (c->second != currentContext) { in makeCurrent()
146 c->second->ref(); in makeCurrent()
147 eglContext = c->second->eglContext(); in makeCurrent()
148 thread->setCurrentContext(c->second); in makeCurrent()
149 thread->glDecoder().setContextData(&c->second->decoderContextData()); in makeCurrent()
150 thread->gl2Decoder().setContextData(&c->second->decoderContextData()); in makeCurrent()
153 eglContext = c->second->eglContext(); in makeCurrent()
[all …]
/sdk/emulator/opengl/host/libs/Translator/GLcommon/
DobjectNameManager.cpp32 m_globalNameSpace->deleteName(m_type, (*n).second); in ~NameSpace()
70 return (*n).second; in getGlobalName()
81 if((*it).second == p_globalName){ in getLocalName()
96 m_globalNameSpace->deleteName(m_type, (*n).second); in deleteName()
112 m_globalNameSpace->deleteName(m_type, (*n).second); in replaceGlobalName()
113 (*n).second = p_globalName; in replaceGlobalName()
283 if (i != map->end()) ret = (*i).second; in getObjectData()
302 shareGroupReturn = (*s).second; in createShareGroup()
326 shareGroupReturn = (*s).second; in getShareGroup()
344 ShareGroupPtr shareGroupReturn((*s).second); in attachShareGroup()
Detc1.cpp168 etc1_uint32 low, bool second, bool flipped) { in decode_subblock() argument
171 if (second) { in decode_subblock()
248 etc1_byte* pColors, bool flipped, bool second) { in etc_average_colors_subblock() argument
255 if (second) { in etc_average_colors_subblock()
272 if (second) { in etc_average_colors_subblock()
336 etc_compressed* pCompressed, bool flipped, bool second, in etc_encode_subblock_helper() argument
341 if (second) { in etc_encode_subblock_helper()
356 if (second) { in etc_encode_subblock_helper()
DGLEScontext.cpp36 if((*it).second.allocated){ in ~GLESConversionArrays()
37 if((*it).second.type == GL_FLOAT){ in ~GLESConversionArrays()
38 GLfloat* p = (GLfloat *)((*it).second.data); in ~GLESConversionArrays()
40 } else if((*it).second.type == GL_SHORT){ in ~GLESConversionArrays()
41 GLshort* p = (GLshort *)((*it).second.data); in ~GLESConversionArrays()
183 GLESpointer* p = (*it).second; in ~GLEScontext()
/sdk/emulator/opengl/host/libs/libOpenglRender/
DFrameBuffer.cpp517 share = (*s).second; in createRenderContext()
563 (*c).second.refcount++; in openColorBuffer()
576 if (--(*c).second.refcount == 0) { in closeColorBuffer()
592 return (*w).second->flushColorBuffer(); in flushWindowSurfaceColorBuffer()
614 (*w).second->setColorBuffer( (*c).second.cb ); in setWindowSurfaceColorBuffer()
631 (*c).second.cb->subUpdate(x, y, width, height, format, type, pixels); in updateColorBuffer()
646 return (*c).second.cb->bindToTexture(); in bindColorBufferToTexture()
659 return (*c).second.cb->bindToRenderbuffer(); in bindColorBufferToRenderbuffer()
681 ctx = (*r).second; in bindContext()
687 draw = (*w).second; in bindContext()
[all …]
/sdk/emulator/opengl/host/libs/Translator/EGL/
DEglDisplay.cpp76 static bool compareEglConfigsPtrs(EglConfig* first,EglConfig* second) { in compareEglConfigsPtrs() argument
77 return *first < *second ; in compareEglConfigsPtrs()
147 (*it).second : in getSurface()
157 (*it).second : in getContext()
179 if((*it).second.Ptr() == s.Ptr()) { in removeSurface()
207 if((*it).second.Ptr() == ctx.Ptr()){ in removeContext()
299 return (i != m_eglImages.end()) ? (*i).second :ImagePtr(NULL); in getImage()
DEglGlobalInfo.cpp56 if((*it).second == dpy) return (*it).first; in addDisplay()
85 if((*it).second == dpy) return (*it).first; in getDisplay()
DEglWindowsApi.cpp65 if((*it).second.hwnd){ in releaseAll()
66 DestroyWindow((*it).second.hwnd); in releaseAll()
68 DeleteDC((*it).second.dc); in releaseAll()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DDeletionHandler.java208 @NonNull ConstraintType first, @NonNull ConstraintType second) { in getCompatibleConstraint() argument
209 if (first == second) { in getCompatibleConstraint()
213 switch (second) { in getCompatibleConstraint()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DUseCompoundDrawableRefactoring.java161 Element second = children.get(1); in checkInitialConditions() local
164 || second.getTagName().equals(TEXT_VIEW); in checkInitialConditions()
167 || second.getTagName().equals(IMAGE_VIEW); in checkInitialConditions()
226 Element second = children.get(1); in computeChanges() local
231 image = second; in computeChanges()
233 text = second; in computeChanges()
DRelativeLayoutConversionHelper.java1469 private List<Integer> getOffsets(Set<Integer> first, Set<Integer> second) { in getOffsets() argument
1470 Set<Integer> joined = new HashSet<Integer>(first.size() + second.size()); in getOffsets()
1472 joined.addAll(second); in getOffsets()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DCustomViewFinder.java332 String second = parameterTypes[1]; in isValidView() local
333 if (second.equals("QAttributeSet;") //$NON-NLS-1$ in isValidView()
334 || second.equals("Qandroid.util.AttributeSet;")) { //$NON-NLS-1$ in isValidView()
DDynamicContextMenu.java258 String second = children.get(1).getName(); in insertVisualRefactorings() local
259 if ((first.equals(FQCN_IMAGE_VIEW) && second.equals(FQCN_TEXT_VIEW)) in insertVisualRefactorings()
260 || (first.equals(FQCN_TEXT_VIEW) && second.equals(FQCN_IMAGE_VIEW))) { in insertVisualRefactorings()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
DAaptParser.java670 String second) { in findRange() argument
690 if (region != null && second != null) { in findRange()
691 region = adapter.find(region.getOffset() + first.length(), second, in findRange()
/sdk/emulator/opengl/host/tools/emugen/
DTypeFactory.cpp154 return &(i->second); in getVarTypeByName()
/sdk/emulator/opengl/host/libs/Translator/GLES_V2/
DGLESv2Context.cpp95 GLESpointer* p = (*it).second; in setupArraysPointers()
DGLESv2Imp.cpp106 ret = val->second; in getProcAddress()
/sdk/emulator/opengl/host/libs/Translator/GLES_CM/
DGLEScmContext.cpp114 GLESpointer* p = (*it).second; in setupArraysPointers()
DGLEScmImp.cpp160 ret = val->second; in getProcAddress()
/sdk/emulator/opengl/
DDESIGN323 4/ write second command bytes into buf2
453 The second number must be 1 to indicate hardware libraries, and 0 to indicate
533 - second, this module is used by SurfaceFlinger to display "software surfaces",
/sdk/docs/
Dhowto_build_SDK.txt263 The second argument is the build "number". The example used "$USER" but it
Dhowto_use_cupcake_sdk.txt344 Before this used to put the second or more emulators in a transient read-only