HomeSort by relevance Sort by last modified time
    Searched refs:base (Results 726 - 750 of 5191) sorted by null

<<21222324252627282930>>

  /external/chromium/net/proxy/
proxy_config_service_linux.h 12 #include "base/basictypes.h"
13 #include "base/environment.h"
14 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h"
16 #include "base/message_loop.h"
17 #include "base/observer_list.h"
116 class Delegate : public base::RefCountedThreadSafe<Delegate> {
120 explicit Delegate(base::Environment* env_var_getter);
123 Delegate(base::Environment* env_var_getter,
157 friend class base::RefCountedThreadSafe<Delegate>
    [all...]
proxy_service.h 11 #include "base/gtest_prod_util.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/synchronization/waitable_event.h"
15 #include "base/threading/non_thread_safe.h"
16 #include "net/base/completion_callback.h"
17 #include "net/base/net_export.h"
18 #include "net/base/net_log.h"
19 #include "net/base/network_change_notifier.h"
38 class NET_EXPORT ProxyService : public base::RefCounted<ProxyService>
    [all...]
  /external/chromium/net/tools/flip_server/
balsa_headers_token_utils.cc 28 const base::StringPiece& key, BalsaHeaders* headers) {
57 const base::StringPiece& new_last_token = tokens[tokens.size() - 2];
68 const base::StringPiece& key,
69 const base::StringPiece& token) {
94 const base::StringPiece& key,
132 tokens->push_back(base::StringPiece(nws, start - nws));
137 tokens->push_back(base::StringPiece(nws, start - nws));
  /external/chromium/chrome/browser/net/
predictor.h 29 #include "base/gtest_prod_util.h"
30 #include "base/memory/ref_counted.h"
34 #include "net/base/host_port_pair.h"
50 class Predictor : public base::RefCountedThreadSafe<Predictor> {
59 base::TimeDelta max_queue_delay_ms, size_t max_concurrent,
139 friend class base::RefCountedThreadSafe<Predictor>;
201 static const base::TimeDelta kDurationBetweenTrimmings;
203 static const base::TimeDelta kDurationBetweenTrimmingIncrements;
224 base::TimeDelta GetResolutionDuration(const GURL& url) {
300 const base::TimeDelta max_dns_queue_delay_
    [all...]
url_info_unittest.cc 10 #include "base/threading/platform_thread.h"
11 #include "base/time.h"
15 using base::TimeDelta;
16 using base::TimeTicks;
49 base::TimeTicks before_resolution_complete = TimeTicks::Now();
70 base::PlatformThread::Sleep(25);
81 base::PlatformThread::Sleep(kMockExpirationTime + 20);
  /external/chromium/chrome/browser/webdata/
autofill_table.h 9 #include "base/gtest_prod_util.h"
10 #include "base/string16.h"
145 bool RemoveFormElementsAddedBetween(base::Time delete_begin,
146 base::Time delete_end,
152 base::Time delete_begin,
153 base::Time delete_end,
179 bool InsertPairIDAndDate(int64 pair_id, base::Time date_created);
193 std::vector<base::Time>* timestamps);
242 base::Time delete_begin,
243 base::Time delete_end
    [all...]
  /external/chromium/net/base/
host_cache.cc 5 #include "net/base/host_cache.h"
7 #include "base/logging.h"
8 #include "net/base/net_errors.h"
16 base::TimeTicks expiration)
26 base::TimeDelta success_entry_ttl,
27 base::TimeDelta failure_entry_ttl)
37 base::TimeTicks now) const {
56 base::TimeTicks now) {
61 base::TimeTicks expiration = now +
99 base::TimeDelta HostCache::success_entry_ttl() const
    [all...]
listen_socket_unittest.h 19 #include "base/basictypes.h"
20 #include "base/memory/scoped_ptr.h"
21 #include "base/message_loop.h"
22 #include "base/string_util.h"
23 #include "base/synchronization/condition_variable.h"
24 #include "base/synchronization/lock.h"
25 #include "base/threading/thread.h"
26 #include "net/base/listen_socket.h"
27 #include "net/base/net_util.h"
28 #include "net/base/winsock_init.h
    [all...]
  /external/doclava/src/com/google/doclava/
AttrTagInfo.java 44 AttrTagInfo(String name, String kind, String text, ContainerInfo base, SourcePositionInfo position) {
46 mBase = base;
48 parse(text, base, position);
51 void parse(String text, ContainerInfo base, SourcePositionInfo position) {
86 mDescrComment = new Comment(more, base, position);
106 public void makeHDF(Data data, String base) {
107 super.makeHDF(data, base);
114 public static void makeReferenceHDF(Data data, String base, AttrTagInfo[] tags) {
126 data.setValue(base + "." + i + ".name", t.mAttrInfo.name());
127 data.setValue(base + "." + i + ".href", t.mAttrInfo.htmlPage())
    [all...]
TodoFile.java 49 public static void setHDF(Data data, String base, SourcePositionInfo pos, String name,
51 data.setValue(base + ".pos", pos.toString());
52 data.setValue(base + ".name", name);
53 data.setValue(base + ".descr", descr);
83 String base = classBase + ".errors."; local
88 setHDF(data, base + errors, cl.position(), "&lt;class comment&gt;", MISSING);
98 setHDF(data, base + errors, m.position(), m.prettySignature(), MISSING);
112 setHDF(data, base + errors, m.position(), m.name() + m.prettySignature(), MISSING);
127 setHDF(data, base + errors, f.position(), f.name(), MISSING);
141 setHDF(data, base + errors, f.position(), f.name(), MISSING)
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainFractalGridTest.java 37 private FractalSum base; field in class:TerrainFractalGridTest
88 this.base = new FractalSum();
89 this.base.setRoughness(0.7f);
90 this.base.setFrequency(1.0f);
91 this.base.setAmplitude(1.0f);
92 this.base.setLacunarity(2.12f);
93 this.base.setOctaves(8);
94 this.base.setScale(0.02125f);
95 this.base.addModulator(new NoiseModulator() {
103 FilteredBasis ground = new FilteredBasis(this.base);
    [all...]
  /external/libsepol/tests/
test-deps.c 44 * 11 type in base optional.
45 * 12 attribute in base optional.
46 * 13 object class / perm in base optional.
47 * 14 boolean in base optional.
48 * 15 role in base optional.
59 * 19 large number of dependencies in a module with a more complex base.
92 /* To test linking we need 1 base per link test and in
98 if (test_load_policy(&bases_met[i], POLICY_BASE, mls, "test-deps", "base-metreq.conf"))
103 if (test_load_policy(&bases_notmet[i], POLICY_BASE, mls, "test-deps", "base-notmetreq.conf"))
130 * req_met boolean indicating whether the base policy meets th
140 policydb_t *base; local
222 policydb_t *base; local
    [all...]
  /external/qemu/hw/
goldfish_device.c 56 if(dev->base == 0) {
57 dev->base = goldfish_free_base;
76 //printf("goldfish_add_device: %s, base %x %x, irq %d %d\n",
77 // dev->name, dev->base, dev->size, dev->irq, dev->irq_count);
97 cpu_register_physical_memory(dev->base, dev->size, iomemtype);
128 return s->current ? s->current->base : 0;
197 .base = 0x10001000,
204 void goldfish_device_init(qemu_irq *pic, uint32_t base, uint32_t size, uint32_t irq, uint32_t irq_count)
207 goldfish_free_base = base;
211 int goldfish_device_bus_init(uint32_t base, uint32_t irq
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Parser.cs 45 : base() {
51 : base(state) // share the state object with another parser
57 base.Reset(); // reset all recognizer state variables
107 base.TraceIn(ruleName, ruleIndex, input.LT(1));
112 base.TraceOut(ruleName, ruleIndex, input.LT(1));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugParser.cs 56 : base(input is DebugTokenStream ? input : new DebugTokenStream(input, dbg), state) {
61 : base(input is DebugTokenStream ? input : new DebugTokenStream(input, null), state) {
94 base.BeginResync();
99 base.EndResync();
111 base.ReportError(e);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Parser.cs 47 : base()
54 : base(state) // share the state object with another parser
61 base.Reset(); // reset all recognizer state variables
122 base.TraceIn( ruleName, ruleIndex, input.LT( 1 ) );
128 base.TraceOut( ruleName, ruleIndex, input.LT( 1 ) );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugParser.cs 58 : base( input is DebugTokenStream ? input : new DebugTokenStream( input, dbg ), state )
64 : base( input is DebugTokenStream ? input : new DebugTokenStream( input, null ), state )
104 base.BeginResync();
110 base.EndResync();
125 base.ReportError(e);
  /external/chromium/chrome/browser/automation/
automation_tab_tracker.cc 46 base::Time::Now();
51 std::map<NavigationController*, base::Time>::iterator iter =
65 base::Time AutomationTabTracker::GetLastNavigationTime(int handle) {
69 std::map<NavigationController*, base::Time>::const_iterator iter =
75 return base::Time();
  /external/chromium/chrome/browser/
background_mode_manager_win.cc 5 #include "base/base_paths.h"
6 #include "base/command_line.h"
7 #include "base/file_path.h"
8 #include "base/logging.h"
9 #include "base/path_service.h"
10 #include "base/task.h"
11 #include "base/utf_string_conversions.h"
12 #include "base/win/registry.h"
18 #include "ui/base/l10n/l10n_util.h"
39 base::win::RegKey read_key(kBackgroundModeRegistryRootKey
    [all...]
browsing_data_database_helper.h 12 #include "base/callback.h"
13 #include "base/memory/scoped_ptr.h"
14 #include "base/synchronization/lock.h"
29 : public base::RefCountedThreadSafe<BrowsingDataDatabaseHelper> {
40 base::Time last_modified);
51 base::Time last_modified;
73 friend class base::RefCountedThreadSafe<BrowsingDataDatabaseHelper>;
153 mutable base::Lock lock_;
browsing_data_indexed_db_helper.h 12 #include "base/callback.h"
13 #include "base/file_path.h"
14 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h"
16 #include "base/synchronization/lock.h"
17 #include "base/time.h"
30 : public base::RefCountedThreadSafe<BrowsingDataIndexedDBHelper> {
42 base::Time last_modified);
56 base::Time last_modified;
76 friend class base::RefCountedThreadSafe<BrowsingDataIndexedDBHelper>
    [all...]
browsing_data_local_storage_helper.h 12 #include "base/callback.h"
13 #include "base/file_path.h"
14 #include "base/memory/scoped_ptr.h"
15 #include "base/synchronization/lock.h"
16 #include "base/time.h"
30 : public base::RefCountedThreadSafe<BrowsingDataLocalStorageHelper> {
43 base::Time last_modified);
57 base::Time last_modified;
75 friend class base::RefCountedThreadSafe<BrowsingDataLocalStorageHelper>;
140 mutable base::Lock lock_
    [all...]
shell_integration.h 11 #include "base/basictypes.h"
12 #include "base/memory/ref_counted.h"
13 #include "base/string16.h"
22 namespace base { namespace
87 static std::string GetDesktopName(base::Environment* env);
89 static bool GetDesktopShortcutTemplate(base::Environment* env,
146 : public base::RefCountedThreadSafe<DefaultBrowserWorker> {
160 friend class base::RefCountedThreadSafe<DefaultBrowserWorker>;
  /external/chromium/chrome/browser/sessions/
base_session_service.h 9 #include "base/basictypes.h"
10 #include "base/callback.h"
11 #include "base/file_path.h"
12 #include "base/memory/ref_counted.h"
22 namespace base { namespace
31 public base::RefCountedThreadSafe<BaseSessionService> {
79 friend class base::RefCountedThreadSafe<BaseSessionService>;
87 base::Thread* backend_thread() const { return backend_thread_; }
175 base::Thread* backend_thread_;
  /external/chromium/chrome/common/
print_messages.h 8 #include "base/values.h"
9 #include "base/shared_memory.h"
75 IPC_STRUCT_MEMBER(base::SharedMemoryHandle, metafile_data_handle)
91 IPC_STRUCT_MEMBER(base::SharedMemoryHandle, metafile_data_handle)
159 base::SharedMemoryHandle /* renderer handle */,
160 base::SharedMemoryHandle /* browser handle */)
199 base::FileDescriptor /* temp file fd */,

Completed in 809 milliseconds

<<21222324252627282930>>