HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 1376 - 1400 of 5077) sorted by null

<<51525354555657585960>>

  /external/chromium_org/webkit/browser/fileapi/
copy_or_move_file_validator.h 8 #include "base/callback.h"
9 #include "base/platform_file.h"
12 namespace base { namespace
23 // base::PLATFORM_FILE_OK means the file validated.
24 typedef base::Callback<void(base::PlatformFileError result)> ResultCallback;
36 const base::FilePath& dest_platform_path,
49 const base::FilePath& platform_path) = 0;
external_mount_points.h 12 #include "base/memory/ref_counted.h"
13 #include "base/synchronization/lock.h"
19 namespace base { namespace
36 : public base::RefCountedThreadSafe<ExternalMountPoints>,
66 const base::FilePath& path);
72 base::FilePath* path) const OVERRIDE;
74 const base::FilePath& virtual_path,
77 base::FilePath* path,
83 const base::FilePath& path) const OVERRIDE;
97 bool GetVirtualPath(const base::FilePath& absolute_path
    [all...]
native_file_util.h 8 #include "base/files/file_path.h"
9 #include "base/files/file_util_proxy.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "base/platform_file.h"
15 namespace base { namespace
41 static base::PlatformFileError CreateOrOpen(
42 const base::FilePath& path,
44 base::PlatformFile* file_handle,
46 static base::PlatformFileError Close(base::PlatformFile file)
    [all...]
timed_task_helper.h 8 #include "base/basictypes.h"
9 #include "base/callback.h"
10 #include "base/location.h"
11 #include "base/memory/ref_counted.h"
12 #include "base/memory/scoped_ptr.h"
13 #include "base/time/time.h"
16 namespace base { namespace
22 // Works similarly as base::Timer, but takes SequencedTaskRunner and
28 explicit TimedTaskHelper(base::SequencedTaskRunner* task_runner);
33 base::TimeDelta delay
    [all...]
  /external/chromium_org/webkit/renderer/compositor_bindings/
web_external_bitmap_impl.h 8 #include "base/bind.h"
9 #include "base/memory/scoped_ptr.h"
13 namespace base { namespace
19 typedef scoped_ptr<base::SharedMemory> (*SharedMemoryAllocationFunction)(
36 base::SharedMemory* shared_memory() { return shared_memory_.get(); }
39 scoped_ptr<base::SharedMemory> shared_memory_;
  /external/chromium_org/win8/viewer/
metro_viewer_process_host.h 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/strings/string16.h"
11 #include "base/threading/non_thread_safe.h"
17 namespace base { namespace
28 // Abstract base class for various Metro viewer process host implementations.
31 public base::NonThreadSafe {
40 base::SingleThreadTaskRunner* ipc_task_runner);
44 // host, returns base::kNullProcessId otherwise.
45 base::ProcessId GetViewerProcessId()
    [all...]
  /external/clang/test/FixIt/
fixit-cxx11-attributes.cpp 18 class base {}; class in namespace:ClassSpecifier
21 alignas(float) [[]] [[]] alignas(float): base{}; // expected-error {{an attribute list cannot appear here}}
  /external/droiddriver/src/com/google/android/droiddriver/base/
AbstractContext.java 17 package com.google.android.droiddriver.base;
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_make_key.c 53 ecc_point *base; local
72 base = NULL;
88 base = ltc_ecc_new_point();
89 if (base == NULL) {
96 if ((err = mp_read_radix(base->x, (char *)key->dp->Gx, 16)) != CRYPT_OK) { goto errkey; }
97 if ((err = mp_read_radix(base->y, (char *)key->dp->Gy, 16)) != CRYPT_OK) { goto errkey; }
98 if ((err = mp_set(base->z, 1)) != CRYPT_OK) { goto errkey; }
102 if ((err = ltc_mp.ecc_ptmul(key->k, base, &key->pubkey, prime, 1)) != CRYPT_OK) { goto errkey; }
111 ltc_ecc_del_point(base);
  /external/e2fsprogs/lib/et/
com_err.h 26 long base; member in struct:error_table
45 extern int init_error_table(const char * const *msgs, long base, int count);
57 long base);
  /external/e2fsprogs/misc/
base_device.c 4 * Return the "base device" given a particular device; this is used to
7 * place. If the base device can not be determined, return NULL.
152 const char *base; local
164 base = base_device(buf);
165 printf("%s\t%s\n", buf, base ? base : "NONE");
  /external/guava/guava/src/com/google/common/base/
FinalizablePhantomReference.java 17 package com.google.common.base;
FinalizableSoftReference.java 17 package com.google.common.base;
FinalizableWeakReference.java 17 package com.google.common.base;
Platform.java 17 package com.google.common.base;
Ticker.java 17 package com.google.common.base;
  /external/guava/guava-gwt/src/com/google/common/base/
PairwiseEquivalence_CustomFieldSerializer.java 17 package com.google.common.base;
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Platform.java 17 package com.google.common.base;
  /external/guava/guava-tests/test/com/google/common/base/
DefaultsTest.java 17 package com.google.common.base;
  /external/junit/src/org/junit/rules/
ExternalResource.java 7 * A base class for Rules (like TemporaryFolder) that set up an external
36 public Statement apply(Statement base, Description description) {
37 return statement(base);
40 private Statement statement(final Statement base) {
46 base.evaluate();
TestWatcher.java 8 * TestWatcher is a base class for Rules that take note of the testing
41 public Statement apply(final Statement base, final Description description) {
47 base.evaluate();
TestWatchman.java 8 * TestWatchman is a base class for Rules that take note of the testing
46 public Statement apply(final Statement base, final FrameworkMethod method,
53 base.evaluate();
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_bufmgr_alt.c 46 struct pb_manager base; member in struct:pb_alt_manager
113 mgr->base.destroy = pb_alt_manager_destroy;
114 mgr->base.create_buffer = pb_alt_manager_create_buffer;
115 mgr->base.flush = pb_alt_manager_flush;
119 return &mgr->base;
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_video_buffer.h 43 struct pipe_video_buffer base; member in struct:vl_video_buffer
  /external/mesa3d/src/gallium/drivers/i915/
i915_screen.h 43 struct pipe_screen base; member in struct:i915_screen

Completed in 590 milliseconds

<<51525354555657585960>>