HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 876 - 900 of 1449) sorted by null

<<31323334353637383940>>

  /external/chromium/base/win/
pe_image.cc 8 #include "base/win/pe_image.h"
10 namespace base { namespace
15 #error This code is not tested on x64. Please make sure all the base unit tests\
164 return functions + ordinal - exports->Base;
233 *ordinal = ordinals[lower - names] + static_cast<WORD>(exports->Base);
265 UINT ordinal_base = exports->Base;
312 PIMAGE_BASE_RELOCATION base = reinterpret_cast<PIMAGE_BASE_RELOCATION>( local
318 while (base->SizeOfBlock) {
319 PWORD reloc = reinterpret_cast<PWORD>(base + 1);
320 UINT num_relocs = (base->SizeOfBlock - sizeof(IMAGE_BASE_RELOCATION))
    [all...]
  /external/chromium/chrome/browser/task_manager/
task_manager.h 14 #include "base/basictypes.h"
15 #include "base/gtest_prod_util.h"
16 #include "base/memory/ref_counted.h"
17 #include "base/memory/singleton.h"
18 #include "base/observer_list.h"
19 #include "base/process_util.h"
20 #include "base/string16.h"
21 #include "base/timer.h"
31 namespace base { namespace
62 virtual base::ProcessHandle GetProcess() const = 0
    [all...]
  /external/chromium/chrome/browser/webdata/
web_data_service.h 14 #include "base/file_path.h"
15 #include "base/memory/ref_counted.h"
16 #include "base/synchronization/lock.h"
19 #include "base/task.h"
20 #include "base/time.h"
43 namespace base { namespace
175 : public base::RefCountedThreadSafe<WebDataService
389 void RemoveLoginsCreatedBetween(const base::Time& delete_begin,
390 const base::Time& delete_end);
393 void RemoveLoginsCreatedAfter(const base::Time& delete_begin)
    [all...]
  /external/chromium/net/url_request/
url_request.h 13 #include "base/debug/leak_tracker.h"
14 #include "base/logging.h"
15 #include "base/memory/linked_ptr.h"
16 #include "base/memory/ref_counted.h"
17 #include "base/string16.h"
18 #include "base/threading/non_thread_safe.h"
20 #include "net/base/completion_callback.h"
21 #include "net/base/load_states.h"
22 #include "net/base/net_export.h"
23 #include "net/base/net_log.h
29 namespace base { namespace
    [all...]
  /external/chromium/testing/gtest/test/
gtest-port_test.cc 62 class Base {
66 Base() : member_(0) {}
67 explicit Base(int n) : member_(n) {}
68 virtual ~Base() {}
75 class Derived : public Base {
77 explicit Derived(int n) : Base(n) {}
82 EXPECT_TRUE(&derived == ::testing::internal::ImplicitCast_<Base*>(&derived));
87 Base base = ::testing::internal::ImplicitCast_<Base>(derived) local
106 Base base = ::testing::internal::ImplicitCast_<Base>(castable); local
125 Base base = ::testing::internal::ImplicitCast_<Base>(const_castable); local
151 Base base = ::testing::internal::ImplicitCast_<Base>(castable); local
    [all...]
  /external/chromium/third_party/libevent/
event.c 135 gettime(struct event_base *base, struct timeval *tp)
137 if (base->tv_cache.tv_sec) {
138 *tp = base->tv_cache;
161 struct event_base *base = event_base_new(); local
163 if (base != NULL)
164 current_base = base;
166 return (base);
173 struct event_base *base; local
175 if ((base = calloc(1, sizeof(struct event_base))) == NULL)
179 gettime(base, &base->event_tv)
418 struct event_base *base = arg; local
702 struct event_base *base = ev->ev_base; local
780 struct event_base *base; local
    [all...]
  /external/chromium/third_party/libevent/test/
regress.gen.h 14 #define EVTAG_ASSIGN(msg, member, args...) (*(msg)->base->member##_assign)(msg, ## args)
15 #define EVTAG_GET(msg, member, args...) (*(msg)->base->member##_get)(msg, ## args)
17 #define EVTAG_ASSIGN(msg, member, ...) (*(msg)->base->member##_assign)(msg, ## __VA_ARGS__)
18 #define EVTAG_GET(msg, member, ...) (*(msg)->base->member##_get)(msg, ## __VA_ARGS__)
20 #define EVTAG_ADD(msg, member) (*(msg)->base->member##_add)(msg)
50 struct msg_access_ *base; member in struct:msg
105 struct kill_access_ *base; member in struct:kill
153 struct run_access_ *base; member in struct:run
regress_http.c 64 /* set if a test needs to call loopexit on a base */
65 static struct event_base *base; variable in typeref:struct:event_base
76 http_setup(short *pport, struct event_base *base)
83 myhttp = evhttp_new(base);
189 if (base)
190 event_base_loopexit(base, NULL);
1084 fprintf(stdout, "Testing HTTP Server Event Base: ");
1086 base = event_init();
1089 * create another bogus base - which is being used by all subsequen
1094 http = http_setup(&port, base);
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
httpbase.cc 33 #include "talk/base/win32.h"
38 #include "talk/base/common.h"
39 #include "talk/base/httpbase.h"
40 #include "talk/base/logging.h"
41 #include "talk/base/socket.h"
42 #include "talk/base/stringutils.h"
43 #include "talk/base/thread.h"
260 DocumentStream(HttpBase* base) : base_(base), error_(HE_DEFAULT) { }
311 HttpBase* base = Disconnect(http_error) local
336 HttpBase* base = Disconnect(HE_NONE); local
359 HttpBase* base = base_; local
    [all...]
  /external/clang/test/CXX/class.access/class.friend/
p1.cpp 143 // expected-error {{cannot cast 'test2::X' to its private base class 'test2::ilist_half_node'}}
346 struct base { struct in namespace:PR9103
351 struct cls: base {
353 base::foo();
  /external/clang/test/SemaCXX/
member-pointer.cpp 37 int F::*pdif = pdi1; // expected-error {{ambiguous conversion from pointer to member of base class 'A' to pointer to member of derived class 'F':}}
38 int G::*pdig = pdi1; // expected-error {{conversion from pointer to member of class 'A' to pointer to member of class 'G' via virtual base 'D' is not allowed}}
40 // Conversion to member of base.
153 struct Base {};
156 int test1(int Base::* p2m, X* object)
163 namespace base namespace in namespace:PR7176
173 typedef bool( base::Process::*Condition )();
176 { (void)(Condition) &base::Continuous::cond; }
  /external/dbus/dbus/
dbus-transport-socket.c 51 DBusTransport base; /**< Parent instance */ member in struct:DBusTransportSocket
    [all...]
  /external/gtest/test/
gtest-port_test.cc 64 class Base {
68 Base() : member_(0) {}
69 explicit Base(int n) : member_(n) {}
70 virtual ~Base() {}
77 class Derived : public Base {
79 explicit Derived(int n) : Base(n) {}
84 EXPECT_TRUE(&derived == ::testing::internal::ImplicitCast_<Base*>(&derived));
89 Base base = ::testing::internal::ImplicitCast_<Base>(derived) local
108 Base base = ::testing::internal::ImplicitCast_<Base>(castable); local
127 Base base = ::testing::internal::ImplicitCast_<Base>(const_castable); local
153 Base base = ::testing::internal::ImplicitCast_<Base>(castable); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
JoinerTest.java 17 package com.google.common.base;
21 import com.google.common.base.Joiner.MapJoiner;
SuppliersTest.java 17 package com.google.common.base;
37 * Tests com.google.common.base.Suppliers.
  /external/icu4c/common/
uset.cpp 445 int32_t base = set->bmpLength; local
447 int32_t hi = set->length - 2 - base;
448 if (high < array[base] || (high==array[base] && low<array[base+1])) {
450 } else if (high < array[base+hi] || (high==array[base+hi] && low<array[base+hi+1])) {
453 int32_t iabs = i + base;
466 return (UBool)(((hi+(base<<1))&2)!=0)
    [all...]
  /external/icu4c/i18n/
nfrs.cpp 197 // for rules that didn't specify a base value, their base values
199 // set all those rules' base values. We also remove any special
211 // if the rule's base value is 0, fill in a default
212 // base value (this will be 1 plus the preceding
213 // rule's base value for regular rule sets, and the
214 // same as the preceding rule's base value in fraction
248 // if it's a regular rule that already knows its base value,
250 // the default base value for the next rule
419 // (a rule is used for all values from its base value t
856 int64_t base = radix; local
902 int64_t base = radix; local
    [all...]
  /external/icu4c/test/intltest/
restest.cpp 369 UnicodeString base; local
374 base = NAME[j];
403 expected_string = base;
432 expected_string = base;
454 expected_string = base;
  /external/libvpx/vp8/
vp8_dx_iface.c 52 vpx_codec_priv_t base; member in struct:vpx_codec_alg_priv
103 mmap->base = (void *)((((uintptr_t)mmap->priv) + align) & ~(uintptr_t)align);
118 if (!mmaps[i].base)
147 ctx->priv = mmap->base;
150 ctx->priv->alg_priv = mmap->base;
173 return ctx->mmaps[i].base;
295 ctx->base.err_detail = error->has_detail
318 res = ctx->base.iface->dec.peek_si(data, data_sz, &ctx->si);
339 ctx->base.init_flags);
353 res = vp8_validate_mmaps(&ctx->si, ctx->mmaps, ctx->base.init_flags)
    [all...]
  /external/llvm/include/llvm/ADT/
ValueMap.h 151 return Map.erase(I.base());
278 BaseT base() const { return I; } function in class:llvm::ValueMapIterator
326 : I(Other.base()) {}
328 BaseT base() const { return I; } function in class:llvm::ValueMapConstIterator
  /external/llvm/include/llvm/Bitcode/
Archive.h 526 const char* base; ///< Base of the memory mapped file data member in class:llvm::Archive
  /external/llvm/include/llvm/Object/
ObjectFile.h 262 /// ObjectFile - This class is the base class for all object file types.
273 const uint8_t *base() const { function in class:llvm::object::ObjectFile
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.c 922 uint8_t index, base; local
978 base = baseFromSIB(insn->sib) | (bFromREX(insn->rexPrefix) << 3);
980 switch (base) {
1003 insn->sibBase = (SIBBase)(sibBaseBase + base);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationHeader.java 451 String base = "00000000"; local
452 nc = base.substring(0, 8 - nc.length()) + nc;
  /external/openssl/crypto/objects/
obj_dat.c 678 const void *OBJ_bsearch_(const void *key, const void *base, int num, int size,
681 return OBJ_bsearch_ex_(key, base, num, size, cmp, 0);
689 const char *base=base_; local
699 p= &(base[i*size]);
717 p= &(base[i*size]);
728 while(i > 0 && (*cmp)(key,&(base[(i-1)*size])) == 0)
730 p = &(base[i*size]);

Completed in 1350 milliseconds

<<31323334353637383940>>