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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/tests/108-string-annotation/
Fizmo.java 18 String[] names(); method in interface:Fizmo
Blort.java 23 @Fizmo(names = "gruesome")
28 @Fizmo(names = {"awful", "awesome"})
  /libcore/expectations/
taggedtests.txt 9 names: [
knownfailures.txt 7 names: [
37 names: [
78 names: [
97 names: [
107 names: [
155 names: [
173 names: [
203 names: [
214 names: [
228 names:
    [all...]
  /external/stlport/test/unit/
insert_test.cpp 36 deque<char const*> names(array1, array1 + 3);
37 deque<char const*>::iterator i = names.begin() + 2;
39 insert_iterator<deque <char const*> > itd(names, i);
40 itd = copy(array2, array2 + 3, insert_iterator<deque <char const*> >(names, i));
42 CPPUNIT_ASSERT( !strcmp(names[0], "laurie") );
43 CPPUNIT_ASSERT( !strcmp(names[1], "jennifer") );
44 CPPUNIT_ASSERT( !strcmp(names[2], "amanda") );
45 CPPUNIT_ASSERT( !strcmp(names[3], "saskia") );
46 CPPUNIT_ASSERT( !strcmp(names[4], "carrie") );
47 CPPUNIT_ASSERT( !strcmp(names[5], "leisa") )
    [all...]
finsert_test.cpp 34 deque<char const*> names; local
35 front_insert_iterator<deque<char const*> > fit(names);
36 fit = copy(array, array + 3, front_insert_iterator<deque <char const*> >(names));
38 CPPUNIT_ASSERT(names[0]==array[2]);
39 CPPUNIT_ASSERT(names[1]==array[1]);
40 CPPUNIT_ASSERT(names[2]==array[0]);
43 CPPUNIT_ASSERT(names[3]==array[2]);
44 CPPUNIT_ASSERT(names[4]==array[1]);
45 CPPUNIT_ASSERT(names[5]==array[0]);
52 deque<char const*> names; local
    [all...]
binsert_test.cpp 33 vector<const char*> names; local
34 back_insert_iterator<vector<const char*> > bit(names);
37 CPPUNIT_ASSERT(!strcmp(names[0],array[0]));
38 CPPUNIT_ASSERT(!strcmp(names[1],array[1]));
39 CPPUNIT_ASSERT(!strcmp(names[2],array[2]));
42 CPPUNIT_ASSERT(!strcmp(names[3],array[0]));
43 CPPUNIT_ASSERT(!strcmp(names[4],array[1]));
44 CPPUNIT_ASSERT(!strcmp(names[5],array[2]));
49 vector<const char*> names; local
50 copy(array, array + 3, back_inserter(names));
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
insert_test.cpp 36 deque<char const*> names(array1, array1 + 3);
37 deque<char const*>::iterator i = names.begin() + 2;
39 insert_iterator<deque <char const*> > itd(names, i);
40 itd = copy(array2, array2 + 3, insert_iterator<deque <char const*> >(names, i));
42 CPPUNIT_ASSERT( !strcmp(names[0], "laurie") );
43 CPPUNIT_ASSERT( !strcmp(names[1], "jennifer") );
44 CPPUNIT_ASSERT( !strcmp(names[2], "amanda") );
45 CPPUNIT_ASSERT( !strcmp(names[3], "saskia") );
46 CPPUNIT_ASSERT( !strcmp(names[4], "carrie") );
47 CPPUNIT_ASSERT( !strcmp(names[5], "leisa") )
    [all...]
finsert_test.cpp 34 deque<char const*> names; local
35 front_insert_iterator<deque<char const*> > fit(names);
36 fit = copy(array, array + 3, front_insert_iterator<deque <char const*> >(names));
38 CPPUNIT_ASSERT(names[0]==array[2]);
39 CPPUNIT_ASSERT(names[1]==array[1]);
40 CPPUNIT_ASSERT(names[2]==array[0]);
43 CPPUNIT_ASSERT(names[3]==array[2]);
44 CPPUNIT_ASSERT(names[4]==array[1]);
45 CPPUNIT_ASSERT(names[5]==array[0]);
52 deque<char const*> names; local
    [all...]
binsert_test.cpp 33 vector<const char*> names; local
34 back_insert_iterator<vector<const char*> > bit(names);
37 CPPUNIT_ASSERT(!strcmp(names[0],array[0]));
38 CPPUNIT_ASSERT(!strcmp(names[1],array[1]));
39 CPPUNIT_ASSERT(!strcmp(names[2],array[2]));
42 CPPUNIT_ASSERT(!strcmp(names[3],array[0]));
43 CPPUNIT_ASSERT(!strcmp(names[4],array[1]));
44 CPPUNIT_ASSERT(!strcmp(names[5],array[2]));
49 vector<const char*> names; local
50 copy(array, array + 3, back_inserter(names));
    [all...]
  /ndk/tests/device/test-stlport/unit/
insert_test.cpp 36 deque<char const*> names(array1, array1 + 3);
37 deque<char const*>::iterator i = names.begin() + 2;
39 insert_iterator<deque <char const*> > itd(names, i);
40 itd = copy(array2, array2 + 3, insert_iterator<deque <char const*> >(names, i));
42 CPPUNIT_ASSERT( !strcmp(names[0], "laurie") );
43 CPPUNIT_ASSERT( !strcmp(names[1], "jennifer") );
44 CPPUNIT_ASSERT( !strcmp(names[2], "amanda") );
45 CPPUNIT_ASSERT( !strcmp(names[3], "saskia") );
46 CPPUNIT_ASSERT( !strcmp(names[4], "carrie") );
47 CPPUNIT_ASSERT( !strcmp(names[5], "leisa") )
    [all...]
finsert_test.cpp 34 deque<char const*> names; local
35 front_insert_iterator<deque<char const*> > fit(names);
36 fit = copy(array, array + 3, front_insert_iterator<deque <char const*> >(names));
38 CPPUNIT_ASSERT(names[0]==array[2]);
39 CPPUNIT_ASSERT(names[1]==array[1]);
40 CPPUNIT_ASSERT(names[2]==array[0]);
43 CPPUNIT_ASSERT(names[3]==array[2]);
44 CPPUNIT_ASSERT(names[4]==array[1]);
45 CPPUNIT_ASSERT(names[5]==array[0]);
52 deque<char const*> names; local
    [all...]
binsert_test.cpp 33 vector<const char*> names; local
34 back_insert_iterator<vector<const char*> > bit(names);
37 CPPUNIT_ASSERT(!strcmp(names[0],array[0]));
38 CPPUNIT_ASSERT(!strcmp(names[1],array[1]));
39 CPPUNIT_ASSERT(!strcmp(names[2],array[2]));
42 CPPUNIT_ASSERT(!strcmp(names[3],array[0]));
43 CPPUNIT_ASSERT(!strcmp(names[4],array[1]));
44 CPPUNIT_ASSERT(!strcmp(names[5],array[2]));
49 vector<const char*> names; local
50 copy(array, array + 3, back_inserter(names));
    [all...]
  /external/chromium_org/ui/compositor/test/
test_layers.cc 13 std::string names; local
16 if (!names.empty())
17 names += " ";
18 names += (*it)->name();
20 return names;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
NameFileFilter.java 50 private final String[] names; field in class:NameFileFilter
75 this.names = new String[] {name};
80 * Constructs a new case-sensitive name file filter for an array of names.
85 * @param names the names to allow, must not be null
86 * @throws IllegalArgumentException if the names array is null
88 public NameFileFilter(String[] names) {
89 this(names, null);
93 * Constructs a new name file filter for an array of names specifying case-sensitivity.
98 * @param names the names to allow, must not be null
    [all...]
  /external/e2fsprogs/e2fsck/
profile_helpers.h 13 (profile_t profile, const char *const *names, char ***ret_values);
19 (profile_t profile, const char **names, char ***ret_names);
22 (profile_t profile, const char **names, char ***ret_names);
  /external/chromium_org/gpu/command_buffer/common/
gles2_cmd_format.cc 18 static const char* const names[] = { local
27 return (index < arraysize(names)) ? names[index] : "*unknown-command*";
  /external/gcc-demangle/
test.c 3 const char* names[4] = {"_ZN6SkPath4IterC1ERKS_b", variable
18 printf ("%s -> %s\n", names[i], demangle_symbol_name(names[i]));
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
inv_sysfs_utils.h 62 int inv_read_raw(const struct inv_sysfs_names_s *names, long *data,
64 int inv_read_temperature_raw(const struct inv_sysfs_names_s *names, short *data,
66 int inv_read_fifo_rate(const struct inv_sysfs_names_s *names, short *data);
67 int inv_read_power_state(const struct inv_sysfs_names_s *names, char *data);
68 int inv_read_scale(const struct inv_sysfs_names_s *names, float *data);
69 int inv_read_temp_scale(const struct inv_sysfs_names_s *names, short *data);
70 int inv_read_temp_offset(const struct inv_sysfs_names_s *names, short *data);
71 int inv_write_fifo_rate(const struct inv_sysfs_names_s *names, short data);
72 int inv_write_buffer_enable(const struct inv_sysfs_names_s *names, char data);
73 int inv_write_power_state(const struct inv_sysfs_names_s *names, char data)
    [all...]
  /frameworks/base/core/java/android/view/
KeyEvent.java 657 SparseArray<String> names = KEYCODE_SYMBOLIC_NAMES; local
    [all...]
  /system/core/toolbox/
getsebool.c 18 char **names; local
31 rc = security_get_boolean_names(&names, &len);
34 "%s: Unable to get boolean names: %s\n",
57 names = malloc(sizeof(char *) * len);
58 if (!names) {
63 names[i] = strdup(argv[i + 1]);
64 if (!names[i]) {
73 active = security_get_boolean_active(names[i]);
78 names[i]);
82 pending = security_get_boolean_pending(names[i])
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
GeneralNames.java 13 private final GeneralName[] names; field in class:GeneralNames
51 this.names = new GeneralName[] { name };
56 GeneralName[] names)
58 this.names = names;
64 this.names = new GeneralName[seq.size()];
68 names[i] = GeneralName.getInstance(seq.getObjectAt(i));
74 GeneralName[] tmp = new GeneralName[names.length];
76 System.arraycopy(names, 0, tmp, 0, names.length)
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
AnnotationEncodedSubValue.java 46 public final StringIdItem[] names; field in class:AnnotationEncodedSubValue
57 names = new StringIdItem[in.readUnsignedLeb128()];
58 values = new EncodedValue[names.length];
60 for (int i=0; i<names.length; i++) {
61 names[i] = dexFile.StringIdsSection.getItemByIndex(in.readUnsignedLeb128());
67 * Constructs a new <code>AnnotationEncodedValue</code> with the given values. names and values must be the same
70 * @param names An array of the names of the elements of the annotation
73 public AnnotationEncodedSubValue(TypeIdItem annotationType, StringIdItem[] names, EncodedValue[] values) {
75 if (names.length != values.length)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
Axis.java 182 /** The names of the axes for diagnostic purposes. */
183 private static final String[] names = field in class:Axis
213 return names[index];
217 return names.length;
  /external/proguard/src/proguard/obfuscate/
DictionaryNameFactory.java 27 * This <code>NameFactory</code> generates names that are read from a
38 private final List names; field in class:DictionaryNameFactory
46 * @param file the file from which the names can be read.
47 * @param nameFactory the name factory from which names will be retrieved
48 * if the list of read names has been exhausted.
53 this.names = new ArrayList();
81 // Add the completed name to the list of names, if it's
84 if (!names.contains(name))
86 names.add(name);
126 * @param nameFactory the name factory from which names will b
    [all...]

Completed in 606 milliseconds

1 2 3 4 5 6 7 8 91011>>