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

1 2 3 4 5 6 7 8 91011>>

  /external/iproute2/etc/iproute2/
group 1 # device group names
  /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...]
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...]
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...]
  /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...]
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...]
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...]
  /external/clang/test/VFS/Inputs/
use-external-names.yaml 3 'use-external-names': EXTERNAL_NAMES,
4 'roots': [{ 'type': 'file', 'name': 'OUT_DIR/external-names.h',
5 'external-contents': 'INPUT_DIR/external-names.h'
  /dalvik/dx/tests/108-string-annotation/
expected.txt 7 names
11 names
  /external/llvm/test/TableGen/
foreach.td 20 class A<list<string> names> {
21 list<string> Names = names;
24 class B<list<string> names> : A<!foreach(Decls.name, names, !strconcat(Decls.name, ", Sr."))>;
26 class C<list<string> names> : A<!foreach(Decls.name, names, !strconcat(Decls.name, ", Jr."))>;
28 class D<list<string> names> : A<!foreach(Decls.name, names, !subst("NAME", "John Smith", Decls.name))>;
30 class Names {
    [all...]
lisp.td 4 // CHECK-NEXT: list<string> names = ["Jeffrey Sinclair"];
11 // CHECK-NEXT: list<string> names = ["Tom", "Dick", "Harry"];
19 list<string> names = n;
31 class NameList<list<string> Names> :
32 List<Names>, CAR<!head(Names)>, CDR<!tail(Names), !empty(!tail(Names))>;
  /external/deqp/targets/ios/
ios.cmake 9 find_library(GLES2_LIBRARY NAMES OpenGLES PATHS /System/Library/Frameworks)
10 find_library(FOUNDATION_LIBRARY NAMES Foundation PATHS /System/Library/Frameworks)
11 find_library(UIKIT_LIBRARY NAMES UIKit PATHS /System/Library/Frameworks)
12 find_library(COREGRAPHICS_LIBRARY NAMES CoreGraphics PATHS /System/Library/Frameworks)
13 find_library(QUARTZCORE_LIBRARY NAMES QuartzCore PATHS /System/Library/Frameworks)
  /external/libvpx/libvpx/third_party/libwebm/
AUTHORS.TXT 0 # Names should be added to this file like so:
  /external/libyuv/files/
AUTHORS 0 # Names should be added to this file like so:
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
AUTHORS.TXT 0 # Names should be added to this file like so:
  /external/mesa3d/src/glsl/glcpp/tests/
086-reserved-macro-names.c.expected 1 0:1(10): preprocessor error: Macro names containing "__" are reserved.
3 0:2(9): preprocessor error: Macro names starting with "GL_" are reserved.
5 0:3(9): preprocessor error: Macro names containing "__" are reserved.
  /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...]
  /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 nul
    [all...]
  /external/jetty/src/resources/org/eclipse/jetty/servlet/jmx/
FilterMapping-mbean.properties 4 servletNames: RO:Servlet Names
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp 41 /// InitLibcallNames - Set default libcall names.
43 static void InitLibcallNames(const char **Names, const Triple &TT) {
44 Names[RTLIB::SHL_I16] = "__ashlhi3";
45 Names[RTLIB::SHL_I32] = "__ashlsi3";
46 Names[RTLIB::SHL_I64] = "__ashldi3";
47 Names[RTLIB::SHL_I128] = "__ashlti3";
48 Names[RTLIB::SRL_I16] = "__lshrhi3";
49 Names[RTLIB::SRL_I32] = "__lshrsi3";
50 Names[RTLIB::SRL_I64] = "__lshrdi3";
51 Names[RTLIB::SRL_I128] = "__lshrti3"
    [all...]
  /external/clang/test/CodeGen/
2002-02-13-TypeVarNameCollision.c 3 /* This testcase causes a symbol table collision. Type names and variable
4 * names should be in distinct namespaces
  /external/clang/test/SemaObjC/
arc-setter-property-match.m 15 - (void)setNames1:(NSArray *)names;
17 - (void)setNames2:(NSArray *)names;
19 - (void)setNames3:(__strong NSArray *)names;
21 - (void)setNames4:(__strong NSArray *)names;
27 - (void)setNames1:(NSArray *)names {}
29 - (void)setNames2:(NSArray *)names {}
31 - (void)setNames3:(__strong NSArray *)names {}
33 - (void)setNames4:(__strong NSArray *)names {}
  /external/libunwind/src/coredump/
README 4 Files with names starting with _UCD_ are substantially changed
7 Files which still have _UPT_... names are either verbiatim copies
  /frameworks/base/test-runner/src/junit/runner/
TestCollector.java 7 * Collects Test class names to be presented
14 * Returns an enumeration of Strings with qualified class names
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib/cmake/PulseAudio/
PulseAudioConfig.cmake 9 find_library(PULSEAUDIO_LIBRARY NAMES pulse libpulse HINTS "/usr/lib/x86_64-linux-gnu")
10 find_library(PULSEAUDIO_MAINLOOP_LIBRARY NAMES pulse-mainloop-glib libpulse-mainloop-glib HINTS "/usr/lib/x86_64-linux-gnu")

Completed in 3806 milliseconds

1 2 3 4 5 6 7 8 91011>>