コード例 #1
0
ファイル: bcode.c プロジェクト: repos-holder/openbsd-patches
static void
not_compare(void)
{
	switch (readch()) {
	case '<':
		not_less();
		break;
	case '>':
		not_greater();
		break;
	case '=':
		not_equal();
		break;
	default:
		unreadch();
		bexec(readline());
		break;
	}
}
コード例 #2
0
ファイル: bcode.c プロジェクト: darksoul42/bitrig
static void
not_compare(void)
{
	switch (readch()) {
	case '<':
		not_less();
		break;
	case '>':
		not_greater();
		break;
	case '=':
		not_equal();
		break;
	default:
		unreadch();
		(void)fprintf(stderr, "! command is deprecated\n");
		break;
	}
}
コード例 #3
0
ファイル: type_string.cpp プロジェクト: AviMoto/hiphop-php
bool String::operator>=(CVarRef v) const {
  return not_less(m_px, v);
}
コード例 #4
0
ファイル: type_string.cpp プロジェクト: AviMoto/hiphop-php
bool String::operator>=(litstr v) const {
  return not_less(m_px, v);
}
コード例 #5
0
ファイル: type_string.cpp プロジェクト: yigithub/hiphop-php
bool String::operator>=(CStrRef v) const {
  return not_less(*this, v);
}