/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/ |
D | JsonRpcHandler.java | 182 String newId; in handleSessionRpc() local 184 newId = "" + mNextSessionId; in handleSessionRpc() 185 while (mManagerFactory.getRpcReceiverManagers().containsKey(newId)) { in handleSessionRpc() 186 newId = "" + mNextSessionId++; in handleSessionRpc() 188 mSessionId = newId; in handleSessionRpc() 189 mManagerFactory.create(newId); in handleSessionRpc() 191 return "{\"uid\": \"" + newId + "\", \"status\":true}"; in handleSessionRpc()
|
/external/angle/third_party/vulkan-deps/glslang/src/SPIRV/ |
D | SPVRemapper.h | 207 inline spv::Id localId(spv::Id id, spv::Id newId); 219 bool isNewIdMapped(spv::Id newId) const { return isMapped(newId); } in isNewIdMapped() argument
|
D | SPVRemapper.cpp | 257 spv::Id spirvbin_t::localId(spv::Id id, spv::Id newId) in localId() argument 269 if (newId != unmapped && newId != unused) { in localId() 282 if (isNewIdMapped(newId)) { in localId() 283 error(std::string("ID already used in module: ") + std::to_string(newId)); in localId() 287 msg(4, 4, std::string("map: ") + std::to_string(id) + " -> " + std::to_string(newId)); in localId() 288 setMapped(newId); in localId() 289 largestNewId = std::max(largestNewId, newId); in localId() 292 return idMapL[id] = newId; in localId()
|
/external/deqp-deps/glslang/SPIRV/ |
D | SPVRemapper.h | 207 inline spv::Id localId(spv::Id id, spv::Id newId); 219 bool isNewIdMapped(spv::Id newId) const { return isMapped(newId); } in isNewIdMapped() argument
|
D | SPVRemapper.cpp | 257 spv::Id spirvbin_t::localId(spv::Id id, spv::Id newId) in localId() argument 269 if (newId != unmapped && newId != unused) { in localId() 282 if (isNewIdMapped(newId)) { in localId() 283 error(std::string("ID already used in module: ") + std::to_string(newId)); in localId() 287 msg(4, 4, std::string("map: ") + std::to_string(id) + " -> " + std::to_string(newId)); in localId() 288 setMapped(newId); in localId() 289 largestNewId = std::max(largestNewId, newId); in localId() 292 return idMapL[id] = newId; in localId()
|
/external/deqp/modules/glshared/ |
D | glsLifetimeTests.cpp | 1181 const GLuint newId = replaceName(elementType, elementId, log()); in iterate() local 1182 const Name newElement (elementType, newId); in iterate() 1184 attacher.initAttachment(newSeed, newId); in iterate() 1189 attacher.attach(newId, *container); in iterate() 1191 attacher.detach(newId, *container); in iterate() 1263 const GLuint newId = replaceName(elementType, elementId, log()); in iterate() local 1264 const Name newElement (elementType, newId); in iterate() 1267 << "Creating a new object " << newId in iterate() 1273 attacher.initAttachment(newSeed, newId); in iterate() 1274 m_outputAttacher.drawAttachment(newId, newSurface); in iterate() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateSubdivisions.java | 67 for (String newId : entry.getValue().get0()) { 68 subdivisionIdToOld.put(newId, oldId); in subdivisionIdToOld.put() argument
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | inline_pass.cpp | 169 uint32_t newId = context()->TakeNextId(); in CloneAndMapLocals() local 170 if (newId == 0) { in CloneAndMapLocals() 173 get_decoration_mgr()->CloneDecorations(callee_var_itr->result_id(), newId); in CloneAndMapLocals() 174 var_inst->SetResultId(newId); in CloneAndMapLocals() 178 (*callee2caller)[callee_var_itr->result_id()] = newId; in CloneAndMapLocals()
|
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | inline_pass.cpp | 169 uint32_t newId = context()->TakeNextId(); in CloneAndMapLocals() local 170 if (newId == 0) { in CloneAndMapLocals() 173 get_decoration_mgr()->CloneDecorations(callee_var_itr->result_id(), newId); in CloneAndMapLocals() 174 var_inst->SetResultId(newId); in CloneAndMapLocals() 178 (*callee2caller)[callee_var_itr->result_id()] = newId; in CloneAndMapLocals()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/ |
D | inline_pass.cpp | 169 uint32_t newId = context()->TakeNextId(); in CloneAndMapLocals() local 170 if (newId == 0) { in CloneAndMapLocals() 173 get_decoration_mgr()->CloneDecorations(callee_var_itr->result_id(), newId); in CloneAndMapLocals() 174 var_inst->SetResultId(newId); in CloneAndMapLocals() 178 (*callee2caller)[callee_var_itr->result_id()] = newId; in CloneAndMapLocals()
|
/external/swiftshader/src/OpenGL/compiler/ |
D | intermediate.h | 420 void setId(int newId) { id = newId; } in setId() argument
|
/external/icu/icu4c/source/test/intltest/ |
D | transtst.cpp | 4094 char newId[256]={'\0'}; in TestAllCodepoints() local 4115 uprv_strcpy(newId,"[:"); in TestAllCodepoints() 4116 uprv_strcat(newId,id); in TestAllCodepoints() 4117 uprv_strcat(newId,":];NFD"); in TestAllCodepoints() 4123 if(uprv_strcmp(newId,oldId)!=0){ in TestAllCodepoints() 4124 Transliterator* t = Transliterator::createInstance(newId,UTRANS_FORWARD,pe,status); in TestAllCodepoints() 4137 uprv_strcpy(oldId,newId); in TestAllCodepoints()
|
/external/angle/src/compiler/translator/ |
D | BuildSPIRV.cpp | 382 spirv::IdRef newId = mNextAvailableId; in getNewId() local 387 spirv::WriteDecorate(&mSpirvDecorations, newId, decoration, {}); in getNewId() 390 return newId; in getNewId()
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/Include/ |
D | intermediate.h | 1310 virtual void switchId(long long newId) { id = newId; } in switchId() argument
|
/external/deqp-deps/glslang/glslang/Include/ |
D | intermediate.h | 1304 virtual void switchId(int newId) { id = newId; } in switchId() argument
|
/external/deqp-deps/glslang/glslang/HLSL/ |
D | hlslParseHelper.cpp | 3259 int newId = texSymbol->getId(); in handleSamplerTextureCombine() local 3266 newId = textureShadowEntry->second->get(shadowMode); in handleSamplerTextureCombine() 3272 if (newId == -1) { in handleSamplerTextureCombine() 3282 newId = newTexture->getUniqueId(); in handleSamplerTextureCombine() 3285 assert(newId != -1); in handleSamplerTextureCombine() 3287 if (textureShadowVariant.find(newId) == textureShadowVariant.end()) in handleSamplerTextureCombine() 3288 textureShadowVariant[newId] = textureShadowVariant[texSymbol->getId()]; in handleSamplerTextureCombine() 3290 textureShadowVariant[newId]->set(shadowMode, newId); in handleSamplerTextureCombine() 3296 texSymbol->switchId(newId); in handleSamplerTextureCombine()
|
/external/angle/third_party/vulkan-deps/glslang/src/glslang/HLSL/ |
D | hlslParseHelper.cpp | 3259 long long newId = texSymbol->getId(); in handleSamplerTextureCombine() local 3266 newId = textureShadowEntry->second->get(shadowMode); in handleSamplerTextureCombine() 3272 if (newId == -1) { in handleSamplerTextureCombine() 3282 newId = newTexture->getUniqueId(); in handleSamplerTextureCombine() 3285 assert(newId != -1); in handleSamplerTextureCombine() 3287 if (textureShadowVariant.find(newId) == textureShadowVariant.end()) in handleSamplerTextureCombine() 3288 textureShadowVariant[newId] = textureShadowVariant[texSymbol->getId()]; in handleSamplerTextureCombine() 3290 textureShadowVariant[newId]->set(shadowMode, newId); in handleSamplerTextureCombine() 3296 texSymbol->switchId(newId); in handleSamplerTextureCombine()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | TransliteratorTest.java | 2558 String newId ="[:"+id+":];NFD"; in TestScriptAllCodepoints() local 2560 Transliterator t = Transliterator.getInstance(newId); in TestScriptAllCodepoints()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
D | TransliteratorTest.java | 2561 String newId ="[:"+id+":];NFD"; in TestScriptAllCodepoints() local 2563 Transliterator t = Transliterator.getInstance(newId); in TestScriptAllCodepoints()
|