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

1 2 3 4 5 6 7 8 91011>>

  /external/robolectric-shadows/sandbox/src/test/java/org/robolectric/testing/
Pony.java 12 public String ride(String where) {
13 return "Whinny! You're on my " + where + "!";
16 public static String prance(String where) {
17 return "I'm prancing to " + where + "!";
20 public String saunter(String where) {
21 return "Off I saunter to " + where + "!";
27 public String ride(String where) {
28 return "Fake whinny! You're on my " + where + "!";
32 protected static String prance(String where) {
33 return "I'm shadily prancing to " + where + "!"
    [all...]
  /external/syslinux/gpxe/src/arch/x86/include/gpxe/
pcidirect.h 26 extern void pcidirect_prepare ( struct pci_device *pci, int where );
43 * @v where Location within PCI configuration space
49 unsigned int where,
51 pcidirect_prepare ( pci, where );
52 *value = inb ( PCIDIRECT_CONFIG_DATA + ( where & 3 ) );
60 * @v where Location within PCI configuration space
66 unsigned int where,
68 pcidirect_prepare ( pci, where );
69 *value = inw ( PCIDIRECT_CONFIG_DATA + ( where & 2 ) );
77 * @v where Location within PCI configuration spac
    [all...]
pcibios.h 39 * @v where Location within PCI configuration space
45 unsigned int where,
50 rc = pcibios_read ( pci, PCIBIOS_READ_CONFIG_BYTE | where, &tmp );
59 * @v where Location within PCI configuration space
65 unsigned int where,
70 rc = pcibios_read ( pci, PCIBIOS_READ_CONFIG_WORD | where, &tmp );
79 * @v where Location within PCI configuration space
85 unsigned int where,
87 return pcibios_read ( pci, PCIBIOS_READ_CONFIG_DWORD | where, value );
94 * @v where Location within PCI configuration spac
    [all...]
  /external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/
values.pass.cpp 46 void where(const T &) {} function
73 where(E::word_size);
74 where(E::state_size);
75 where(E::shift_size);
76 where(E::mask_bits);
77 where(E::xor_mask);
78 where(E::tempering_u);
79 where(E::tempering_d);
80 where(E::tempering_s);
81 where(E::tempering_b)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.eng/rand.eng.mers/
values.pass.cpp 46 void where(const _Tp &) {} function
73 where(E::word_size);
74 where(E::state_size);
75 where(E::shift_size);
76 where(E::mask_bits);
77 where(E::xor_mask);
78 where(E::tempering_u);
79 where(E::tempering_d);
80 where(E::tempering_s);
81 where(E::tempering_b)
    [all...]
  /external/pcre/dist2/src/
pcre2_config.c 64 /* If where is NULL, the length of memory required is returned.
68 where where to put the information
72 PCRE2_ERROR_BADOPTION if "where" not recognized
77 pcre2_config(uint32_t what, void *where)
79 if (where == NULL) /* Requests a length */
113 *((uint32_t *)where) = PCRE2_BSR_ANYCRLF;
115 *((uint32_t *)where) = PCRE2_BSR_UNICODE;
121 *((uint32_t *)where) = 1;
123 *((uint32_t *)where) = 0
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES3/
PVRTgles3Ext.cpp 77 GLubyte *where, *terminator; local
80 where = (GLubyte *) strchr(extension, ' ');
81 if (where || *extension == '\0')
90 where = (GLubyte *) strstr((const char *) start, extension);
91 if (!where)
93 terminator = where + strlen(extension);
94 if (where == start || *(where - 1) == ' ')
  /toolchain/binutils/binutils-2.27/gas/
output-file.h 21 void output_file_append (char *where, long length, char *filename);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
march-err-2.s 1 ; Test unsupported ARCH in -march=ARCH, where there's an option
  /external/curl/src/
tool_cb_see.h 28 int tool_ftruncate64(int fd, curl_off_t where);
31 #define ftruncate(fd,where) tool_ftruncate64(fd,where)
  /external/valgrind/memcheck/tests/
mempool.c 16 char *where; member in struct:_level_list
24 char *where; member in struct:_pool
39 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE,
44 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE);
49 (void) VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE);
65 l->where = p->where;
66 VALGRIND_CREATE_MEMPOOL(l->where, REDZONE_SIZE, 0);
74 VALGRIND_DESTROY_MEMPOOL(l->where);
75 (void) VALGRIND_MAKE_MEM_NOACCESS(l->where, p->where-l->where)
101 char *where; local
    [all...]
mempool2.c 19 char *where; member in struct:_level_list
27 char *where; member in struct:_pool
42 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE,
47 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE);
52 (void) VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE);
68 l->where = p->where;
69 VALGRIND_CREATE_MEMPOOL(l->where, REDZONE_SIZE, 0);
77 VALGRIND_DESTROY_MEMPOOL(l->where);
78 (void) VALGRIND_MAKE_MEM_NOACCESS(l->where, p->where-l->where)
104 char *where; local
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/support/win32/
support.h 110 unsigned long where; local
115 if (_BitScanForward64(&where, mask))
116 return static_cast<int>(where);
120 if (_BitScanForward(&where, static_cast<unsigned long>(mask)))
121 return static_cast<int>(where);
123 if (_BitScanForward(&where, static_cast<unsigned long>(mask >> 32)))
124 return static_cast<int>(where + 32); // Create a bit offset from the LSB.
131 unsigned long where; local
134 if (_BitScanForward(&where, mask))
135 return static_cast<int>(where);
151 unsigned long where; local
171 unsigned long where; local
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/support/win32/
support.h 110 unsigned long where; local
115 if (_BitScanForward64(&where, mask))
116 return static_cast<int>(where);
120 if (_BitScanForward(&where, static_cast<unsigned long>(mask)))
121 return static_cast<int>(where);
123 if (_BitScanForward(&where, static_cast<unsigned long>(mask >> 32)))
124 return static_cast<int>(where + 32); // Create a bit offset from the LSB.
131 unsigned long where; local
134 if (_BitScanForward(&where, mask))
135 return static_cast<int>(where);
151 unsigned long where; local
171 unsigned long where; local
    [all...]
  /external/libcxx/test/std/re/re.regex/re.regex.const/
constants.pass.cpp 33 void where(const T &) {} function
50 where(BR::icase);
51 where(BR::nosubs);
52 where(BR::optimize);
53 where(BR::collate);
54 where(BR::ECMAScript);
55 where(BR::basic);
56 where(BR::extended);
57 where(BR::awk);
58 where(BR::grep)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.regex/re.regex.const/
constants.pass.cpp 33 void where(const _Tp &) {} function
50 where(BR::icase);
51 where(BR::nosubs);
52 where(BR::optimize);
53 where(BR::collate);
54 where(BR::ECMAScript);
55 where(BR::basic);
56 where(BR::extended);
57 where(BR::awk);
58 where(BR::grep)
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/
pci_io.h 62 * @v where Location within PCI configuration space
66 int pci_read_config_byte ( struct pci_device *pci, unsigned int where,
73 * @v where Location within PCI configuration space
77 int pci_read_config_word ( struct pci_device *pci, unsigned int where,
84 * @v where Location within PCI configuration space
88 int pci_read_config_dword ( struct pci_device *pci, unsigned int where,
95 * @v where Location within PCI configuration space
99 int pci_write_config_byte ( struct pci_device *pci, unsigned int where,
106 * @v where Location within PCI configuration space
110 int pci_write_config_word ( struct pci_device *pci, unsigned int where,
    [all...]
  /external/syslinux/gpxe/src/include/gpxe/efi/
efi_pci.h 50 * @v where Location within PCI configuration space
56 unsigned int where,
59 EFIPCI_LOCATION ( where, EFIPCI_WIDTH_BYTE ),
67 * @v where Location within PCI configuration space
73 unsigned int where,
76 EFIPCI_LOCATION ( where, EFIPCI_WIDTH_WORD ),
84 * @v where Location within PCI configuration space
90 unsigned int where,
93 EFIPCI_LOCATION ( where, EFIPCI_WIDTH_DWORD ),
101 * @v where Location within PCI configuration spac
    [all...]
  /hardware/intel/img/psb_video/src/
tng_enc_trace.h 59 #define CONFIG_CMD(bus,device_fn,where) \
60 (0x80000000|((bus&0xff) << 16)|((device_fn&0xff) << 8)|((where&0xff) & ~3))
62 static inline unsigned long pci_get_long(int bus,int device_fn, int where)
64 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8);
68 static inline int pci_set_long(int bus,int device_fn, int where,unsigned long value)
70 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8);
75 static inline int pci_get_short(int bus,int device_fn, int where)
77 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8);
78 return inw(0xCFC + (where&2));
82 static inline int pci_set_short(int bus,int device_fn, int where,unsigned short value
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
ITokenSource`1.cs 37 where T : IToken
  /external/icu/android_icu4j/src/main/java/android/icu/text/
FilteredBreakIteratorBuilder.java 40 * @param where the locale.
44 public static final FilteredBreakIteratorBuilder getInstance(Locale where) {
45 return new SimpleFilteredSentenceBreakIterator.Builder(where);
55 * @param where the locale.
59 public static final FilteredBreakIteratorBuilder getInstance(ULocale where) {
60 return new SimpleFilteredSentenceBreakIterator.Builder(where);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
FilteredBreakIteratorBuilder.java 39 * @param where the locale.
44 public static final FilteredBreakIteratorBuilder getInstance(Locale where) {
45 return new SimpleFilteredSentenceBreakIterator.Builder(where);
55 * @param where the locale.
60 public static final FilteredBreakIteratorBuilder getInstance(ULocale where) {
61 return new SimpleFilteredSentenceBreakIterator.Builder(where);
  /external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.sub/
values.pass.cpp 34 void where(const T &) {} function
51 where(E::word_size);
52 where(E::short_lag);
53 where(E::long_lag);
54 where(E::default_seed);
72 where(E::word_size);
73 where(E::short_lag);
74 where(E::long_lag);
75 where(E::default_seed);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/numerics/rand/rand.eng/rand.eng.sub/
values.pass.cpp 34 void where(const _Tp &) {} function
51 where(E::word_size);
52 where(E::short_lag);
53 where(E::long_lag);
54 where(E::default_seed);
72 where(E::word_size);
73 where(E::short_lag);
74 where(E::long_lag);
75 where(E::default_seed);
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
BreakIterator.java 37 * <li>getLineInstance() returns a BreakIterator that locates positions where it is
453 * @param where A locale specifying the language of the text to be
458 public static BreakIterator getWordInstance(Locale where)
460 return getBreakInstance(where, KIND_WORD);
465 * @param where A locale specifying the language of the text to be
470 public static BreakIterator getWordInstance(ULocale where)
472 return getBreakInstance(where.toLocale(), KIND_WORD);
491 * @param where A Locale specifying the language of the text being broken.
496 public static BreakIterator getLineInstance(Locale where)
498 return getBreakInstance(where, KIND_LINE)
    [all...]

Completed in 1487 milliseconds

1 2 3 4 5 6 7 8 91011>>