Searched refs:get (Results 26 - 50 of 13684) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/extensions/manifest_tests/
H A Dextension_manifests_background_unittest.cc35 ASSERT_TRUE(manifest.get());
38 LoadAndExpectSuccess(Manifest(manifest.get(), "")));
39 ASSERT_TRUE(extension.get());
41 BackgroundInfo::GetBackgroundScripts(extension.get());
46 EXPECT_TRUE(BackgroundInfo::HasBackgroundPage(extension.get()));
49 BackgroundInfo::GetBackgroundURL(extension.get()).path());
52 LoadAndExpectError(Manifest(manifest.get(), ""),
59 ASSERT_TRUE(extension.get());
61 BackgroundInfo::GetBackgroundURL(extension.get()).path());
62 EXPECT_TRUE(BackgroundInfo::AllowJSAccess(extension.get()));
[all...]
H A Dextension_manifests_requirements_unittest.cc53 ASSERT_TRUE(extension.get());
54 EXPECT_EQ(RequirementsInfo::GetRequirements(extension.get()).webgl, false);
55 EXPECT_EQ(RequirementsInfo::GetRequirements(extension.get()).css3d, false);
56 EXPECT_EQ(RequirementsInfo::GetRequirements(extension.get()).npapi, false);
60 ASSERT_TRUE(extension.get());
61 EXPECT_EQ(RequirementsInfo::GetRequirements(extension.get()).webgl, true);
62 EXPECT_EQ(RequirementsInfo::GetRequirements(extension.get()).css3d, true);
63 EXPECT_EQ(RequirementsInfo::GetRequirements(extension.get()).npapi, true);
71 ASSERT_TRUE(extension.get());
72 EXPECT_EQ(RequirementsInfo::GetRequirements(extension.get())
[all...]
/external/chromium/base/memory/
H A Dscoped_ptr_unittest.cc34 EXPECT_TRUE(scoper.get());
37 EXPECT_EQ(10, scoper.get()->SomeMeth(10));
46 EXPECT_TRUE(scoper.get());
50 EXPECT_TRUE(scoper.get());
54 EXPECT_FALSE(scoper.get());
58 EXPECT_TRUE(scoper.get());
62 EXPECT_FALSE(scoper.get());
68 EXPECT_TRUE(scoper.get());
76 EXPECT_TRUE(scoper1 == scoper2.get());
77 EXPECT_FALSE(scoper1 != scoper2.get());
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowSettings.java26 get(cr).put(name, value);
32 if (get(cr).get(name) instanceof Integer) {
33 return (Integer) get(cr).get(name);
41 if (get(cr).get(name) instanceof Integer) {
42 return (Integer) get(cr).get(name);
50 get(c
112 private static Map<String, Object> get(ContentResolver cr) { method in class:ShadowSettings.SettingsImpl
[all...]
/external/chromium/testing/gtest/test/
H A Dgtest-tuple_test.cc38 using ::std::tr1::get;
124 EXPECT_EQ(n, get<1>(t))
128 // the & operator for the return type of get<>().
129 EXPECT_EQ(&n, &(get<1>(t)))
133 get<1>(t) = 2;
151 EXPECT_EQ(0, get<0>(b1));
155 EXPECT_EQ(0, get<0>(b2));
156 EXPECT_EQ(0.0, get<1>(b2));
160 EXPECT_EQ(0.0, get<0>(b3));
161 EXPECT_EQ('\0', get<
[all...]
/external/chromium_org/testing/gtest/test/
H A Dgtest-tuple_test.cc38 using ::std::tr1::get;
124 EXPECT_EQ(n, get<1>(t))
128 // the & operator for the return type of get<>().
129 EXPECT_EQ(&n, &(get<1>(t)))
133 get<1>(t) = 2;
151 EXPECT_EQ(0, get<0>(b1));
155 EXPECT_EQ(0, get<0>(b2));
156 EXPECT_EQ(0.0, get<1>(b2));
160 EXPECT_EQ(0.0, get<0>(b3));
161 EXPECT_EQ('\0', get<
[all...]
/external/gtest/test/
H A Dgtest-tuple_test.cc38 using ::std::tr1::get;
124 EXPECT_EQ(n, get<1>(t))
128 // the & operator for the return type of get<>().
129 EXPECT_EQ(&n, &(get<1>(t)))
133 get<1>(t) = 2;
151 EXPECT_EQ(0, get<0>(b1));
155 EXPECT_EQ(0, get<0>(b2));
156 EXPECT_EQ(0.0, get<1>(b2));
160 EXPECT_EQ(0.0, get<0>(b3));
161 EXPECT_EQ('\0', get<
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileSystemFlags.h43 options.get("create", create);
44 options.get("exclusive", exclusive);
/external/chromium_org/v8/test/webkit/
H A DObject-create.js37 var DescriptorWithValueGetter = { foo: Object.create(null, { value: { get: valueGet }})};
38 var DescriptorWithEnumerableGetter = { foo: Object.create(null, { value: {value: true}, enumerable: { get: valueGet }})};
39 var DescriptorWithConfigurableGetter = { foo: Object.create(null, { value: {value: true}, configurable: { get: valueGet }})};
40 var DescriptorWithWritableGetter = { foo: Object.create(null, { value: {value: true}, writable: { get: valueGet }})};
41 var DescriptorWithGetGetter = { foo: Object.create(null, { get: { get: function() { return valueGet } }})};
42 var DescriptorWithSetGetter = { foo: Object.create(null, { get: { value: valueGet}, set: { get: function(){ return valueGet; } }})};
/external/clang/test/CodeGenCXX/
H A Dinstantiate-temporaries.cpp9 X get();
18 Y().get();
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
H A Dpreinit_test.cc10 // The function get() is instrumented with asan, but called
19 A get () { return A(); } function
23 template <class T> A const O <T>::e = get();
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DGroupEntry.java23 public abstract ByteBuffer get(); method in class:GroupEntry
26 return get().limit();
/external/chromium_org/base/
H A Dcallback_internal.cc13 return bind_state_.get() == NULL;
24 return bind_state_.get() == other.bind_state_.get() &&
31 DCHECK(!bind_state_.get() || bind_state_->HasOneRef());
/external/chromium_org/chrome/browser/browsing_data/
H A Dcookies_tree_model_unittest.cc53 new MockBrowsingDataDatabaseHelper(profile_.get());
55 new MockBrowsingDataLocalStorageHelper(profile_.get());
57 new MockBrowsingDataLocalStorageHelper(profile_.get());
59 new MockBrowsingDataAppCacheHelper(profile_.get());
63 new MockBrowsingDataFileSystemHelper(profile_.get());
65 new MockBrowsingDataQuotaHelper(profile_.get());
69 new MockBrowsingDataFlashLSOHelper(profile_.get());
75 new ExtensionSpecialStoragePolicy(cookie_settings.get());
93 mock_browsing_data_cookie_helper_.get(),
94 mock_browsing_data_database_helper_.get(),
[all...]
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Dwallpaper_private_api_unittest.cc53 ash::wm::MinimizeWindow(window3.get());
54 ash::wm::MaximizeWindow(window1.get());
57 EXPECT_FALSE(ash::wm::IsWindowMinimized(window0.get()));
58 EXPECT_FALSE(ash::wm::IsWindowMinimized(window1.get()));
59 EXPECT_FALSE(ash::wm::IsWindowMinimized(window2.get()));
60 EXPECT_TRUE(ash::wm::IsWindowMinimized(window3.get()));
64 ash::wm::ActivateWindow(window0.get());
65 EXPECT_TRUE(ash::wm::IsActiveWindow(window0.get()));
71 EXPECT_FALSE(ash::wm::IsWindowMinimized(window0.get()));
72 EXPECT_TRUE(ash::wm::IsWindowMinimized(window1.get()));
[all...]
/external/chromium_org/chromeos/network/
H A Dnetwork_handler.cc51 network_profile_handler_->Init(network_state_handler_.get());
53 network_cert_migrator_->Init(network_state_handler_.get());
54 network_configuration_handler_->Init(network_state_handler_.get());
56 network_state_handler_.get(),
57 network_profile_handler_.get(),
58 network_configuration_handler_.get());
59 network_connection_handler_->Init(network_state_handler_.get(),
60 network_configuration_handler_.get());
92 return network_state_handler_.get();
96 return network_device_handler_.get();
[all...]
/external/chromium_org/gpu/command_buffer/service/
H A Dgl_state_restorer_impl.cc20 DCHECK(decoder_.get());
25 DCHECK(decoder_.get());
30 DCHECK(decoder_.get());
35 DCHECK(decoder_.get());
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/gpu/
H A DSharedGraphicsContext3D.h42 static PassRefPtr<GraphicsContext3D> get();
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-133211.js32 Object.defineProperty(o, "foo", { get: undefined });
33 Object.defineProperty(x, "foo", { get: undefined, set: undefined });
H A Dregress-2410.js34 { get: function() { throw Error('bug') } });
H A Dregress-526.js30 var o = { foo: function() { }, get bar() { return {x:42} } };
/external/clang/test/Analysis/inlining/
H A Ddyn-dispatch-bifurcate.cpp7 virtual int get() { return 0; } function in class:A
11 clang_analyzer_eval(a->get() == 0); // expected-warning{{TRUE}} expected-warning{{UNKNOWN}}
16 clang_analyzer_eval(a.get() == 0); // expected-warning{{TRUE}}
21 clang_analyzer_eval(a->get() == 0); // expected-warning{{TRUE}}
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
H A DSQLiteTestHelper.java11 assertThat(colValues.get(0), instanceOf(Float.class));
12 assertThat(colValues.get(1), instanceOf(byte[].class));
13 assertThat(colValues.get(2), instanceOf(String.class));
14 assertThat(colValues.get(3), instanceOf(Integer.class));
/external/v8/test/mjsunit/regress/
H A Dregress-526.js30 var o = { foo: function() { }, get bar() { return {x:42} } };
/external/llvm/include/llvm/IR/
H A DTypeBuilder.h45 /// Function::Create(TypeBuilder<types::i<8>(MyType*), true>::get(), ...)
47 /// complain that TypeBuilder<MyType, true>::get() doesn't exist. To fix this,
53 /// static StructType *get(LLVMContext &Context) {
56 /// return StructType::get(
57 /// TypeBuilder<types::i<32>, xcompile>::get(Context),
58 /// TypeBuilder<types::i<32>*, xcompile>::get(Context),
59 /// TypeBuilder<types::i<8>*[], xcompile>::get(Context),
106 static PointerType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
107 return PointerType::getUnqual(TypeBuilder<T,cross>::get(Context));
117 static ArrayType *get(LLVMContex function in class:llvm::TypeBuilder
124 static ArrayType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
183 static IntegerType *get(LLVMContext &C) { function in class:llvm::TypeBuilder
190 static Type *get(LLVMContext& C) { function in class:llvm::TypeBuilder
198 static Type *get(LLVMContext& C) { function in class:llvm::TypeBuilder
206 static Type *get(LLVMContext& C) { return Type::getFloatTy(C); } function in class:llvm::TypeBuilder
210 static Type *get(LLVMContext& C) { return Type::getDoubleTy(C); } function in class:llvm::TypeBuilder
214 static Type *get(LLVMContext& C) { return Type::getX86_FP80Ty(C); } function in class:llvm::TypeBuilder
218 static Type *get(LLVMContext& C) { return Type::getFP128Ty(C); } function in class:llvm::TypeBuilder
222 static Type *get(LLVMContext& C) { return Type::getPPC_FP128Ty(C); } function in class:llvm::TypeBuilder
226 static Type *get(LLVMContext& C) { return Type::getX86_MMXTy(C); } function in class:llvm::TypeBuilder
231 static Type *get(LLVMContext &C) { function in class:llvm::TypeBuilder
249 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
255 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
266 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
278 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
293 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
309 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
324 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
331 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
341 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
353 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
368 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
384 static FunctionType *get(LLVMContext &Context) { function in class:llvm::TypeBuilder
[all...]

Completed in 749 milliseconds

1234567891011>>