Home
last modified time | relevance | path

Searched refs:where (Results 1 – 25 of 5710) sorted by relevance

12345678910>>...229

/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/
Dvalues.pass.cpp46 void where(const T &) {} in where() function
73 where(E::word_size); in test1()
74 where(E::state_size); in test1()
75 where(E::shift_size); in test1()
76 where(E::mask_bits); in test1()
77 where(E::xor_mask); in test1()
78 where(E::tempering_u); in test1()
79 where(E::tempering_d); in test1()
80 where(E::tempering_s); in test1()
81 where(E::tempering_b); in test1()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/numerics/rand/rand.eng/rand.eng.mers/
Dvalues.pass.cpp45 void where(const T &) {} in where() function
72 where(E::word_size); in test1()
73 where(E::state_size); in test1()
74 where(E::shift_size); in test1()
75 where(E::mask_bits); in test1()
76 where(E::xor_mask); in test1()
77 where(E::tempering_u); in test1()
78 where(E::tempering_d); in test1()
79 where(E::tempering_s); in test1()
80 where(E::tempering_b); in test1()
[all …]
/external/pcre/src/
Dpcre2_config.c78 pcre2_config(uint32_t what, void *where) in pcre2_config() argument
80 if (where == NULL) /* Requests a length */ in pcre2_config()
118 *((uint32_t *)where) = PCRE2_BSR_ANYCRLF; in pcre2_config()
120 *((uint32_t *)where) = PCRE2_BSR_UNICODE; in pcre2_config()
125 *((uint32_t *)where) = 0 in pcre2_config()
139 *((uint32_t *)where) = MATCH_LIMIT_DEPTH; in pcre2_config()
143 *((uint32_t *)where) = HEAP_LIMIT; in pcre2_config()
148 *((uint32_t *)where) = 1; in pcre2_config()
150 *((uint32_t *)where) = 0; in pcre2_config()
158 return (int)(1 + ((where == NULL)? in pcre2_config()
[all …]
Dpcre2_pattern_info.c65 pcre2_pattern_info(const pcre2_code *code, uint32_t what, void *where) in pcre2_pattern_info() argument
69 if (where == NULL) /* Requests field length */ in pcre2_pattern_info()
124 *((uint32_t *)where) = re->overall_options; in pcre2_pattern_info()
128 *((uint32_t *)where) = re->compile_options; in pcre2_pattern_info()
132 *((uint32_t *)where) = re->top_backref; in pcre2_pattern_info()
136 *((uint32_t *)where) = re->bsr_convention; in pcre2_pattern_info()
140 *((uint32_t *)where) = re->top_bracket; in pcre2_pattern_info()
144 *((uint32_t *)where) = re->limit_depth; in pcre2_pattern_info()
149 *((uint32_t *)where) = re->extra_options; in pcre2_pattern_info()
153 *((uint32_t *)where) = ((re->flags & PCRE2_FIRSTSET) != 0)? 1 : in pcre2_pattern_info()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DBreakIterator.java613 public static BreakIterator getWordInstance(Locale where) in getWordInstance() argument
615 return getBreakInstance(ULocale.forLocale(where), KIND_WORD); in getWordInstance()
626 public static BreakIterator getWordInstance(ULocale where) in getWordInstance() argument
628 return getBreakInstance(where, KIND_WORD); in getWordInstance()
653 public static BreakIterator getLineInstance(Locale where) in getLineInstance() argument
655 return getBreakInstance(ULocale.forLocale(where), KIND_LINE); in getLineInstance()
667 public static BreakIterator getLineInstance(ULocale where) in getLineInstance() argument
669 return getBreakInstance(where, KIND_LINE); in getLineInstance()
694 public static BreakIterator getCharacterInstance(Locale where) in getCharacterInstance() argument
696 return getBreakInstance(ULocale.forLocale(where), KIND_CHARACTER); in getCharacterInstance()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DBreakIterator.java577 public static BreakIterator getWordInstance(Locale where) in getWordInstance() argument
579 return getBreakInstance(ULocale.forLocale(where), KIND_WORD); in getWordInstance()
589 public static BreakIterator getWordInstance(ULocale where) in getWordInstance() argument
591 return getBreakInstance(where, KIND_WORD); in getWordInstance()
614 public static BreakIterator getLineInstance(Locale where) in getLineInstance() argument
616 return getBreakInstance(ULocale.forLocale(where), KIND_LINE); in getLineInstance()
627 public static BreakIterator getLineInstance(ULocale where) in getLineInstance() argument
629 return getBreakInstance(where, KIND_LINE); in getLineInstance()
652 public static BreakIterator getCharacterInstance(Locale where) in getCharacterInstance() argument
654 return getBreakInstance(ULocale.forLocale(where), KIND_CHARACTER); in getCharacterInstance()
[all …]
/external/guava/guava-tests/test/com/google/common/reflect/
DTypeResolverTest.java40 assertEquals(String.class, new TypeResolver().where(t, String.class).resolveType(t)); in testWhere_typeVariableMapping()
47 String.class, new TypeResolver().where(t1, t2).where(t2, String.class).resolveType(t1)); in testWhere_indirectMapping()
53 assertEquals(t, resolver.where(t, t).resolveType(t)); in testWhere_typeVariableSelfMapping()
59 assertEquals(t, resolver.where(t, t).resolveType(t)); in testWhere_parameterizedSelfMapping()
65 assertEquals(t, resolver.where(t, t).resolveType(t)); in testWhere_genericArraySelfMapping()
71 String.class, resolver.where(String.class, String.class).resolveType(String.class)); in testWhere_rawClassSelfMapping()
77 assertEquals(t, resolver.where(t, t).resolveType(t)); in testWhere_wildcardSelfMapping()
82 TypeResolver resolver = new TypeResolver().where(t, String.class); in testWhere_duplicateMapping()
84 resolver.where(t, String.class); in testWhere_duplicateMapping()
93 assertEquals(t2, new TypeResolver().where(t1, t2).resolveType(t1)); in testWhere_recursiveMapping()
[all …]
/external/guava/android/guava-tests/test/com/google/common/reflect/
DTypeResolverTest.java40 assertEquals(String.class, new TypeResolver().where(t, String.class).resolveType(t)); in testWhere_typeVariableMapping()
47 String.class, new TypeResolver().where(t1, t2).where(t2, String.class).resolveType(t1)); in testWhere_indirectMapping()
53 assertEquals(t, resolver.where(t, t).resolveType(t)); in testWhere_typeVariableSelfMapping()
59 assertEquals(t, resolver.where(t, t).resolveType(t)); in testWhere_parameterizedSelfMapping()
65 assertEquals(t, resolver.where(t, t).resolveType(t)); in testWhere_genericArraySelfMapping()
71 String.class, resolver.where(String.class, String.class).resolveType(String.class)); in testWhere_rawClassSelfMapping()
77 assertEquals(t, resolver.where(t, t).resolveType(t)); in testWhere_wildcardSelfMapping()
82 TypeResolver resolver = new TypeResolver().where(t, String.class); in testWhere_duplicateMapping()
84 resolver.where(t, String.class); in testWhere_duplicateMapping()
93 assertEquals(t2, new TypeResolver().where(t1, t2).resolveType(t1)); in testWhere_recursiveMapping()
[all …]
/external/fonttools/Tests/misc/
DbezierTools_test.py28 (0, 0), (100, 100), where=50, isHorizontal=True
31 (0, 0), (100, 100), where=100, isHorizontal=True
34 (0, 0), (100, 100), where=0, isHorizontal=True
37 (0, 0), (100, 100), where=0, isHorizontal=False
40 (100, 0), (0, 0), where=50, isHorizontal=False
43 (0, 100), (0, 0), where=50, isHorizontal=True
46 (0, 100), (100, 100), where=50, isHorizontal=True
60 (0, 0), (50, 100), (100, 0), where=150, isHorizontal=False
63 (0, 0), (50, 100), (100, 0), where=50, isHorizontal=False
67 (0, 0), (50, 100), (100, 0), where=25, isHorizontal=False
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
DLocaleValidityChecker.java74 public boolean isValid(ULocale locale, Where where) { in isValid() argument
75 where.set(null, null); in isValid()
89 if (!isValid(Datatype.language, language, where)) { in isValid()
92 where.set(null, null); // for x, well-formed == valid in isValid()
97 if (!isValid(Datatype.script, script, where)) return false; in isValid()
98 if (!isValid(Datatype.region, region, where)) return false; in isValid()
101 if (!isValid(Datatype.variant, variant, where)) return false; in isValid()
112 if (!isValidU(locale, datatype, locale.getExtension(c), where)) return false; in isValid()
118 return where.set(Datatype.illegal, c+""); in isValid()
151 … private boolean isValidU(ULocale locale, Datatype datatype, String extensionString, Where where) { in isValidU() argument
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
DLocaleValidityChecker.java69 public boolean isValid(ULocale locale, Where where) { in isValid() argument
70 where.set(null, null); in isValid()
84 if (!isValid(Datatype.language, language, where)) { in isValid()
87 where.set(null, null); // for x, well-formed == valid in isValid()
92 if (!isValid(Datatype.script, script, where)) return false; in isValid()
93 if (!isValid(Datatype.region, region, where)) return false; in isValid()
96 if (!isValid(Datatype.variant, variant, where)) return false; in isValid()
107 if (!isValidU(locale, datatype, locale.getExtension(c), where)) return false; in isValid()
113 return where.set(Datatype.illegal, c+""); in isValid()
146 … private boolean isValidU(ULocale locale, Datatype datatype, String extensionString, Where where) { in isValidU() argument
[all …]
/external/javassist/src/main/javassist/bytecode/
DCodeIterator.java816 static byte[] insertGapCore0(byte[] code, int where, int gapLength, in insertGapCore0() argument
824 return insertGapCore1(code, where, gapLength, exclusive, etable, ca); in insertGapCore0()
828 return insertGapCore1(code, where, (gapLength + 3) & ~3, in insertGapCore0()
837 private static byte[] insertGapCore1(byte[] code, int where, int gapLength, in insertGapCore1() argument
844 insertGap2(code, where, gapLength, codeLength, newcode, exclusive); in insertGapCore1()
845 etable.shiftPc(where, gapLength, exclusive); in insertGapCore1()
849 na.shiftPc(where, gapLength, exclusive); in insertGapCore1()
854 va.shiftPc(where, gapLength, exclusive); in insertGapCore1()
860 vta.shiftPc(where, gapLength, exclusive); in insertGapCore1()
864 smt.shiftPc(where, gapLength, exclusive); in insertGapCore1()
[all …]
DStackMapTable.java822 void shiftPc(int where, int gapSize, boolean exclusive) in shiftPc() argument
825 new OffsetShifter(this, where, gapSize).parse(); in shiftPc()
826 new Shifter(this, where, gapSize, exclusive).doit(); in shiftPc()
830 int where, gap; field in StackMapTable.OffsetShifter
832 public OffsetShifter(StackMapTable smt, int where, int gap) { in OffsetShifter() argument
834 this.where = where; in OffsetShifter()
841 if (where <= data) in objectOrUninitialized()
848 int where, gap; field in StackMapTable.Shifter
853 public Shifter(StackMapTable smt, int where, int gap, boolean exclusive) { in Shifter() argument
856 this.where = where; in Shifter()
[all …]
/external/robolectric/sandbox/src/test/java/org/robolectric/testing/
DPony.java12 public String ride(String where) { in ride() argument
13 return "Whinny! You're on my " + where + "!"; in ride()
16 public static String prance(String where) { in prance() argument
17 return "I'm prancing to " + where + "!"; in prance()
20 public String saunter(String where) { in saunter() argument
21 return "Off I saunter to " + where + "!"; in saunter()
27 public String ride(String where) { in ride() argument
28 return "Fake whinny! You're on my " + where + "!"; in ride()
32 protected static String prance(String where) { in prance() argument
33 return "I'm shadily prancing to " + where + "!"; in prance()
/external/robolectric-shadows/sandbox/src/test/java/org/robolectric/testing/
DPony.java12 public String ride(String where) { in ride() argument
13 return "Whinny! You're on my " + where + "!"; in ride()
16 public static String prance(String where) { in prance() argument
17 return "I'm prancing to " + where + "!"; in prance()
20 public String saunter(String where) { in saunter() argument
21 return "Off I saunter to " + where + "!"; in saunter()
27 public String ride(String where) { in ride() argument
28 return "Fake whinny! You're on my " + where + "!"; in ride()
32 protected static String prance(String where) { in prance() argument
33 return "I'm shadily prancing to " + where + "!"; in prance()
/external/libcxx/test/std/re/re.regex/re.regex.const/
Dconstants.pass.cpp33 void where(const T &) {} in where() function
50 where(BR::icase); in test()
51 where(BR::nosubs); in test()
52 where(BR::optimize); in test()
53 where(BR::collate); in test()
54 where(BR::ECMAScript); in test()
55 where(BR::basic); in test()
56 where(BR::extended); in test()
57 where(BR::awk); in test()
58 where(BR::grep); in test()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/re/re.regex/re.regex.const/
Dconstants.pass.cpp32 void where(const T &) {} in where() function
49 where(BR::icase); in test()
50 where(BR::nosubs); in test()
51 where(BR::optimize); in test()
52 where(BR::collate); in test()
53 where(BR::ECMAScript); in test()
54 where(BR::basic); in test()
55 where(BR::extended); in test()
56 where(BR::awk); in test()
57 where(BR::grep); in test()
[all …]
/external/autotest/tko/
Ddb.py275 def _where_clause(self, where): argument
276 if not where:
279 if isinstance(where, dict):
282 for field, value in six.iteritems(where):
290 elif isinstance(where, six.string_types):
292 where_clause = where
294 elif isinstance(where, tuple):
296 where_clause, values = where
299 raise ValueError('Invalid "where" value: %r' % where)
305 def select(self, fields, table, where, distinct=False, group_by=None, argument
[all …]
Dfrontend.py78 def get_matrix_data(db_obj, x_axis, y_axis, where = None, argument
94 where=where, group_by=group_by, max_rows = MAX_RECORDS)
161 def tests(self, where = {}): argument
165 for key in where.keys():
167 values.append(where[key])
173 def select(klass, db, where = {}): argument
176 for row in db.select(','.join(fields), 'tko_machines', where):
191 def select(klass, db, where = {}): argument
193 rows = db.select(','.join(fields), 'tko_kernels', where)
208 def select(klass, db, where={}, distinct=False): argument
[all …]
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.sub/
Dvalues.pass.cpp34 void where(const T &) {} in where() function
51 where(E::word_size); in test1()
52 where(E::short_lag); in test1()
53 where(E::long_lag); in test1()
54 where(E::default_seed); in test1()
72 where(E::word_size); in test2()
73 where(E::short_lag); in test2()
74 where(E::long_lag); in test2()
75 where(E::default_seed); in test2()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/numerics/rand/rand.eng/rand.eng.sub/
Dvalues.pass.cpp33 void where(const T &) {} in where() function
50 where(E::word_size); in test1()
51 where(E::short_lag); in test1()
52 where(E::long_lag); in test1()
53 where(E::default_seed); in test1()
71 where(E::word_size); in test2()
72 where(E::short_lag); in test2()
73 where(E::long_lag); in test2()
74 where(E::default_seed); in test2()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
Dilist.h226 iterator insert(iterator where, pointer New) {
228 return base_list_type::insert(where, *New);
231 iterator insert(iterator where, const_reference New) {
232 return this->insert(where, new value_type(New));
235 iterator insertAfter(iterator where, pointer New) {
239 return insert(++where, New);
265 iterator erase(iterator where) {
266 this->deleteNode(remove(where));
267 return where;
322 template<class InIt> void insert(iterator where, InIt first, InIt last) {
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
Dilist.h241 iterator insert(iterator where, pointer New) {
243 return base_list_type::insert(where, *New);
246 iterator insert(iterator where, const_reference New) {
247 return this->insert(where, new value_type(New));
250 iterator insertAfter(iterator where, pointer New) {
254 return insert(++where, New);
280 iterator erase(iterator where) {
281 this->deleteNode(remove(where));
282 return where;
337 template<class InIt> void insert(iterator where, InIt first, InIt last) {
[all …]
/external/icu/icu4c/source/tools/icupkg/
Dicupkg.cpp56 FILE *where=isHelp ? stdout : stderr; in printUsage() local
58 fprintf(where, in printUsage()
67 fprintf(where, in printUsage()
76 fprintf(where, in printUsage()
83 fprintf(where, in printUsage()
91 fprintf(where, in printUsage()
97 fprintf(where, in printUsage()
106 fprintf(where, in printUsage()
114 fprintf(where, in printUsage()
118 fprintf(where, in printUsage()
[all …]
/external/cronet/third_party/icu/source/tools/icupkg/
Dicupkg.cpp56 FILE *where=isHelp ? stdout : stderr; in printUsage() local
58 fprintf(where, in printUsage()
67 fprintf(where, in printUsage()
76 fprintf(where, in printUsage()
83 fprintf(where, in printUsage()
91 fprintf(where, in printUsage()
97 fprintf(where, in printUsage()
106 fprintf(where, in printUsage()
114 fprintf(where, in printUsage()
118 fprintf(where, in printUsage()
[all …]

12345678910>>...229