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

1234567891011>>

/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/regress/
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/chromium_org/v8/test/mjsunit/es6/regress/
H A Dregress-2186.js39 var set = new Set;
40 set.add(ONE);
41 assertTrue(set.has(ONE));
42 assertTrue(set.has(ANOTHER_ONE));
45 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.cc52 CHECK(p != NULL); // insert is set!
95 IntSet set(hash);
96 CHECK_EQ(0, set.occupancy());
98 set.Insert(1);
99 set.Insert(2);
100 set.Insert(3);
101 CHECK_EQ(3, set.occupancy());
103 set.Insert(2);
104 set.Insert(3);
105 CHECK_EQ(3, set
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Ddeclarative_user_script_master.cc7 #include <set>
37 std::set<UserScript> set; local
38 set.insert(script);
39 loader_.AddScripts(set);
43 std::set<UserScript> set; local
44 set.insert(script);
45 loader_.RemoveScripts(set);
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DToken.as33 function set text(text:String):void;
36 function set type(ttype:int):void;
40 function set line(line:int):void;
44 function set charPositionInLine(pos:int):void;
47 function set channel(channel:int):void;
53 function set tokenIndex(index:int):void;
60 function set inputStream(input:CharStream):void;
/external/llvm/test/MC/Mips/
H A Dmips_gprel16.s22 .set nomips16
28 .set noreorder
29 .set nomacro
30 .set noat
36 .set at
37 .set macro
38 .set reorder
46 .set nomips16
52 .set noreorder
53 .set nomacr
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
H A Dreflectionhandler_unittest.py38 self.static_files_served = set()
39 self.errors_sent = set()
40 self.functions_run = set()
89 self.assert_handler_response(["/test.js"], set(["test.js"]), set(), set())
90 self.assert_handler_response(["/test.js", "/test.css", "/test.html"], set(["test.js", "test.html", "test.css"]), set(), set())
91 self.assert_handler_response(["/test.js", "/test.exe", "/testhtml"], set(["tes
[all...]

Completed in 629 milliseconds

1234567891011>>