Lines Matching refs:temp
575 char* temp = const_cast<char*>(strCutName.c_str());
576 for (char* p = strchr(temp, '.'); p != nullptr; p = strchr(p + 1, '.')) {
1195 for (NativeModule* temp = headNativeModule_; temp != nullptr; temp = temp->next) {
1196 if ((temp->moduleName && !strcmp(temp->moduleName, moduleName))
1197 || !strcasecmp(temp->name, moduleName)) {
1198 if (strcmp(temp->name, moduleName)) {
1200 moduleName, temp->name);
1204 while (label < NATIVE_PATH_NUMBER && strcmp(temp->systemFilePath, nativeModulePath[label])) {
1208 if (label < NATIVE_PATH_NUMBER || !strcmp(temp->systemFilePath, "")) {
1209 result = temp;
1213 cacheNativeModule = temp;