HomeSort by relevance Sort by last modified time
    Searched refs:Get (Results 1 - 25 of 269) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium/base/
base_paths.cc 14 // NOTE: DIR_CURRENT is a special cased in PathService::Get
19 PathService::Get(base::FILE_EXE, &cur);
23 PathService::Get(base::FILE_MODULE, &cur);
path_service.h 28 static bool Get(int key, FilePath* path);
32 static bool Get(int key, std::wstring* path);
43 // WARNING: Consumers of PathService::Get may expect paths to be constant
51 // which is just a function mirroring PathService::Get. The ProviderFunc
path_service_unittest.cc 19 // Returns true if PathService::Get returns true and sets the path parameter
23 bool result = PathService::Get(dir_type, &path);
31 bool result = PathService::Get(base::DIR_LOCAL_APP_DATA_LOW, &path);
42 // Test that all PathService::Get calls return a value and a true result
44 // later changes to Get broke the semantics of the function and yielded the
46 TEST_F(PathServiceTest, Get) {
thread_local.h 5 // WARNING: Thread local storage is a bit tricky to get right. Please make
18 // to Get() on a thread will return NULL. You can update the pointer with a
33 // DCHECK(Singleton<ThreadLocalPointer<MyClass> >::get()->Get() == NULL);
34 // Singleton<ThreadLocalPointer<MyClass> >::get()->Set(this);
38 // DCHECK(Singleton<ThreadLocalPointer<MyClass> >::get()->Get() != NULL);
39 // Singleton<ThreadLocalPointer<MyClass> >::get()->Set(NULL);
45 // return Singleton<ThreadLocalPointer<MyClass> >::get()->Get();
    [all...]
global_descriptors_posix.h 43 // Get a descriptor given a key. It is a fatal error if the key is not known.
44 int Get(Key key) const;
45 // Get a descriptor give a key. Returns -1 on error.
thread_local_storage_unittest.cc 35 int *ptr = static_cast<int*>(tls_slot.Get());
40 ptr = static_cast<int*>(tls_slot.Get());
61 int value = reinterpret_cast<intptr_t>(slot.Get());
thread_local_storage.h 45 // Get the thread-local value stored in slot 'slot'.
47 void* Get() const;
thread_local_storage_posix.cc 34 void* ThreadLocalStorage::Slot::Get() const {
thread_local_unittest.cc 54 *ptr_ = tlp_->Get();
145 EXPECT_EQ(false, tlb.Get());
148 EXPECT_EQ(false, tlb.Get());
151 EXPECT_EQ(true, tlb.Get());
157 EXPECT_EQ(false, tlb.Get());
scoped_handle_win.h 20 // if (!hfile.Get())
22 // ReadFile(hfile.Get(), ...);
56 HANDLE Get() {
120 HDC Get() {
156 T Get() {
206 T* get() { return data_; } function in class:ScopedHGlobal
base_paths_posix.cc 45 if (PathService::Get(base::DIR_EXE, &path)) {
65 FilePath cache_dir(base::GetXDGDirectory(env.get(), "XDG_CACHE_HOME",
global_descriptors_posix.cc 26 int GlobalDescriptors::Get(Key key) const {
lazy_instance.h 9 // be called once, even if two threads are racing to create the object. Get()
29 // my_instance.Get().SomeMethod(); // MyClass::SomeMethod()
93 Type& Get() {
  /external/protobuf/src/google/protobuf/
repeated_field_unittest.cc 67 EXPECT_EQ(field.Get(0), 5);
72 EXPECT_EQ(field.Get(0), 5);
73 EXPECT_EQ(field.Get(1), 42);
78 EXPECT_EQ(field.Get(0), 5);
79 EXPECT_EQ(field.Get(1), 23);
85 EXPECT_EQ(field.Get(0), 5);
105 EXPECT_EQ(field.Get(i), i * i);
124 EXPECT_EQ(field2.Get(0), 5);
125 EXPECT_EQ(field2.Get(1), 42);
140 EXPECT_EQ(field1.Get(0), 5)
    [all...]
  /external/chromium/net/disk_cache/
bitmap_unittest.cc 38 // Test Set/Get.
39 EXPECT_TRUE(bitmap.Get(48));
40 EXPECT_FALSE(bitmap.Get(49));
41 EXPECT_FALSE(bitmap.Get(50));
43 EXPECT_TRUE(bitmap.Get(48));
44 EXPECT_TRUE(bitmap.Get(49));
45 EXPECT_FALSE(bitmap.Get(50));
47 EXPECT_TRUE(bitmap.Get(48));
48 EXPECT_FALSE(bitmap.Get(49));
49 EXPECT_FALSE(bitmap.Get(50))
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8HTMLCanvasElementCustom.cpp 56 WebGLContextAttributes* webGLAttrs = static_cast<WebGLContextAttributes*>(attrs.get());
61 webGLAttrs->setAlpha(jsAttrs->Get(alpha)->BooleanValue());
64 webGLAttrs->setDepth(jsAttrs->Get(depth)->BooleanValue());
67 webGLAttrs->setStencil(jsAttrs->Get(stencil)->BooleanValue());
70 webGLAttrs->setAntialias(jsAttrs->Get(antialias)->BooleanValue());
73 webGLAttrs->setPremultipliedAlpha(jsAttrs->Get(premultipliedAlpha)->BooleanValue());
77 CanvasRenderingContext* result = imp->getContext(contextId, attrs.get());
  /external/chromium/net/proxy/
proxy_info.h 50 return proxy_list_.Get().is_direct();
60 ProxyServer proxy_server() const { return proxy_list_.Get(); }
proxy_list.h 41 const ProxyServer& Get() const;
  /external/skia/include/core/
SkGlobals.h 44 static Rec* Get(uint32_t tag)
  /external/chromium/base/test/
perf_test_suite.h 30 PathService::Get(base::FILE_EXE, &exe);
  /dalvik/vm/mterp/x86/
bincmp.S 16 movswl 2(rPC),rINST_FULL # Get signed branch offset
  /external/chromium/base/i18n/
icu_util.cc 60 PathService::Get(base::DIR_MODULE, &data_path);
87 bool path_ok = PathService::Get(base::DIR_EXE, &data_path);
  /external/v8/src/
d8-debug.cc 51 // Get the toJSONProtocol function on the event and get the JSON format.
54 Function::Cast(*event_data->Get(to_json_fun_name));
68 String::Utf8Value str(details->Get(String::New("text")));
75 // Get the debug command processor.
77 Local<Function> fun = Function::Cast(*exec_state->Get(fun_name));
122 fun = Handle<Function>::Cast(cmd_processor->Get(fun_name));
137 String::Utf8Value text_str(response_details->Get(String::New("text")));
142 response_details->Get(String::New("running"))->ToBoolean()->Value();
270 String::Utf8Value str(details->Get(String::New("text")))
    [all...]
func-name-inferrer.cc 41 if (name->length() > 0 && Runtime::IsUpperCaseChar(name->Get(0))) {
  /external/chromium/net/flip/
flip_session_pool.h 30 scoped_refptr<FlipSession> Get(
34 // Get() first to use an existing FlipSession so we don't get multiple

Completed in 1148 milliseconds

1 2 3 4 5 6 7 8 91011