HomeSort by relevance Sort by last modified time
    Searched refs:pseudo (Results 1 - 25 of 171) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/tools/grit/grit/
pseudo_unittest.py 6 '''Unit tests for grit.pseudo'''
15 from grit import pseudo namespace
21 self.failUnless(pseudo.MapVowels('abebibobuby') ==
23 self.failUnless(pseudo.MapVowels('ABEBIBOBUBY') ==
27 out = pseudo.PseudoString('hello')
28 self.failUnless(out == pseudo.MapVowels(u'hePelloPo', True))
31 out = pseudo.PseudoString("beautiful weather, ain't it?")
32 self.failUnless(out == pseudo.MapVowels(
36 out = pseudo.PseudoString("HOWDIE DOODIE, DR. JONES")
37 self.failUnless(out == pseudo.MapVowels
    [all...]
clique.py 16 from grit import pseudo namespace
370 a pseudotranslation if there is no available translation and a pseudo-
407 return pseudo.PseudoMessage(self.GetMessage())
410 '''Returns a map of all messages that match 'lang', including the pseudo
420 pseudo.PSEUDO_LANG : tclib.Translation }
431 matches[pseudo.PSEUDO_LANG] = pseudo.PseudoMessage(self.GetMessage())
pseudo.py 30 PSEUDO_LANG = 'x-P-pseudo'
clique_unittest.py 19 from grit import pseudo namespace
62 self.failUnless(c.AllMessagesThatMatch(rex, True)[pseudo.PSEUDO_LANG] != None)
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_cwrs32.c 93 int pseudo; local
95 for(pseudo=1;pseudo<41;pseudo++)
104 k=get_pulses(pseudo);
  /external/libopus/celt/tests/
test_unit_cwrs32.c 93 int pseudo; local
95 for(pseudo=1;pseudo<41;pseudo++)
104 k=get_pulses(pseudo);
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_rand.c 230 static int bn_rand_range(int pseudo, BIGNUM *r, const BIGNUM *range)
232 int (*bn_rand)(BIGNUM *, int, int, int) = pseudo ? BN_pseudo_rand : BN_rand;
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeFieldElement.h 86 void initialize(const AtomicString& pseudo, const String& axHelpText, int axMinimum, int axMaximum);
DateTimeNumericFieldElement.h 74 void initialize(const AtomicString& pseudo, const String& axHelpText);
DateTimeSymbolicFieldElement.h 44 void initialize(const AtomicString& pseudo, const String& axHelpText);
DateTimeFieldElement.cpp 152 void DateTimeFieldElement::initialize(const AtomicString& pseudo, const String& axHelpText, int axMinimum, int axMaximum)
161 setShadowPseudoId(pseudo);
DateTimeSymbolicFieldElement.cpp 95 void DateTimeSymbolicFieldElement::initialize(const AtomicString& pseudo, const String& axHelpText)
100 DateTimeFieldElement::initialize(pseudo, axHelpText, m_minimumIndex + 1, m_maximumIndex + 1);
DateTimeNumericFieldElement.cpp 154 void DateTimeNumericFieldElement::initialize(const AtomicString& pseudo, const String& axHelpText)
156 DateTimeFieldElement::initialize(pseudo, axHelpText, m_range.minimum, m_range.maximum);
  /external/clang/test/CXX/special/class.dtor/
p10-0x.cpp 9 x->~decltype(*x)(); // expected-error{{the type of object expression ('const int') does not match the type being destroyed ('decltype(*x)' (aka 'const int &')) in pseudo-destructor expression}} \
33 expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}}
34 i.~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}}
36 pi.~decltype(int())(); // expected-error{{the type of object expression ('int *') does not match the type being destroyed ('decltype(int())' (aka 'int')) in pseudo-destructor expression}}
38 pi->~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}}
  /external/llvm/test/MC/ARM/
ldr-pseudo-obj-errors.s 7 @with the ldr pseudo. They are tested separately from parse errors because they
ldr-pseudo.s 1 @ This test has a partner (ldr-pseudo-darwin.s) that contains matching
2 @ tests for the ldr-pseudo on darwin targets. We need separate files
85 @ Check that symbols can be loaded using ldr pseudo
ldr-pseudo-darwin.s 1 @ This test has a partner (ldr-pseudo.s) that contains matching
2 @ tests for the ldr-pseudo on linux targets. We need separate files
85 @ Check that symbols can be loaded using ldr pseudo
  /external/chromium_org/third_party/openssl/openssl/crypto/rand/
md_rand.c 162 static int ssleay_rand_bytes(unsigned char *buf, int num, int pseudo);
334 static int ssleay_rand_bytes(unsigned char *buf, int num, int pseudo)
523 else if (pseudo)
539 /* pseudo-random bytes that are guaranteed to be unique but not
  /external/openssl/crypto/rand/
md_rand.c 162 static int ssleay_rand_bytes(unsigned char *buf, int num, int pseudo);
337 static int ssleay_rand_bytes(unsigned char *buf, int num, int pseudo)
538 else if (pseudo)
554 /* pseudo-random bytes that are guaranteed to be unique but not
  /external/lldb/scripts/
disasm-gdb-remote.pl 774 my $pseudo = 0;
780 elsif ($name eq "container-regs") { $pseudo = 1; }
784 if ($byte_size == 4) {push @$registers_aref, { name => $reg_name, info => $reg32_href , pseudo => $pseudo };}
785 elsif ($byte_size == 8) {push @$registers_aref, { name => $reg_name, info => $reg64_href , pseudo => $pseudo };}
786 elsif ($byte_size == 1) {push @$registers_aref, { name => $reg_name, info => $reg8_href , pseudo => $pseudo };}
787 elsif ($byte_size == 2) {push @$registers_aref, { name => $reg_name, info => $reg16_href , pseudo => $pseudo };}
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
RuleFeature.cpp 196 CSSSelector::PseudoType pseudo = selector.pseudoType(); local
197 if (pseudo == CSSSelector::PseudoHover || pseudo == CSSSelector::PseudoActive || pseudo == CSSSelector::PseudoFocus)
198 return &ensurePseudoInvalidationSet(pseudo);
501 void RuleFeatureSet::scheduleStyleInvalidationForPseudoChange(CSSSelector::PseudoType pseudo, Element& element)
503 if (RefPtrWillBeRawPtr<DescendantInvalidationSet> invalidationSet = m_pseudoInvalidationSets.get(pseudo))
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
inspectorSyntaxHighlight.css 64 .webkit-html-pseudo-element {
  /external/openssl/crypto/bn/
bn_rand.c 231 static int bn_rand_range(int pseudo, BIGNUM *r, const BIGNUM *range)
233 int (*bn_rand)(BIGNUM *, int, int, int) = pseudo ? BN_pseudo_rand : BN_rand;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_target.h 155 unsigned int pseudo : 1; member in struct:nv50_ir::Target::OpInfo
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target.h 155 unsigned int pseudo : 1; member in struct:nv50_ir::Target::OpInfo

Completed in 627 milliseconds

1 2 3 4 5 6 7