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

<<61626364656667686970>>

  /external/chromium/net/socket/
socks_client_socket_pool.h 11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h"
13 #include "base/memory/ref_counted.h"
14 #include "base/memory/scoped_ptr.h"
15 #include "base/time.h"
16 #include "net/base/host_port_pair.h"
17 #include "net/base/host_resolver.h"
28 class SOCKSSocketParams : public base::RefCounted<SOCKSSocketParams> {
47 friend class base::RefCounted<SOCKSSocketParams>;
66 const base::TimeDelta& timeout_duration
    [all...]
ssl_client_socket_nss.h 17 #include "base/memory/scoped_ptr.h"
18 #include "base/synchronization/lock.h"
19 #include "base/threading/platform_thread.h"
20 #include "base/time.h"
21 #include "base/timer.h"
22 #include "net/base/cert_verify_result.h"
23 #include "net/base/completion_callback.h"
24 #include "net/base/host_port_pair.h"
25 #include "net/base/net_log.h"
26 #include "net/base/nss_memio.h
    [all...]
  /external/chromium/net/tools/dump_cache/
dump_cache.cc 11 #include "base/at_exit.h"
12 #include "base/command_line.h"
13 #include "base/process_util.h"
14 #include "base/string_util.h"
15 #include "base/stringprintf.h"
16 #include "base/win/scoped_handle.h"
87 new_program = base::StringPrintf(L"%ls%d", L"dump_cache_", version);
89 new_program = base::StringPrintf(L"dump_cache");
100 if (!base::LaunchApp(new_command_line, false, false, NULL)) {
113 base::AtExitManager at_exit_manager
    [all...]
  /external/chromium/third_party/libevent/
evutil.c 180 evutil_strtoll(const char *s, char **endptr, int base)
183 return (ev_int64_t)strtoll(s, endptr, base);
185 return (ev_int64_t)strtol(s, endptr, base);
187 /* XXXX on old versions of MS APIs, we only support base
190 if (base != 10)
201 return (ev_int64_t) _strtoi64(s, endptr, base);
  /external/chromium/webkit/glue/
webmediaplayer_impl.h 56 #include "base/memory/ref_counted.h"
57 #include "base/memory/scoped_ptr.h"
58 #include "base/message_loop.h"
59 #include "base/threading/thread.h"
60 #include "base/synchronization/lock.h"
61 #include "base/synchronization/waitable_event.h"
62 #include "media/base/filters.h"
63 #include "media/base/message_loop_factory.h"
64 #include "media/base/pipeline.h"
94 class Proxy : public base::RefCountedThreadSafe<Proxy>
    [all...]
  /external/freetype/src/base/
ftstream.c 36 const FT_Byte* base,
39 stream->base = (FT_Byte*) base;
145 FT_MEM_COPY( buffer, stream->base + pos, read_bytes );
182 FT_MEM_COPY( buffer, stream->base + stream->pos, read_bytes );
263 stream->base = (unsigned char*)ft_mem_qalloc( memory, count, &error );
267 if ( FT_QALLOC( stream->base, count ) )
272 stream->base, count );
279 FT_FREE( stream->base );
282 stream->cursor = stream->base;
    [all...]
  /external/iproute2/lib/
utils.c 32 int get_integer(int *val, const char *arg, int base)
39 res = strtol(arg, &ptr, base);
61 static int get_netmask(unsigned *val, const char *arg, int base)
65 if (!get_unsigned(val, arg, base))
81 int get_unsigned(unsigned *val, const char *arg, int base)
88 res = strtoul(arg, &ptr, base);
103 int get_jiffies(unsigned *jiffies, const char *arg, int base, int *raw)
115 res = strtoul(arg,&p,base);
159 int get_u64(__u64 *val, const char *arg, int base)
166 res = strtoull(arg, &ptr, base);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
CompactArray.java 76 int base = 0; local
83 base = index.length;
85 int[] tmp = new int[base + objArray.length];
88 //index = Arrays.copyOf(index, base+objArray.length);
93 index[base + j] = -1;
100 index[base + j] = i;
  /external/webkit/Source/JavaScriptCore/interpreter/
RegisterFile.h 45 frame by its offset from "base", the logical first entry in the register
46 file. The bottom-most register frame's offset from base is 0.
55 | -3 | -2 | -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | | | | | | <-- index relative to base
60 buffer base (frame 0) frame 1 frame 2
64 globals must appear at the beginning of the register file, shifting base
74 | -4 | -3 | -2 | -1 | 0 | 1 |< > <-- index relative to base
79 buffer base (frame 0)
81 As you can see, global offsets relative to base have stayed constant,
82 but base itself has moved. To keep up with possible changes to base,
176 void* base = m_reservation.base(); local
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
PropertySlot.h 56 explicit PropertySlot(const JSValue base)
57 : m_slotBase(base)
184 void setBase(JSValue base)
187 ASSERT(base);
188 m_slotBase = base;
  /frameworks/native/libs/binder/
MemoryHeapBase.cpp 94 status_t MemoryHeapBase::init(int fd, void *base, int size, int flags, const char* device)
100 mBase = base;
127 void* base = (uint8_t*)mmap(0, size, local
129 if (base == MAP_FAILED) {
135 //ALOGD("mmap(fd=%d, base=%p, size=%lu)", fd, base, size);
136 mBase = base;
158 //ALOGD("munmap(fd=%d, base=%p, size=%lu)", fd, mBase, mSize);
  /packages/apps/Gallery/src/com/android/camera/gallery/
BaseImageList.java 179 Uri base = mBaseUri; local
180 return Util.equals(base.getScheme(), uri.getScheme())
181 && Util.equals(base.getHost(), uri.getHost())
182 && Util.equals(base.getAuthority(), uri.getAuthority())
183 && Util.equals(base.getPath(), getPathWithoutId(uri));
  /system/core/libpixelflinger/codeflinger/
CodeCache.cpp 72 uint32_t* Assembly::base() const function in class:android::Assembly
159 const long base = long(assembly->base()); local
160 const long curr = base + long(assembly->size());
161 err = cacheflush(base, curr, 0);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
Dbg.stg 73 return base.AlreadyParsedRule(input, ruleIndex);
78 base.Memoize(input, ruleIndex, ruleStartIndex);
96 : base( input, state )
112 : base( input, dbg, state )
127 : base( input, dbg, state )
137 <@superClassRef>: base( input, dbg, new RecognizerSharedState() )<@end>
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
Dbg.stg 72 return base.AlreadyParsedRule(input, ruleIndex);
77 base.Memoize(input, ruleIndex, ruleStartIndex);
95 : base( input, state )
111 : base( input, dbg, state )
126 : base( input, dbg, state )
136 <@superClassRef>: base( input, dbg, new RecognizerSharedState() )<@end>
  /external/chromium/chrome/browser/debugger/
debugger_remote_service.cc 10 #include "base/json/json_reader.h"
11 #include "base/json/json_writer.h"
12 #include "base/string_number_conversions.h"
13 #include "base/utf_string_conversions.h"
14 #include "base/values.h"
59 scoped_ptr<Value> request(base::JSONReader::Read(message.content(), true));
89 base::StringToInt(destination, &tab_uid);
123 base::JSONWriter::Write(&response, false, &response_content);
159 base::IntToString(RESULT_OK).c_str(),
164 base::IntToString(tab_uid)
    [all...]
  /external/chromium/chrome/browser/policy/
cloud_policy_controller.cc 9 #include "base/logging.h"
10 #include "base/message_loop.h"
11 #include "base/rand_util.h"
12 #include "base/string_util.h"
54 // These are the base values for delays before retrying after an error. They
254 base::TimeDelta timestamp =
255 cache_->last_policy_refresh_time() - base::Time::UnixEpoch();
304 base::Time now(base::Time::NowFromSystemTime());
305 base::Time refresh_at
    [all...]
  /external/chromium/chrome/browser/
spellcheck_host_impl.cc 9 #include "base/file_util.h"
10 #include "base/logging.h"
11 #include "base/path_service.h"
12 #include "base/string_split.h"
13 #include "base/threading/thread_restrictions.h"
14 #include "base/utf_string_conversions.h"
24 #include "ui/base/l10n/l10n_util.h"
26 #include "base/metrics/histogram.h"
82 file_(base::kInvalidPlatformFileValue),
96 if (file_ != base::kInvalidPlatformFileValue
    [all...]
  /external/chromium/chrome/browser/task_manager/
task_manager_resource_providers.h 12 #include "base/basictypes.h"
13 #include "base/compiler_specific.h"
14 #include "base/process_util.h"
34 // Base class for various types of render process resources that provides common
38 TaskManagerRendererResource(base::ProcessHandle process,
43 virtual base::ProcessHandle GetProcess() const OVERRIDE;
65 base::ProcessHandle process_;
272 virtual base::ProcessHandle GetProcess() const OVERRIDE;
360 virtual base::ProcessHandle GetProcess() const OVERRIDE;
379 base::ProcessHandle process_handle_
    [all...]
  /external/chromium/net/base/
cert_verifier.cc 5 #include "net/base/cert_verifier.h"
7 #include "base/compiler_specific.h"
8 #include "base/message_loop.h"
9 #include "base/stl_util-inl.h"
10 #include "base/synchronization/lock.h"
11 #include "base/threading/worker_pool.h"
12 #include "net/base/net_errors.h"
13 #include "net/base/x509_certificate.h"
73 virtual base::Time Now() { return base::Time::Now();
    [all...]
  /external/chromium/webkit/glue/media/
simple_data_source.cc 7 #include "base/message_loop.h"
8 #include "base/process_util.h"
9 #include "media/base/filter_host.h"
10 #include "net/base/data_url.h"
11 #include "net/base/load_flags.h"
49 base::AutoLock auto_lock(lock_);
56 base::AutoLock auto_lock(lock_);
63 base::AutoLock auto_lock(lock_);
83 base::AutoLock auto_lock(lock_);
103 base::AutoLock auto_lock(lock_)
    [all...]
  /external/elfutils/libdw/
dwarf_getlocation.c 403 Dwarf_Addr base = (Dwarf_Addr) -1; local
423 if (begin == (Elf64_Addr) -1l) /* Base address entry. */
425 base = end;
426 if (unlikely (base == (Dwarf_Addr) -1))
436 if (begin == (Elf32_Addr) -1) /* Base address entry. */
438 base = end;
457 if (base == (Dwarf_Addr) -1)
459 /* Fetch the CU's base address. */
462 /* Find the base address of the compilation unit. It will
464 the base address could be overridden by DW_AT_entry_pc. It'
    [all...]
  /external/icu4c/layout/
ValueRecords.cpp 37 void ValueRecord::adjustPosition(ValueFormat valueFormat, const char *base, GlyphIterator &glyphIterator,
96 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
107 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
118 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
129 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
141 void ValueRecord::adjustPosition(le_int16 index, ValueFormat valueFormat, const char *base, GlyphIterator &glyphIterator,
200 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
211 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
222 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset);
233 const DeviceTable *dt = (const DeviceTable *) (base + dtOffset)
    [all...]
  /external/libxslt/libxslt/
imports.c 90 xmlChar *base = NULL; local
106 base = xmlNodeGetBase(style->doc, cur);
107 URI = xmlBuildURI(uriRef, base);
165 if (base != NULL)
166 xmlFree(base);
187 xmlChar *base = NULL; local
205 base = xmlNodeGetBase(style->doc, cur);
206 URI = xmlBuildURI(uriRef, base);
270 if (base != NULL)
271 xmlFree(base);
    [all...]
  /external/v8/test/mjsunit/regress/
regress-137.js 32 var base = strNum / 16; variable
34 var base = base - (rem / 16); // base is now HeapNumber with valid Smi value. variable
36 switch(base) {

Completed in 1524 milliseconds

<<61626364656667686970>>