Searched refs:set (Results 51 - 75 of 9433) sorted by relevance

1234567891011>>

/external/chromium_org/sync/syncable/
H A Dmetahandle_set.h8 #include <set>
15 typedef std::set<int64> MetahandleSet;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-128146.js29 Object.defineProperty({},"foo",{set:function(){},configurable:false});
H A Dregress-omit-checks.js41 function set(b) { function
46 set(b1);
47 set(b2);
48 %OptimizeFunctionOnNextCall(set);
49 set(b3);
52 Object.defineProperty(a, "z", {set:function(v) { called = true; }});
53 set(b4);
/external/llvm/test/MC/MachO/
H A Ddarwin-x86_64-diff-reloc-assign-2.s20 .set L_var3, .
21 .set L_var4, .
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSFontFaceTest.cpp17 CSSFontFace::UnicodeRangeSet set(ranges);
18 EXPECT_TRUE(set.isEntireRange());
19 EXPECT_EQ(0u, set.size());
20 EXPECT_FALSE(set.intersectsWith(String()));
21 EXPECT_TRUE(set.intersectsWith(String("a")));
22 EXPECT_TRUE(set.intersectsWith(String(hiraganaA)));
29 CSSFontFace::UnicodeRangeSet set(ranges);
30 EXPECT_FALSE(set.isEntireRange());
31 EXPECT_FALSE(set.intersectsWith(String()));
32 EXPECT_FALSE(set
[all...]
/external/ceres-solver/internal/ceres/miniglog/glog/
H A Dlogging.cc35 // This is the set of log sinks. This must be in a separate library to ensure
37 std::set<google::LogSink *> log_sinks_global;
/external/chromium_org/third_party/angle/src/
H A Dcopy_compiler_dll.bat2 set _arch=%1
3 set _arch=%_arch:Win32=x86%
/external/chromium_org/tools/gyp/test/mac/cflags/
H A Dccfile.cc2 #error CFLAG should not be set
6 #error CCFLAG should be set
H A Dccfile_withcflags.cc2 #error CFLAG should be set
6 #error CCFLAG should be set
H A Dcfile.c2 #error CFLAG should be set
6 #error CCFLAG should not be set
H A Dcppfile.cpp2 #error CFLAG should not be set
6 #error CCFLAG should be set
H A Dcppfile_withcflags.cpp2 #error CFLAG should be set
6 #error CCFLAG should be set
H A Dcxxfile.cxx2 #error CFLAG should not be set
6 #error CCFLAG should be set
H A Dcxxfile_withcflags.cxx2 #error CFLAG should be set
6 #error CCFLAG should be set
/external/libcxx/test/containers/associative/set/
H A Dversion.pass.cpp10 // <set>
12 #include <set>
/external/libogg/win32/VS6/
H A Dbuild_ogg_dynamic.bat4 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%
H A Dbuild_ogg_dynamic_debug.bat4 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%
H A Dbuild_ogg_static.bat4 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%
H A Dbuild_ogg_static_debug.bat4 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%
/external/ltrace/testsuite/lib/
H A Dcompiler.c43 set compiler_info "unknown" ;
48 set compiler_info [join {gcc __GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__} -]
50 set compiler_info [join {gcc __GNUC__ __GNUC_MINOR__ "unknown"} -]
57 set need_a_set [regsub -all {\.} [join {xlc __xlc__} -] - compiler_info]
H A Dcompiler.cc31 set compiler_info "unknown" ;
36 set compiler_info [join {gcc __GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__} -]
38 set compiler_info [join {gcc __GNUC__ __GNUC_MINOR__ "unknown"} -]
44 set compiler_info [join {xlc++ __IBMCPP__} -]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_SetTest.java24 Set<Integer> set; // must contain only the Integers 0 to 99 field in class:Support_SetTest
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", set
44 !set.contains(new Integer(50)));
45 set.add(new Integer(50));
46 new Support_CollectionTest("", set).runTest();
/external/chromium_org/v8/test/mjsunit/harmony/regress/
H A Dregress-2186.js41 var set = new Set;
42 set.add(ONE);
43 assertTrue(set.has(ONE));
44 assertTrue(set.has(ANOTHER_ONE));
47 map.set(ONE, 23);
/external/proguard/src/proguard/classfile/visitor/
H A DMemberCollector.java38 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) argument
48 this.set = set;
57 set.add(member.getName(clazz) + member.getDescriptor(clazz));
/external/chromium_org/v8/test/cctest/
H A Dtest-hashmap.cc51 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
[all...]

Completed in 691 milliseconds

1234567891011>>