HomeSort by relevance Sort by last modified time
    Searched refs:set (Results 26 - 50 of 8780) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/sync/syncable/
metahandle_set.h 13 typedef std::set<int64> MetahandleSet;
  /external/chromium_org/tools/gyp/test/mac/cflags/
ccfile.cc 2 #error CFLAG should not be set
6 #error CCFLAG should be set
ccfile_withcflags.cc 2 #error CFLAG should be set
6 #error CCFLAG should be set
cfile.c 2 #error CFLAG should be set
6 #error CCFLAG should not be set
cppfile.cpp 2 #error CFLAG should not be set
6 #error CCFLAG should be set
cppfile_withcflags.cpp 2 #error CFLAG should be set
6 #error CCFLAG should be set
cxxfile.cxx 2 #error CFLAG should not be set
6 #error CCFLAG should be set
cxxfile_withcflags.cxx 2 #error CFLAG should be set
6 #error CCFLAG should be set
  /external/libogg/win32/VS6/
build_ogg_dynamic.bat 4 if .%SRCROOT%==. set SRCROOT=i:\xiph
6 set OLDPATH=%PATH%
7 set OLDINCLUDE=%INCLUDE%
8 set OLDLIB=%LIB%
12 set INCLUDE=%INCLUDE%;%SRCROOT%\ogg\include
16 set PATH=%OLDPATH%
17 set INCLUDE=%OLDINCLUDE%
18 set LIB=%OLDLIB%
build_ogg_dynamic_debug.bat 4 if .%SRCROOT%==. set SRCROOT=i:\xiph
6 set OLDPATH=%PATH%
7 set OLDINCLUDE=%INCLUDE%
8 set OLDLIB=%LIB%
12 set INCLUDE=%INCLUDE%;%SRCROOT%\ogg\include
16 set PATH=%OLDPATH%
17 set INCLUDE=%OLDINCLUDE%
18 set LIB=%OLDLIB%
build_ogg_static.bat 4 if .%SRCROOT%==. set SRCROOT=i:\xiph
6 set OLDPATH=%PATH%
7 set OLDINCLUDE=%INCLUDE%
8 set OLDLIB=%LIB%
12 set INCLUDE=%INCLUDE%;%SRCROOT%\ogg\include
16 set PATH=%OLDPATH%
17 set INCLUDE=%OLDINCLUDE%
18 set LIB=%OLDLIB%
build_ogg_static_debug.bat 4 if .%SRCROOT%==. set SRCROOT=i:\xiph
6 set OLDPATH=%PATH%
7 set OLDINCLUDE=%INCLUDE%
8 set OLDLIB=%LIB%
12 set INCLUDE=%INCLUDE%;%SRCROOT%\ogg\include
16 set PATH=%OLDPATH%
17 set INCLUDE=%OLDINCLUDE%
18 set LIB=%OLDLIB%
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/
version.pass.cpp 10 // <set>
12 #include <set>
  /external/apache-harmony/support/src/test/java/tests/support/
