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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/tools/
quote.py 8 def quote(input_str, specials, escape='\\'):
10 iterable |specials| (usually a set or a string) and the escape
21 if len(specials) > 0:
22 return re.sub(r'(' + r'|'.join(specials)+r'|'+escape + r')',
27 def unquote(input_str, specials, escape='\\'):
29 the input |specials| are, if not quoted by |escape|, used as
31 strings of alternating non-specials and specials used to break the
33 non-specials, but may end with either specials or non-specials.""
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/tests/
quote_test.py 24 def VerboseQuote(in_string, specials, *args, **kwargs):
27 (repr(in_string), repr(specials),
31 return quote.quote(in_string, specials, *args, **kwargs)
34 def VerboseUnquote(in_string, specials, *args, **kwargs):
37 (repr(in_string), repr(specials),
41 return quote.unquote(in_string, specials, *args, **kwargs)
50 def check_invertible(self, in_string, specials, escape='\\'):
51 q = VerboseQuote(in_string, specials, escape)
52 qq = VerboseUnquote(q, specials, escape)
  /external/kernel-headers/original/asm-mips/
statfs.h 33 /* Linux specials */
73 /* Linux specials */
  /system/core/sh/
mkbuiltins 80 specials=
112 specials="$specials $2 $func"
127 set -- $specials
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapUtility.java 31 * QUOTED-CHAR = <any TEXT-CHAR except quoted-specials> / "\" quoted-specials
32 * quoted-specials = DQUOTE / "\"
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
Arrays2Test.java 36 double[] specials = new double[] { Double.NEGATIVE_INFINITY, local
41 for (int i = 0; i < specials.length; i++) {
42 int result = Arrays.binarySearch(specials, specials[i]);
43 assertTrue("Assert 0: " + specials[i] + " invalid: " + result,
47 -4, Arrays.binarySearch(specials, -1d));
49 -8, Arrays.binarySearch(specials, 1d));
56 float[] specials = new float[] { Float.NEGATIVE_INFINITY, local
61 for (int i = 0; i < specials.length; i++) {
62 int result = Arrays.binarySearch(specials, specials[i])
    [all...]
ArraysTest.java 167 double[] specials = new double[] { Double.NEGATIVE_INFINITY, local
171 for (int i = 0; i < specials.length; i++) {
172 int result = Arrays.binarySearch(specials, specials[i]);
173 assertTrue(specials[i] + " invalid: " + result, result == i);
175 assertEquals("-1d", -4, Arrays.binarySearch(specials, -1d));
176 assertEquals("1d", -8, Arrays.binarySearch(specials, 1d));
201 float[] specials = new float[] { Float.NEGATIVE_INFINITY, local
205 for (int i = 0; i < specials.length; i++) {
206 int result = Arrays.binarySearch(specials, specials[i])
2086 double[] specials = new double[] { Double.NEGATIVE_INFINITY, local
2173 float[] specials = new float[] { Float.NEGATIVE_INFINITY, local
    [all...]
  /external/qemu/
gen-charmap.py 46 specials = { 'COMMA': 'Comma', variable
125 if specials.has_key(keycode):
126 keycode = specials[keycode]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
APIspecutil.py 76 specials = []
79 specials.append(func.name)
81 return specials
  /external/mesa3d/src/mesa/main/
APIspecutil.py 76 specials = []
79 specials.append(func.name)
81 return specials
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ContentSearchUtils.cpp 49 String specials(regexSpecialCharacters);
52 if (specials.find(text[i]) != kNotFound)
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/
idl_definitions.py 287 def __init__(self, is_static=False, name=None, idl_type=None, extended_attributes=None, specials=None, arguments=None, overloaded_index=None):
292 self.specials = specials or []
310 'domFunction::specials': self.specials,
idl_definitions_builder.py 179 specials = []
183 specials.append(special_keyword.lower())
200 return IdlOperation(name=name, idl_type=return_type, extended_attributes=extended_attributes, is_static=is_static, arguments=arguments, specials=specials)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/decimaltestdata/
abs.decTest 146 -- Specials
149 -- specials
ddAbs.decTest 114 -- specials
dqAbs.decTest 114 -- specials
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/decimaltestdata/
abs.decTest 146 -- Specials
149 -- specials
ddAbs.decTest 114 -- specials
dqAbs.decTest 114 -- specials
  /external/chromium_org/third_party/icu/patches/
locale2.patch 6 * ICU <specials> source: <path>/xml/main/af.xml
105 * ICU <specials> source: <path>/xml/main/ak.xml
165 * ICU <specials> source: <path>/xml/main/az.xml
829 * ICU <specials> source: <path>/xml/main/bem.xml
890 * ICU <specials> source: <path>/xml/main/be.xml
1090 * ICU <specials> source: <path>/xml/main/bs.xml
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
UnicodeRange.cpp 203 * Misc - Specials
339 cRangeTableBase+8, //uffxx, halfwidth and fullwidth forms, includes Specials
375 cRangeSpecials, //ufffx, Specials
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
_parseaddr.py 188 self.specials = '()<>@,:;.\"[]'
193 self.atomends = self.specials + self.LWS + self.CR
276 elif self.field[self.pos] in self.specials:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
_parseaddr.py 188 self.specials = '()<>@,:;.\"[]'
193 self.atomends = self.specials + self.LWS + self.CR
276 elif self.field[self.pos] in self.specials:
  /libcore/luni/src/test/java/tests/api/java/util/
ArraysTest.java 155 double[] specials = new double[] { Double.NEGATIVE_INFINITY, local
159 for (int i = 0; i < specials.length; i++) {
160 int result = Arrays.binarySearch(specials, specials[i]);
161 assertTrue(specials[i] + " invalid: " + result, result == i);
163 assertEquals("-1d", -4, Arrays.binarySearch(specials, -1d));
164 assertEquals("1d", -8, Arrays.binarySearch(specials, 1d));
189 float[] specials = new float[] { Float.NEGATIVE_INFINITY, local
193 for (int i = 0; i < specials.length; i++) {
194 int result = Arrays.binarySearch(specials, specials[i])
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
idl_parser.pm 71 specials => '@', # Specials
    [all...]

Completed in 1581 milliseconds

1 2 3 4 5 6 7 8 91011>>