HomeSort by relevance Sort by last modified time
    Searched defs:keyword (Results 26 - 50 of 191) sorted by null

12 3 4 5 6 7 8

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 25 import keyword namespace
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ColorDelegator.py 3 import keyword namespace
16 kw = r"\b" + any("KEYWORD", keyword.kwlist) + r"\b"
68 "KEYWORD": idleConf.GetHighlight(theme, "keyword"),
229 self.tag_add("KEYWORD",
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 25 import keyword namespace
86 if ttype == tokenize.NAME and token not in keyword.kwlist:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ColorDelegator.py 3 import keyword namespace
16 kw = r"\b" + any("KEYWORD", keyword.kwlist) + r"\b"
68 "KEYWORD": idleConf.GetHighlight(theme, "keyword"),
229 self.tag_add("KEYWORD",
  /system/sepolicy/tools/sepolicy-analyze/
neverallow.c 23 const char *keyword = "self"; local
24 size_t keyword_size = strlen(keyword), len;
100 if (len == keyword_size && !strncmp(start, keyword, keyword_size)) {
372 const char *keyword = "neverallow"; local
373 size_t keyword_size = strlen(keyword), len;
393 if (len != keyword_size || strncmp(start, keyword, keyword_size))
  /libcore/luni/src/main/java/libcore/icu/
ICU.java 69 * ID. This is the bit that appears before the keyword separate "@". The general
174 // containing all "keywords" it could parse. An ICU keyword is a key-value pair
177 // Each keyword item can be one of three things :
180 // - A unicode extension keyword: In this case, the item key will be larger than
209 // This is a unicode extension keyword.
232 for (Entry<String, String> keyword : unicodeKeywordsMap.entrySet()) {
233 builder.setUnicodeLocaleKeyword(keyword.getKey(), keyword.getValue());
  /external/ImageMagick/MagickCore/
configure.c 1150 keyword[MagickPathExtent], local
    [all...]
magic.c 848 keyword[MagickPathExtent],
882 (void) CopyMagickString(keyword,token,MagickPathExtent);
883 if (LocaleNCompare(keyword,"<!DOCTYPE",9) == 0)
892 if (LocaleNCompare(keyword,"<!--",4) == 0)
901 if (LocaleCompare(keyword,"<include") == 0)
908 (void) CopyMagickString(keyword,token,MagickPathExtent);
913 if (LocaleCompare(keyword,"file") == 0)
835 keyword[MagickPathExtent], local
    [all...]
policy.c 758 keyword[MagickPathExtent],
792 (void) CopyMagickString(keyword,token,MagickPathExtent);
793 if (LocaleNCompare(keyword,"<!DOCTYPE",9) == 0)
802 if (LocaleNCompare(keyword,"<!--",4) == 0)
811 if (LocaleCompare(keyword,"<include") == 0)
818 (void) CopyMagickString(keyword,token,MagickPathExtent);
823 if (LocaleCompare(keyword,"file") == 0)
854 if (LocaleCompare(keyword,"<policy") == 0)
870 if (LocaleCompare(keyword,"/>") == 0)
885 switch (*keyword)
744 keyword[MagickPathExtent], local
    [all...]
  /external/ImageMagick/coders/
fits.c 255 keyword[9],
332 count=ReadBlob(image,8,(unsigned char *) keyword);
337 if (isspace((int) ((unsigned char) keyword[i])) != 0)
339 keyword[i]=tolower((int) ((unsigned char) keyword[i]));
341 keyword[i]='\0';
353 if (LocaleCompare(keyword,"end") == 0)
355 if (LocaleCompare(keyword,"extend") == 0)
357 if (LocaleCompare(keyword,"simple") == 0)
359 if (LocaleCompare(keyword,"bitpix") == 0
250 keyword[9], local
    [all...]
mpc.c 153 keyword[MagickPathExtent],
222 (void) ResetMagickMemory(keyword,0,sizeof(keyword));
281 Get the keyword.
284 p=keyword;
289 if ((size_t) (p-keyword) < (MagickPathExtent-1))
300 Get the keyword value.
338 Assign a value to the specified keyword.
340 switch (*keyword)
345 if (LocaleCompare(keyword,"alpha-color") == 0
149 keyword[MagickPathExtent], local
    [all...]
pnm.c 319 keyword[MagickPathExtent],
345 p=keyword;
348 if ((size_t) (p-keyword) < (MagickPathExtent-1))
353 if (LocaleCompare(keyword,"endhdr") == 0)
366 Assign a value to the specified keyword.
368 if (LocaleCompare(keyword,"depth") == 0)
371 if (LocaleCompare(keyword,"height") == 0)
373 if (LocaleCompare(keyword,"maxval") == 0)
375 if (LocaleCompare(keyword,"TUPLTYPE") == 0)
416 if (LocaleCompare(keyword,"width") == 0
315 keyword[MagickPathExtent], local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
util.py 8 import keyword namespace
77 while keyword.iskeyword(name):
  /external/curl/lib/
curl_fnmatch.c 74 char keyword[KEYLEN] = { 0 }; local
85 keyword[i] = c;
101 if(strcmp(keyword, "digit") == 0)
103 else if(strcmp(keyword, "alnum") == 0)
105 else if(strcmp(keyword, "alpha") == 0)
107 else if(strcmp(keyword, "xdigit") == 0)
109 else if(strcmp(keyword, "print") == 0)
111 else if(strcmp(keyword, "graph") == 0)
113 else if(strcmp(keyword, "space") == 0)
115 else if(strcmp(keyword, "blank") == 0
    [all...]
  /external/icu/icu4c/source/i18n/
plurfmt.cpp 432 // The keyword is empty until we need to match against a non-explicit, not-"other" value.
433 // Then we get the keyword from the selector.
435 // or if the only non-explicit keyword is "other".)
436 UnicodeString keyword; local
439 // to avoid matching the keyword again (duplicates are allowed)
445 // We remember the first matching-keyword sub-message if we have not seen
449 // We avoid matching the keyword twice by also setting haveKeywordMatch=true
450 // at the first keyword match.
471 // plural keyword like "few" or "other"
476 if(0 == keyword.compare(other))
525 UnicodeString keyword; local
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/security/
UnixCrypt.java 308 private static long[] des_setkey(long keyword)
310 long K = perm6464(keyword, PC1ROT);
415 long keyword = 0L; local
424 keyword = (keyword << 8) | ((i < keylen) ? 2 * key.charAt(i) : 0);
427 long[] KS = des_setkey(keyword);
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/cid/
cidload.c 72 const T1_Field keyword )
81 /* if the keyword has a dedicated callback, call it */
82 if ( keyword->type == T1_FIELD_TYPE_CALLBACK )
84 keyword->reader( (FT_Face)face, parser );
90 switch ( keyword->location )
116 keyword->ident ));
122 switch ( keyword->location )
136 /* now, load the keyword data in the object's field(s) */
137 if ( keyword->type == T1_FIELD_TYPE_INTEGER_ARRAY ||
138 keyword->type == T1_FIELD_TYPE_FIXED_ARRAY
384 T1_Field keyword = (T1_Field)cid_field_records; local
    [all...]
  /external/messageformat/java/com/ibm/icu/simple/
PluralFormat.java 81 * selector = explicitValue | keyword
83 * keyword = [^[[:Pattern_Syntax:][:Pattern_White_Space:]]]+
99 * If there is no exact-number match, then a keyword is selected by calling
102 * If there is no clause with that keyword, then the "other" clauses is returned.
161 * <code>String</code>(plural case keyword) --&gt; <code>String</code>
280 * @param selector the PluralSelector for mapping the number (minus offset) to a keyword.
298 // The keyword is null until we need to match against a non-explicit, not-"other" value.
299 // Then we get the keyword from the selector.
301 // or if the only non-explicit keyword is "other".)
302 String keyword=null local
    [all...]
  /external/pdfium/third_party/freetype/src/cid/
cidload.c 72 const T1_Field keyword )
81 /* if the keyword has a dedicated callback, call it */
82 if ( keyword->type == T1_FIELD_TYPE_CALLBACK )
84 keyword->reader( (FT_Face)face, parser );
90 switch ( keyword->location )
116 keyword->ident ));
122 switch ( keyword->location )
136 /* now, load the keyword data in the object's field(s) */
137 if ( keyword->type == T1_FIELD_TYPE_INTEGER_ARRAY ||
138 keyword->type == T1_FIELD_TYPE_FIXED_ARRAY
358 T1_Field keyword = (T1_Field)cid_field_records; local
    [all...]
  /external/pdfium/xfa/src/fxfa/src/fm2js/
xfa_lexer.cpp 529 XFA_FMKeyword keyword; local
532 keyword = keyWords[iMid];
533 if (uHash == keyword.m_uHash) {
534 return keyword.m_type;
535 } else if (uHash < keyword.m_uHash) {
  /external/toybox/scripts/
config2help.c 41 char *keyword(char *name, char *line) function
158 // source or config keyword at left edge?
160 if ((s = keyword("config", line))) {
165 } else if ((s = keyword("source", line))) parse(s);
178 else if ((s = keyword("depends", line)) && (s = keyword("on", s)))
180 else if (keyword("help", line)) sym->help_indent = -1;
255 if (catch->help && (that = keyword("usage:", catch->help->data))) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pydoc.py 8 import keyword namespace
393 sorted(keyword.kwlist))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pydoc.py 8 import keyword namespace
393 sorted(keyword.kwlist))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pydoc.py 8 import keyword namespace
393 sorted(keyword.kwlist))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pydoc.py 8 import keyword namespace
393 sorted(keyword.kwlist))

Completed in 987 milliseconds

12 3 4 5 6 7 8