HomeSort by relevance Sort by last modified time
    Searched full:iskeyword (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium_org/ui/base/l10n/
l10n_util_plurals.cc 47 // once ICU's isKeyword is fixed to return true for isKeyword('other').
49 (i == 0 || rules->isKeyword(kKeywords[i]))) {
formatter.cc 243 if (rules.isKeyword(UNICODE_STRING_SIMPLE("one")))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
keyword.py 13 __all__ = ["iskeyword", "kwlist"]
51 iskeyword = frozenset(kwlist).__contains__ variable
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
keyword.py 13 __all__ = ["iskeyword", "kwlist"]
51 iskeyword = frozenset(kwlist).__contains__ variable
  /external/clang/include/clang/Sema/
TypoCorrection.h 181 bool isKeyword() const {
188 bool isKeyword(const char (&Str)[StrLen]) const {
189 return isKeyword() && getCorrectionAsIdentifierInfo()->isStr(Str);
213 return isKeyword() ? CorrectionDecls.end() : CorrectionDecls.begin();
218 return isKeyword() ? CorrectionDecls.end() : CorrectionDecls.begin();
229 return (!isKeyword() && !CorrectionDecls.empty());
  /external/chromium_org/v8/test/webkit/
keywords-and-reserved_words.js 28 function isKeyword(x)
52 if (isKeyword(x)) {
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeDoc.cpp 182 if (!token.isKeyword("obj")) {
200 } else if (token.isKeyword("trailer")) {
203 } else if (token.isKeyword("startxref")) {
246 if (!xref.isKeyword("xref")) {
298 if (!token.isKeyword() || token.lenstr() != 1 ||
325 if (!trailerKeyword.isKeyword() || strlen("trailer") != trailerKeyword.lenstr() ||
422 if (!objKeyword.isKeyword() || strcmp(objKeyword.c_str(), "obj") != 0) {
SkPdfNativeObject.h 736 bool isKeyword() const {
743 bool isKeyword(const char* keyword) const {
746 if (!isKeyword()) {
    [all...]
  /external/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeDoc.cpp 182 if (!token.isKeyword("obj")) {
200 } else if (token.isKeyword("trailer")) {
203 } else if (token.isKeyword("startxref")) {
246 if (!xref.isKeyword("xref")) {
298 if (!token.isKeyword() || token.lenstr() != 1 ||
325 if (!trailerKeyword.isKeyword() || strlen("trailer") != trailerKeyword.lenstr() ||
422 if (!objKeyword.isKeyword() || strcmp(objKeyword.c_str(), "obj") != 0) {
  /external/chromium_org/v8/test/mjsunit/
keywords-and-reserved_words.js 35 function isKeyword(x)
59 if (isKeyword(x)) {
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmametadatapass.py 280 if self._last_code and self._last_code.IsKeyword('for'):
342 self._last_code.IsKeyword('else') or
343 self._last_code.IsKeyword('do') or
344 self._last_code.IsKeyword('try') or
345 self._last_code.IsKeyword('finally') or
363 elif token.IsKeyword('switch'):
396 elif token.IsKeyword('var'):
javascriptstatetracker.py 103 Type.KEYWORD) and not last_code.IsKeyword('return'):
javascripttokens.py 99 def IsKeyword(self, keyword):
  /external/chromium_org/third_party/closure_linter/closure_linter/
ecmametadatapass.py 280 if self._last_code and self._last_code.IsKeyword('for'):
342 self._last_code.IsKeyword('else') or
343 self._last_code.IsKeyword('do') or
344 self._last_code.IsKeyword('try') or
345 self._last_code.IsKeyword('finally') or
363 elif token.IsKeyword('switch'):
396 elif token.IsKeyword('var'):
javascriptstatetracker.py 103 Type.KEYWORD) and not last_code.IsKeyword('return'):
javascripttokens.py 99 def IsKeyword(self, keyword):
  /external/chromium_org/third_party/icu/source/i18n/unicode/
plurrule.h 188 * the number. This function can be used with isKeyword* functions to
199 * the number. This function can be used with isKeyword* functions to
229 UBool isKeyword(const UnicodeString& keyword) const;
  /external/chromium_org/v8/src/
dateparser.h 149 bool IsKeyword() { return tag_ >= kKeywordTagStart; }
158 ASSERT(IsKeyword());
162 ASSERT(IsKeyword());
token.h 181 static bool IsKeyword(Value tok) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
phystokens.py 99 if ttype == token.NAME and keyword.iskeyword(ttext):
  /external/chromium_org/third_party/icu/source/i18n/
plurrule_impl.h 196 UBool isKeyword(const UnicodeString& keyword) const;
plurrule.cpp 196 PluralRules::isKeyword(const UnicodeString& keyword) const {
205 return mRules->isKeyword(keyword);
244 if (U_FAILURE(status) || !other.isKeyword(*ptrKeyword)) {
256 if (!this->isKeyword(*ptrKeyword)) {
864 RuleChain::isKeyword(const UnicodeString& keywordParam) const {
870 return next->isKeyword(keywordParam);
  /external/icu/icu4c/source/i18n/unicode/
plurrule.h 324 * the number. This function can be used with isKeyword* functions to
335 * the number. This function can be used with isKeyword* functions to
428 UBool isKeyword(const UnicodeString& keyword) const;
  /external/icu/icu4c/source/i18n/
plurrule_impl.h 269 UBool isKeyword(const UnicodeString& keyword) const;
plurrule.cpp 427 PluralRules::isKeyword(const UnicodeString& keyword) const {
458 if (!other.isKeyword(*ptrKeyword)) {
464 if (!this->isKeyword(*ptrKeyword)) {
    [all...]

Completed in 976 milliseconds

1 2 3