Support_SetTest.java 20 import java.util.Set;
24 Set<Integer> set; // must contain only the Integers 0 to 99 field in class:Support_SetTest
30 public Support_SetTest(String p1, Set<Integer> s) {
32 set = s;
38 assertTrue("Set Test - Adding a duplicate element changed the set",
39 !set.add(new Integer(50)));
40 assertTrue("Set Test - Removing an element did not change the set", se
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_SetTest.java 20 import java.util.Set;
24 Set<Integer> set; // must contain only the Integers 0 to 99 field in class:Support_SetTest
30 public Support_SetTest(String p1, Set<Integer> s) {
32 set = s;
38 assertTrue("Set Test - Adding a duplicate element changed the set",
39 !set.add(new Integer(50)));
40 assertTrue("Set Test - Removing an element did not change the set", se
    [all...]
  /external/proguard/src/proguard/classfile/visitor/
MemberCollector.java 26 import java.util.Set;
38 private final Set set; field in class:MemberCollector
43 * @param set the <code>Set</code> in which all method names/descriptor
46 public MemberCollector(Set set)
48 this.set = set;
57 set.add(member.getName(clazz) + member.getDescriptor(clazz))
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicColorMatrix.java 70 * Set the color matrix which will be applied to each cell of
73 * @param m The 4x4 matrix to set.
81 * Set the color matrix which will be applied to each cell of the image.
82 * This will set the alpha channel to be a copy.
84 * @param m The 3x3 matrix to set.
92 * Set a color matrix to convert from RGB to luminance. The alpha channel
98 mMatrix.set(0, 0, 0.299f);
99 mMatrix.set(1, 0, 0.587f);
100 mMatrix.set(2, 0, 0.114f);
101 mMatrix.set(0, 1, 0.299f)
    [all...]
  /external/chromium_org/v8/test/cctest/
test-hashmap.cc 51 CHECK(p != NULL); // insert is set!
94 IntSet set(hash);
95 CHECK_EQ(0, set.occupancy());
97 set.Insert(1);
98 set.Insert(2);
99 set.Insert(3);
100 CHECK_EQ(3, set.occupancy());
102 set.Insert(2);
103 set.Insert(3);
104 CHECK_EQ(3, set.occupancy())
    [all...]
  /external/v8/test/cctest/
test-hashmap.cc 51 CHECK(p != NULL); // insert is set!
94 IntSet set(hash);
95 CHECK_EQ(0, set.occupancy());
97 set.Insert(1);
98 set.Insert(2);
99 set.Insert(3);
100 CHECK_EQ(3, set.occupancy());
102 set.Insert(2);
103 set.Insert(3);
104 CHECK_EQ(3, set.occupancy())
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
TreeSetTest.java 30 TreeSet<String> set = new TreeSet<String>(); local
31 new SerializationTester<TreeSet<String>>(set, s).test();
39 TreeSet<String> set = new TreeSet<String>(String.CASE_INSENSITIVE_ORDER); local
40 set.add("a");
41 set.add("b");
42 new SerializationTester<NavigableSet<String>>(set, s) {
54 TreeSet<String> set = new TreeSet<String>(String.CASE_INSENSITIVE_ORDER); local
55 set.add("a");
56 set.add("b");
57 set.add("c")
72 TreeSet<String> set = new TreeSet<String>(String.CASE_INSENSITIVE_ORDER); local
111 TreeSet<String> set = new TreeSet<String>(); local
127 TreeSet<String> set = new TreeSet<String>(String.CASE_INSENSITIVE_ORDER); local
    [all...]
  /bionic/libc/include/sys/
cdefs_elf.h 139 #define __link_set_make_entry(set, sym) \
140 static void const * const __link_set_##set##_sym_##sym \
141 __section("link_set_" #set) __used = &sym
142 #define __link_set_make_entry2(set, sym, n) \
143 static void const * const __link_set_##set##_sym_##sym##_##n \
144 __section("link_set_" #set) __used = &sym[n]
146 #define __link_set_make_entry(set, sym) \
147 extern void const * const __link_set_##set##_sym_##sym
148 #define __link_set_make_entry2(set, sym, n) \
149 extern void const * const __link_set_##set##_sym_##sym##_##
    [all...]
  /development/ndk/platforms/android-3/include/sys/
cdefs_elf.h 124 #define __link_set_make_entry(set, sym) \
125 static void const * const __link_set_##set##_sym_##sym \
126 __section("link_set_" #set) __used = &sym
127 #define __link_set_make_entry2(set, sym, n) \
128 static void const * const __link_set_##set##_sym_##sym##_##n \
129 __section("link_set_" #set) __used = &sym[n]
131 #define __link_set_make_entry(set, sym) \
132 extern void const * const __link_set_##set##_sym_##sym
133 #define __link_set_make_entry2(set, sym, n) \
134 extern void const * const __link_set_##set##_sym_##sym##_##
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimToken.cs 61 set
72 set
84 set
95 set
106 set
118 set
130 set
142 set
153 set
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/sys/
cdefs_elf.h 120 #define __link_set_make_entry(set, sym) \
121 static void const * const __link_set_##set##_sym_##sym \
122 __section("link_set_" #set) __used = &sym
123 #define __link_set_make_entry2(set, sym, n) \
124 static void const * const __link_set_##set##_sym_##sym##_##n \
125 __section("link_set_" #set) __used = &sym[n]
127 #define __link_set_make_entry(set, sym) \
128 extern void const * const __link_set_##set##_sym_##sym
129 #define __link_set_make_entry2(set, sym, n) \
130 extern void const * const __link_set_##set##_sym_##sym##_##
    [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/sys/
cdefs_elf.h 120 #define __link_set_make_entry(set, sym) \
121 static void const * const __link_set_##set##_sym_##sym \
122 __section("link_set_" #set) __used = &sym
123 #define __link_set_make_entry2(set, sym, n) \
124 static void const * const __link_set_##set##_sym_##sym##_##n \
125 __section("link_set_" #set) __used = &sym[n]
127 #define __link_set_make_entry(set, sym) \
128 extern void const * const __link_set_##set##_sym_##sym
129 #define __link_set_make_entry2(set, sym, n) \
130 extern void const * const __link_set_##set##_sym_##sym##_##
    [all...]

Completed in 745 milliseconds

12 3 4 5 6 7 8 91011>>