Home
last modified time | relevance | path

Searched refs:keyword (Results 1 – 25 of 82) sorted by relevance

1234

/external/bluez/utils/rfcomm/
Dkword.c54 int rfcomm_find_keyword(struct keyword_t *keyword, char *string) in rfcomm_find_keyword() argument
56 while (keyword->string) { in rfcomm_find_keyword()
57 if (!strcmp(string, keyword->string)) in rfcomm_find_keyword()
58 return keyword->type; in rfcomm_find_keyword()
59 keyword++; in rfcomm_find_keyword()
Dlexer.l52 keyword [A-Za-z0-9\_\-]+
87 {keyword} {
88 int keyword = rfcomm_find_keyword(rfcomm_keyword, yytext);
89 if (keyword != -1)
90 return keyword;
Dkword.h33 int rfcomm_find_keyword(struct keyword_t *keyword, char *string);
/external/qemu/
Doffset_layout.py65 keyword = m_line.group("keyword")
66 if keyword in ["display", "button"]:
67 mode = keyword
73 is_phone = keyword in PHONE
74 is_keyboard = (len(keyword) == 1 and keyword.isalnum())
76 is_keyboard = keyword in KEYBOARD
/external/e2fsprogs/lib/ss/
Dct_c.sed54 # Dispatch based on the keyword.... illegal keywords are prefixed by ERROR:
61 s/^/ERROR: unknown keyword: /
65 # Handle the command_table keyword
73 # Handle the request keyword --- this is the heart of the sed script.
156 # Handle the end keyword --- it's basically ignored.
/external/icu4c/common/
Duloc.c474 const char *keyword; /* keyword, or NULL if none */ member
597 char keyword[ULOC_KEYWORD_BUFFER_LEN]; member
605 const char* leftString = ((const KeywordStruct *)left)->keyword; in compareKeywordStructs()
606 const char* rightString = ((const KeywordStruct *)right)->keyword; in compareKeywordStructs()
668 keywordList[numKeywords].keyword[n++] = uprv_tolower(pos[i]); in _getKeywords()
671 keywordList[numKeywords].keyword[n] = 0; in _getKeywords()
698 if (uprv_strcmp(keywordList[j].keyword, keywordList[numKeywords].keyword) == 0) { in _getKeywords()
715 if (uprv_strcmp(keywordList[j].keyword, addKeyword) == 0) { in _getKeywords()
725 uprv_strcpy(keywordList[numKeywords].keyword, addKeyword); in _getKeywords()
742 uprv_strcpy(keywords+keywordsLen, keywordList[i].keyword); in _getKeywords()
[all …]
Duresimp.h156 … const char *path, const char *resName, const char *keyword, const char *locid,
168 ures_getKeywordValues(const char *path, const char *keyword, UErrorCode *status);
Duresbund.c2163 … const char *path, const char *resName, const char *keyword, const char *locid, in ures_getFunctionalEquivalent() argument
2178 uloc_getKeywordValue(locid, keyword, kwVal, 1024-1,&subStatus); in ures_getFunctionalEquivalent()
2185 locid, keyword, kwVal, base, u_errorName(subStatus)); in ures_getFunctionalEquivalent()
2238 path?path:"ICUDATA", parent, keyword, defVal, u_errorName(subStatus)); in ures_getFunctionalEquivalent()
2245 path?path:"ICUDATA", parent, keyword, kwVal); in ures_getFunctionalEquivalent()
2293 path?path:"ICUDATA", parent, keyword, kwVal, u_errorName(subStatus)); in ures_getFunctionalEquivalent()
2313 … path?path:"ICUDATA", full, keyword, defVal, u_errorName(subStatus)); in ures_getFunctionalEquivalent()
2368 parent, keyword, kwVal, u_errorName(subStatus)); in ures_getFunctionalEquivalent()
2389 … path?path:"ICUDATA", full, keyword, defVal, u_errorName(subStatus)); in ures_getFunctionalEquivalent()
2413 fprintf(stderr, "Still could not load keyword %s=%s\n", keyword, kwVal); in ures_getFunctionalEquivalent()
[all …]
/external/icu4c/test/cintltst/
Dcloctst.c1459 const char *keyword = NULL; in TestKeywordVariants() local
1479 while((keyword = uenum_next(keywords, &keywordLen, &status))) { in TestKeywordVariants()
1480 if(strcmp(keyword, testCases[i].expectedKeywords[j]) != 0) { in TestKeywordVariants()
1481 … log_err("Expected to get keyword value %s, got %s\n", testCases[i].expectedKeywords[j], keyword); in TestKeywordVariants()
1487 while((keyword = uenum_next(keywords, &keywordLen, &status))) { in TestKeywordVariants()
1488 if(strcmp(keyword, testCases[i].expectedKeywords[j]) != 0) { in TestKeywordVariants()
1489 … log_err("Expected to get keyword value %s, got %s\n", testCases[i].expectedKeywords[j], keyword); in TestKeywordVariants()
1514 const char *keyword; in TestKeywordVariantParsing() member
1531 …resultLen = uloc_getKeywordValue(testCases[i].localeID, testCases[i].keyword, buffer, 256, &status… in TestKeywordVariantParsing()
1534 testCases[i].expectedValue, testCases[i].localeID, testCases[i].keyword, buffer); in TestKeywordVariantParsing()
[all …]
/external/elfutils/po/
DMakevars11 XGETTEXT_OPTIONS = --keyword=_ --keyword=N_
/external/elfutils/libelf-po/
DMakevars11 XGETTEXT_OPTIONS = --keyword=_ --keyword=N_
/external/jpeg/
Dcdjpeg.c122 keymatch (char * arg, const char * keyword, int minchars) in keymatch() argument
128 if ((ck = *keyword++) == '\0') in keymatch()
Drdjpgcom.c408 keymatch (char * arg, const char * keyword, int minchars) in keymatch() argument
417 if ((ck = *keyword++) == '\0') in keymatch()
/external/icu4c/i18n/
Dcalendar.cpp150 static UBool isStandardSupportedKeyword(const char *keyword, UErrorCode& status) { in isStandardSupportedKeyword() argument
155 if(uprv_strcmp(gCalendarKeywords[i], keyword) == 0) { in isStandardSupportedKeyword()
262 char keyword[ULOC_FULLNAME_CAPACITY]; in create() local
266 getCalendarKeyword(str, keyword, (int32_t) sizeof(keyword)); in create()
272 if(!isStandardSupportedKeyword(keyword,status)) { // Do we handle this type? in create()
280 return createStandardCalendar(keyword, canLoc, status); in create()
302 char keyword[128]; in create() local
304 if(!loc.getKeywordValue("calendar", keyword, sizeof(keyword)-1, status)) { in create()
311 uloc_getKeywordValue(funcEquiv, "calendar", keyword, in create()
312 sizeof(keyword)-1, &status); in create()
[all …]
Ducol_res.cpp605 ucol_getKeywordValues(const char *keyword, UErrorCode *status) { in ucol_getKeywordValues() argument
611 if (keyword==NULL || uprv_strcmp(keyword, KEYWORDS[0])!=0) in ucol_getKeywordValues()
621 const char* keyword, const char* locale, in ucol_getFunctionalEquivalent() argument
626 "collations", keyword, locale, in ucol_getFunctionalEquivalent()
Dcoll.cpp775 Collator::getKeywordValues(const char *keyword, UErrorCode& status) { in getKeywordValues() argument
777 UEnumeration* uenum = ucol_getKeywordValues(keyword, &status); in getKeywordValues()
786 Collator::getFunctionalEquivalent(const char* keyword, const Locale& locale, in getFunctionalEquivalent() argument
791 keyword, locale.getName(), &isAvailable, &status); in getFunctionalEquivalent()
/external/e2fsprogs/po/
DMakevars11 XGETTEXT_OPTIONS = --keyword=_ --keyword=N_
/external/webkit/JavaScriptCore/icu/unicode/
Duloc.h659 uloc_getDisplayKeyword(const char* keyword,
686 const char* keyword,
/external/webkit/WebCore/icu/unicode/
Duloc.h659 uloc_getDisplayKeyword(const char* keyword,
686 const char* keyword,
/external/icu4c/test/intltest/
Dloctest.cpp1587 const char *keyword = NULL; in TestKeywordVariants() local
1608 if((keyword = keywords->next(&keywordLen, status)) == NULL) { in TestKeywordVariants()
1611 if(strcmp(keyword, testCases[i].expectedKeywords[j]) != 0) { in TestKeywordVariants()
1612 … err("Expected to get keyword value %s, got %s\n", testCases[i].expectedKeywords[j], keyword); in TestKeywordVariants()
1619 …r("Expected to get keyword UnicodeString %s, got %s\n", testCases[i].expectedKeywords[j], keyword); in TestKeywordVariants()
1637 if((keyword = keywords->next(&keywordLen, status)) == NULL) { in TestKeywordVariants()
1640 if(strcmp(keyword, testCases[i].expectedKeywords[j]) != 0) { in TestKeywordVariants()
1641 … err("Expected to get keyword value %s, got %s\n", testCases[i].expectedKeywords[j], keyword); in TestKeywordVariants()
1662 const char *keyword; in TestKeywordVariantParsing() member
1680 resultLen = l.getKeywordValue(testCases[i].keyword, buffer, 256, status); in TestKeywordVariantParsing()
[all …]
/external/icu4c/common/unicode/
Duloc.h654 uloc_getDisplayKeyword(const char* keyword,
681 const char* keyword,
/external/icu4c/i18n/unicode/
Dcoll.h635 static StringEnumeration* U_EXPORT2 getKeywordValues(const char *keyword, UErrorCode& status);
664 static Locale U_EXPORT2 getFunctionalEquivalent(const char* keyword, const Locale& locale,
/external/grub/util/
Dgrub-set-default38 ENTRY is a number or the special keyword \`default\'.
Dgrub-set-default.in38 ENTRY is a number or the special keyword \`default\'.
/external/webkit/WebKitTools/android/flex-2.5.4a/
Dconf.in3 /* Define to empty if the keyword does not work. */

1234