Searched refs:candidateName (Results 1 – 7 of 7) sorted by relevance
/external/angle/third_party/vulkan-deps/glslang/src/glslang/MachineIndependent/ |
D | SymbolTable.cpp | 303 const TString& candidateName = (*candidate).first; in relateToOperator() local 304 TString::size_type parenAt = candidateName.find_first_of('('); in relateToOperator() 305 if (parenAt != candidateName.npos && candidateName.compare(0, parenAt, name) == 0) { in relateToOperator() 320 const TString& candidateName = (*candidate).first; in setFunctionExtensions() local 321 TString::size_type parenAt = candidateName.find_first_of('('); in setFunctionExtensions() 322 if (parenAt != candidateName.npos && candidateName.compare(0, parenAt, name) == 0) { in setFunctionExtensions()
|
D | SymbolTable.h | 519 const TString& candidateName = (*candidate).first; in hasFunctionName() local 520 TString::size_type parenAt = candidateName.find_first_of('('); in hasFunctionName() 521 if (parenAt != candidateName.npos && candidateName.compare(0, parenAt, name) == 0) in hasFunctionName() 535 const TString& candidateName = (*candidate).first; in findFunctionVariableName() local 536 TString::size_type parenAt = candidateName.find_first_of('('); in findFunctionVariableName() 537 if (parenAt == candidateName.npos) { in findFunctionVariableName() 539 if (candidateName == name) { in findFunctionVariableName() 546 if (candidateName.compare(0, parenAt, name) == 0) { in findFunctionVariableName()
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | SymbolTable.cpp | 303 const TString& candidateName = (*candidate).first; in relateToOperator() local 304 TString::size_type parenAt = candidateName.find_first_of('('); in relateToOperator() 305 if (parenAt != candidateName.npos && candidateName.compare(0, parenAt, name) == 0) { in relateToOperator() 320 const TString& candidateName = (*candidate).first; in setFunctionExtensions() local 321 TString::size_type parenAt = candidateName.find_first_of('('); in setFunctionExtensions() 322 if (parenAt != candidateName.npos && candidateName.compare(0, parenAt, name) == 0) { in setFunctionExtensions()
|
D | SymbolTable.h | 519 const TString& candidateName = (*candidate).first; in hasFunctionName() local 520 TString::size_type parenAt = candidateName.find_first_of('('); in hasFunctionName() 521 if (parenAt != candidateName.npos && candidateName.compare(0, parenAt, name) == 0) in hasFunctionName() 535 const TString& candidateName = (*candidate).first; in findFunctionVariableName() local 536 TString::size_type parenAt = candidateName.find_first_of('('); in findFunctionVariableName() 537 if (parenAt == candidateName.npos) { in findFunctionVariableName() 539 if (candidateName == name) { in findFunctionVariableName() 546 if (candidateName.compare(0, parenAt, name) == 0) { in findFunctionVariableName()
|
/external/dagger2/java/dagger/internal/codegen/binding/ |
D | SourceFiles.java | 303 String candidateName = UPPER_CAMEL.to(LOWER_CAMEL, className.simpleName()); in simpleVariableName() local 304 String variableName = protectAgainstKeywords(candidateName); in simpleVariableName() 309 public static String protectAgainstKeywords(String candidateName) { in protectAgainstKeywords() argument 310 switch (candidateName) { in protectAgainstKeywords() 334 return SourceVersion.isKeyword(candidateName) ? candidateName + '_' : candidateName; in protectAgainstKeywords()
|
/external/icu/android_icu4j/testing/src/com/android/i18n/test/timezone/internal/ |
D | TestIoUtils.java | 35 String candidateName = prefix + nextRandomInt(); in createTemporaryDirectory() local 36 File result = new File(System.getProperty("java.io.tmpdir"), candidateName); in createTemporaryDirectory()
|
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowApplicationPackageManager.java | 424 ComponentName candidateName = in resolvePreferredActivity() local 426 List<IntentFilter> intentFilters = preferredActivities.get(candidateName); in resolvePreferredActivity()
|