Searched refs:base (Results 1 - 25 of 4161) sorted by relevance

1234567891011>>

/external/chromium-trace/trace-viewer/src/
H A Ddeps.js10 base.addModuleDependency(
13 base.addModuleDependency(
16 base.addModuleDependency(
19 base.addModuleStylesheet(
22 base.addModuleDependency(
25 base.addModuleDependency(
28 base.addModuleDependency(
31 base.addModuleDependency(
34 base.addModuleDependency(
37 base
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-137.js32 var base = strNum / 16; variable
34 var base = base - (rem / 16); // base is now HeapNumber with valid Smi value. variable
36 switch(base) {
/external/libsepol/tests/
H A Dtest-linker-cond-map.h24 extern void base_cond_tests(policydb_t * base);
25 extern void module_cond_tests(policydb_t * base);
H A Dtest-linker-types.h24 extern void base_type_tests(policydb_t * base);
25 extern void module_type_tests(policydb_t * base);
H A Dtest-linker-types.c39 * - type in base, no modules
40 * - type in base optional, no modules
41 * - type a in base, b in module
42 * - type a in base optional, b in module
43 * - type a in base, b in module optional
44 * - type a in base optional, b in module optional
45 * - attr in base, no modules
46 * - attr in base optional, no modules
47 * - attr a in base, b in module
48 * - attr a in base optiona
125 base_type_tests(policydb_t * base) argument
163 module_type_tests(policydb_t * base) argument
[all...]
H A Dtest-linker-roles.h26 extern void base_role_tests(policydb_t * base);
27 extern void module_role_tests(policydb_t * base);
/external/chromium/base/
H A Dmessage_pump.cc5 #include "base/message_pump.h"
7 namespace base { namespace
15 } // namespace base
H A Dspin_wait.h19 #include "base/threading/platform_thread.h"
20 #include "base/time.h"
35 SPIN_FOR_TIMEDELTA_OR_UNTIL_TRUE(base::TimeDelta::FromSeconds(1), \
39 base::TimeTicks start = base::TimeTicks::Now(); \
40 const base::TimeDelta kTimeout = delta; \
42 if (kTimeout < base::TimeTicks::Now() - start) { \
43 EXPECT_LE((base::TimeTicks::Now() - start).InMilliseconds(), \
47 base::PlatformThread::Sleep(50); \
H A Dbase_paths.cc5 #include "base/base_paths.h"
7 #include "base/file_path.h"
8 #include "base/file_util.h"
9 #include "base/path_service.h"
11 namespace base { namespace
18 case base::DIR_EXE:
19 PathService::Get(base::FILE_EXE, &cur);
22 case base::DIR_MODULE:
23 PathService::Get(base::FILE_MODULE, &cur);
26 case base
[all...]
H A Datomic_sequence_num.h9 #include "base/atomicops.h"
10 #include "base/basictypes.h"
12 namespace base { namespace
17 explicit AtomicSequenceNumber(base::LinkerInitialized x) { /* seq_ is 0 */ }
21 base::subtle::NoBarrier_AtomicIncrement(&seq_, 1) - 1);
25 base::subtle::Atomic32 seq_;
29 } // namespace base
H A Dbase_paths_mac.h9 // This file declares Mac-specific path keys for the base module.
13 namespace base { namespace
23 } // namespace base
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-recursive.cpp3 class base { }; class
5 template <class T> class foo : public base {
/external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
H A Dset-href-attribute-prevents-rebase.js1 description('Tests that when an href attribute is set, the href is no longer subject to updates to the document base URI.');
4 var base = document.createElement('base'); variable
5 document.head.appendChild(base);
8 debug("Search attribute, update document base URI without attribute having been set");
9 base.href = "http://old_base/";
11 base.href = "http://new_base/";
14 debug("Search attribute, update document base URI after attribute has been set");
15 base.href = "http://old_base/";
18 base
[all...]
/external/bison/lib/
H A Dstripslash.c35 char *base = base_name (file); local
36 char *base_lim = base + base_len (base);
/external/chromium/base/synchronization/
H A Dcancellation_flag.cc5 #include "base/synchronization/cancellation_flag.h"
7 #include "base/logging.h"
9 namespace base { namespace
15 base::subtle::Release_Store(&flag_, 1);
19 return base::subtle::Acquire_Load(&flag_) != 0;
22 } // namespace base
/external/chromium/chrome/common/
H A Dtime_format.h11 #include "base/string16.h"
15 namespace base { namespace
28 static string16 TimeElapsed(const base::TimeDelta& delta);
31 static string16 TimeRemaining(const base::TimeDelta& delta);
34 static string16 TimeRemainingShort(const base::TimeDelta& delta);
49 static string16 RelativeDate(const base::Time& time,
50 const base::Time* optional_midnight_today);
/external/chromium/net/base/
H A Dasn1_util.h9 #include "base/string_piece.h"
33 bool ParseElement(base::StringPiece* in,
35 base::StringPiece* out,
40 bool GetElement(base::StringPiece* in,
42 base::StringPiece* out);
48 bool ExtractSPKIFromDERCert(base::StringPiece cert,
49 base::StringPiece* spki_out);
H A Ddnssec_keyset.h11 #include "base/string_piece.h"
24 bool AddKey(const base::StringPiece& dnskey);
32 bool CheckSignature(const base::StringPiece& name,
33 const base::StringPiece& zone,
34 const base::StringPiece& signature,
36 const std::vector<base::StringPiece>& rrdatas);
40 static uint16 DNSKEYToKeyID(const base::StringPiece& dnskey);
48 base::StringPiece signature_algorithm,
49 base::StringPiece signature,
50 base
[all...]
H A Ddns_reload_timer.cc5 #include "net/base/dns_reload_timer.h"
8 #include "base/lazy_instance.h"
9 #include "base/threading/thread_local_storage.h"
10 #include "base/time.h"
35 const base::TimeDelta kRetryTime = base::TimeDelta::FromSeconds(1);
36 base::TimeTicks now = base::TimeTicks::Now();
37 base::TimeTicks* timer_ptr =
38 static_cast<base
[all...]
H A Ddnssec_chain_verifier.h12 #include "base/string_piece.h"
40 const base::StringPiece& chain);
55 const std::vector<base::StringPiece>& rrdatas() const;
62 ParseTLSTXTRecord(base::StringPiece rrdata);
65 static unsigned MatchingLabels(base::StringPiece a,
66 base::StringPiece b);
73 bool VariableLength16(base::StringPiece*);
74 bool ReadName(base::StringPiece*);
76 bool ReadAheadEntryKey(base::StringPiece*);
77 bool ReadAheadKey(base
[all...]
/external/chromium/chrome/common/net/
H A Dnet_resource_provider.h9 namespace base { namespace
16 base::StringPiece NetResourceProvider(int key);
/external/chromium/crypto/
H A Dmac_security_services_lock.h9 namespace base { namespace
21 base::Lock& GetMacSecurityServicesLock();
/external/chromium/net/socket/
H A Dclient_socket_pool_histograms.h11 #include "base/memory/ref_counted.h"
12 #include "base/time.h"
14 namespace base { namespace
26 void AddRequestTime(base::TimeDelta time) const;
27 void AddUnusedIdleTime(base::TimeDelta time) const;
28 void AddReusedIdleTime(base::TimeDelta time) const;
31 base::Histogram* socket_type_;
32 base::Histogram* request_time_;
33 base::Histogram* unused_idle_time_;
34 base
[all...]
/external/v8/test/mjsunit/
H A Dtoint32.js86 var base = Math.pow(2, 64); variable
87 assertEquals(0, toInt32(base + 0));
88 assertEquals(0, toInt32(base + 1117));
89 assertEquals(4096, toInt32(base + 2234));
90 assertEquals(4096, toInt32(base + 3351));
91 assertEquals(4096, toInt32(base + 4468));
92 assertEquals(4096, toInt32(base + 5585));
93 assertEquals(8192, toInt32(base + 6702));
94 assertEquals(8192, toInt32(base + 7819));
95 assertEquals(8192, toInt32(base
[all...]
/external/chromium/base/allocator/
H A Dallocator_shim.h8 namespace base { namespace
17 } // namespace base.

Completed in 1456 milliseconds

1234567891011>>