當前位置: 首頁>>代碼示例>>C++>>正文


C++ CHECK_COLL函數代碼示例

本文整理匯總了C++中CHECK_COLL函數的典型用法代碼示例。如果您正苦於以下問題:C++ CHECK_COLL函數的具體用法?C++ CHECK_COLL怎麽用?C++ CHECK_COLL使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了CHECK_COLL函數的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C++代碼示例。

示例1: f_collator_sort_with_sort_keys

Variant f_collator_sort_with_sort_keys(CVarRef obj, VRefParam arr) {
  CHECK_COLL(obj);
  return coll->t_sortwithsortkeys(ref(arr));
}
開發者ID:cdnewbee,項目名稱:hiphop-php,代碼行數:4,代碼來源:ext_intl.cpp

示例2: f_collator_sort

Variant f_collator_sort(CVarRef obj, VRefParam arr,
                        int64 sort_flag /* = q_Collator___SORT_REGULAR */) {
  CHECK_COLL(obj);
  return coll->t_sort(ref(arr), sort_flag);
}
開發者ID:cdnewbee,項目名稱:hiphop-php,代碼行數:5,代碼來源:ext_intl.cpp

示例3: f_collator_set_attribute

Variant f_collator_set_attribute(CVarRef obj, int64 attr, int64 val) {
  CHECK_COLL(obj);
  return coll->t_setattribute(attr, val);
}
開發者ID:cdnewbee,項目名稱:hiphop-php,代碼行數:4,代碼來源:ext_intl.cpp

示例4: f_collator_set_strength

Variant f_collator_set_strength(CVarRef obj, int64 strength) {
  CHECK_COLL(obj);
  return coll->t_setstrength(strength);
}
開發者ID:cdnewbee,項目名稱:hiphop-php,代碼行數:4,代碼來源:ext_intl.cpp

示例5: f_collator_get_locale

Variant f_collator_get_locale(CVarRef obj, int64 type /* = 0 */) {
  CHECK_COLL(obj);
  return coll->t_getlocale(type);
}
開發者ID:cdnewbee,項目名稱:hiphop-php,代碼行數:4,代碼來源:ext_intl.cpp

示例6: f_collator_get_strength

Variant f_collator_get_strength(CVarRef obj) {
  CHECK_COLL(obj);
  return coll->t_getstrength();
}
開發者ID:cdnewbee,項目名稱:hiphop-php,代碼行數:4,代碼來源:ext_intl.cpp

示例7: f_collator_get_error_message

Variant f_collator_get_error_message(CVarRef obj) {
  CHECK_COLL(obj);
  return coll->t_geterrormessage();
}
開發者ID:cdnewbee,項目名稱:hiphop-php,代碼行數:4,代碼來源:ext_intl.cpp

示例8: f_collator_get_attribute

Variant f_collator_get_attribute(CVarRef obj, int64 attr) {
  CHECK_COLL(obj);
  return coll->t_getattribute(attr);
}
開發者ID:cdnewbee,項目名稱:hiphop-php,代碼行數:4,代碼來源:ext_intl.cpp

示例9: f_collator_compare

Variant f_collator_compare(CVarRef obj, CStrRef str1, CStrRef str2) {
  CHECK_COLL(obj);
  return coll->t_compare(str1, str2);
}
開發者ID:cdnewbee,項目名稱:hiphop-php,代碼行數:4,代碼來源:ext_intl.cpp

示例10: f_collator_compare

Variant f_collator_compare(CVarRef obj, const String& str1,
                           const String& str2) {
  CHECK_COLL(obj);
  return coll->t_compare(str1, str2);
}
開發者ID:360buyliulei,項目名稱:hiphop-php,代碼行數:5,代碼來源:ext_intl.cpp

示例11: f_collator_sort

Variant f_collator_sort(CVarRef obj, Variant arr, int64 sort_flag /* = 0 */) {
  CHECK_COLL(obj);
  return coll->t_sort(ref(arr), sort_flag);
}
開發者ID:activeingredient,項目名稱:hiphop-php,代碼行數:4,代碼來源:ext_intl.cpp


注:本文中的CHECK_COLL函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。