HomeSort by relevance Sort by last modified time
    Searched refs:get (Results 151 - 175 of 23610) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeNodeStream.cs 37 * Get a tree node at an absolute index i; 0..n-1.
43 get;
47 * Get tree node at current input pointer + i ahead where i=1 is next node.
69 get;
80 get;
85 * trees. E.g., get text of a node.
89 get;
101 get;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeNodeStream.cs 39 * Get a tree node at an absolute index i; 0..n-1.
46 get;
50 * Get tree node at current input pointer + i ahead where i=1 is next node.
73 get;
85 get;
90 * trees. E.g., get text of a node.
95 get;
108 get;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeNodeStream`1.cs 38 * Get a tree node at an absolute index i; 0..n-1.
45 get;
49 * Get tree node at current input pointer + i ahead where i=1 is next node.
72 get;
84 get;
89 * trees. E.g., get text of a node.
94 get;
107 get;
  /external/chromium_org/third_party/WebKit/Source/web/
WebSpeechRecognitionHandle.cpp 47 return m_private.get() == other.m_private.get();
52 return m_private.get() < other.m_private.get();
68 return m_private.get();
  /external/clang/test/CodeGenCXX/
cxx1y-sized-deallocation.cpp 27 template<typename T> T get();
31 ::delete get<T*>();
32 ::delete[] get<T*>();
33 delete get<T*>();
34 delete[] get<T*>();
  /external/okhttp/android/test/java/com.squareup.okhttp/
ConfigAwareConnectionPoolTest.java 39 public void get() throws Exception { method in class:ConfigAwareConnectionPoolTest
42 assertSame(instance.get(), instance.get());
44 ConnectionPool beforeEventInstance = instance.get();
47 assertNotSame(beforeEventInstance, instance.get());
  /external/oprofile/libutil++/tests/
cached_value_tests.cpp 25 bool foo = boolval.get();
40 cerr << "get() on no value didn't throw\n";
44 if (boolval.reset(false) != false || boolval.get() != false) {
49 if (boolval.reset(true) != true || boolval.get() != true) {
54 if (strval.reset("foo") != "foo" || strval.get() != "foo") {
59 if (strval.reset("") != "" || strval.get() != "") {
  /libcore/jsr166-tests/src/test/java/jsr166/
AtomicBooleanTest.java 20 assertTrue(new AtomicBoolean(true).get());
21 assertFalse(new AtomicBoolean(false).get());
29 assertFalse(ai.get());
33 * get returns the last value set
37 assertTrue(ai.get());
39 assertFalse(ai.get());
41 assertTrue(ai.get());
45 * get returns the last value lazySet in same thread
49 assertTrue(ai.get());
51 assertFalse(ai.get());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSDefaultStyleSheets.h 40 RuleSet* defaultStyle() { return m_defaultStyle.get(); }
41 RuleSet* defaultViewportStyle() { return m_defaultViewportStyle.get(); }
42 RuleSet* defaultQuirksStyle() { return m_defaultQuirksStyle.get(); }
43 RuleSet* defaultPrintStyle() { return m_defaultPrintStyle.get(); }
50 StyleSheetContents* defaultStyleSheet() { return m_defaultStyleSheet.get(); }
51 StyleSheetContents* viewportStyleSheet() { return m_viewportStyleSheet.get(); }
52 StyleSheetContents* quirksStyleSheet() { return m_quirksStyleSheet.get(); }
53 StyleSheetContents* svgStyleSheet() { return m_svgStyleSheet.get(); }
54 StyleSheetContents* mathmlStyleSheet() { return m_mathmlStyleSheet.get(); }
55 StyleSheetContents* mediaControlsStyleSheet() { return m_mediaControlsStyleSheet.get(); }
    [all...]
  /external/lldb/source/Host/macosx/cfcpp/
CFCBundle.cpp 48 if (cf_path.get())
51 CFCReleaser<CFURLRef> bundle_url (::CFURLCreateWithFileSystemPath (alloc, cf_path.get(), kCFURLPOSIXPathStyle, true));
52 if (bundle_url.get())
53 reset (::CFBundleCreate (alloc, bundle_url.get()));
55 return get() != NULL;
61 CFBundleRef bundle = get();
65 if (bundle_url.get())
68 return ::CFURLGetFileSystemRepresentation (bundle_url.get(), resolveAgainstBase, (UInt8 *)dst, dst_len) != 0;
77 CFBundleRef bundle = get();
86 CFBundleRef bundle = get();
    [all...]
CFCData.cpp 53 CFDataRef data = get();
63 CFDataRef data = get();
75 ::CFWriteStreamOpen (stream.get());
76 CFIndex len = ::CFPropertyListWriteToStream (plist, stream.get(), format, NULL);
78 reset((CFDataRef)::CFWriteStreamCopyProperty (stream.get(), kCFStreamPropertyDataWritten));
79 ::CFWriteStreamClose (stream.get());
80 return get();
  /external/chromium_org/chrome/common/extensions/manifest_tests/
extension_manifests_offline_unittest.cc 23 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_0.get()));
26 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_1.get()));
29 EXPECT_FALSE(OfflineEnabledInfo::IsOfflineEnabled(extension_2.get()));
32 EXPECT_FALSE(OfflineEnabledInfo::IsOfflineEnabled(extension_3.get()));
35 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_4.get()));
38 EXPECT_TRUE(OfflineEnabledInfo::IsOfflineEnabled(extension_5.get()));
41 EXPECT_FALSE(OfflineEnabledInfo::IsOfflineEnabled(extension_6.get()));
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGComponentTransferFunctionElement.h 38 SVGAnimatedNumberList* tableValues() { return m_tableValues.get(); }
39 SVGAnimatedNumber* slope() { return m_slope.get(); }
40 SVGAnimatedNumber* intercept() { return m_intercept.get(); }
41 SVGAnimatedNumber* amplitude() { return m_amplitude.get(); }
42 SVGAnimatedNumber* exponent() { return m_exponent.get(); }
43 SVGAnimatedNumber* offset() { return m_offset.get(); }
44 SVGAnimatedEnumeration<ComponentTransferType>* type() { return m_type.get(); }
  /external/chromium_org/third_party/skia/tests/
TypefaceTest.cpp 16 REPORTER_ASSERT(reporter, SkTypeface::Equal(t1.get(), t2.get()));
17 REPORTER_ASSERT(reporter, SkTypeface::Equal(0, t1.get()));
18 REPORTER_ASSERT(reporter, SkTypeface::Equal(0, t2.get()));
19 REPORTER_ASSERT(reporter, SkTypeface::Equal(t1.get(), 0));
20 REPORTER_ASSERT(reporter, SkTypeface::Equal(t2.get(), 0));
24 REPORTER_ASSERT(reporter, NULL == t3.get());
  /external/libcxx/test/utilities/utility/pairs/pair.astuple/
pairs.by.type.pass.cpp 22 assert ( std::get<int>(t1) == 42 );
23 assert ( std::get<cf>(t1).real() == 1 );
24 assert ( std::get<cf>(t1).imag() == 2 );
29 const int &i1 = std::get<int>(p1);
30 const int &i2 = std::get<const int>(p1);
38 upint p = std::get<0>(std::move(t)); // get rvalue
40 assert(std::get<0>(t) == nullptr); // has been moved from
  /external/lldb/tools/debugserver/source/MacOSX/
CFBundle.cpp 68 if (cf_path.get())
71 m_bundle_url.reset (::CFURLCreateWithFileSystemPath (alloc, cf_path.get(), kCFURLPOSIXPathStyle, true));
72 if (m_bundle_url.get())
74 reset (::CFBundleCreate (alloc, m_bundle_url.get()));
77 return get() != NULL;
83 CFBundleRef bundle = get();
93 CFBundleRef bundle = get();
CFData.cpp 56 CFDataRef data = get();
66 CFDataRef data = get();
78 ::CFWriteStreamOpen (stream.get());
79 CFIndex len = ::CFPropertyListWriteToStream (plist, stream.get(), format, NULL);
81 reset((CFDataRef)::CFWriteStreamCopyProperty (stream.get(), kCFStreamPropertyDataWritten));
82 ::CFWriteStreamClose (stream.get());
83 return get();
  /external/llvm/include/llvm/MC/
MCInstrAnalysis.h 35 return Info->get(Inst.getOpcode()).isBranch();
39 return Info->get(Inst.getOpcode()).isConditionalBranch();
43 return Info->get(Inst.getOpcode()).isUnconditionalBranch();
47 return Info->get(Inst.getOpcode()).isIndirectBranch();
51 return Info->get(Inst.getOpcode()).isCall();
55 return Info->get(Inst.getOpcode()).isReturn();
59 return Info->get(Inst.getOpcode()).isTerminator();
62 /// evaluateBranch - Given a branch instruction try to get the address the
  /external/skia/tests/
TypefaceTest.cpp 16 REPORTER_ASSERT(reporter, SkTypeface::Equal(t1.get(), t2.get()));
17 REPORTER_ASSERT(reporter, SkTypeface::Equal(0, t1.get()));
18 REPORTER_ASSERT(reporter, SkTypeface::Equal(0, t2.get()));
19 REPORTER_ASSERT(reporter, SkTypeface::Equal(t1.get(), 0));
20 REPORTER_ASSERT(reporter, SkTypeface::Equal(t2.get(), 0));
24 REPORTER_ASSERT(reporter, NULL == t3.get());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pair.astuple/
pairs.by.type.pass.cpp 22 assert ( std::get<int>(t1) == 42 );
23 assert ( std::get<cf>(t1).real() == 1 );
24 assert ( std::get<cf>(t1).imag() == 2 );
29 const int &i1 = std::get<int>(p1);
30 const int &i2 = std::get<const int>(p1);
38 upint p = std::get<0>(std::move(t)); // get rvalue
40 assert(std::get<0>(t) == nullptr); // has been moved from
  /external/chromium_org/net/cookies/
cookie_store_unittest.h 271 static_cast<CookieMonster*>(cs.get()) : NULL);
276 EXPECT_TRUE(this->SetCookie(cs.get(), this->url_google_, "A=B"));
277 this->MatchCookieLines("A=B", this->GetCookies(cs.get(), this->url_google_));
279 cs.get(), this->url_google_, "C=D; domain=.google.izzle"));
281 this->GetCookies(cs.get(), this->url_google_));
286 "C=D", this->GetCookies(cs.get(), GURL("http://foo.www.google.izzle")));
290 cs.get(), this->url_google_, "E=F; domain=.www.google.izzle"));
292 this->GetCookies(cs.get(), this->url_google_));
297 cs.get(), this->url_google_, "G=H; domain=www.google.izzle"));
299 this->GetCookies(cs.get(), this->url_google_))
    [all...]
  /external/chromium_org/ui/ozone/platform/dri/
ozone_platform_dri.cc 55 surface_generator_(new DriSurfaceGenerator(dri_.get())),
56 screen_manager_(new ScreenManager(dri_.get(),
57 surface_generator_.get())),
66 return surface_factory_ozone_.get();
69 return event_factory_ozone_.get();
72 return cursor_factory_ozone_.get();
84 dri_.get(), screen_manager_.get(), device_manager_.get()));
94 new DriSurfaceFactory(dri_.get(), screen_manager_.get()))
    [all...]
  /external/chromium_org/base/allocator/
type_profiler_map_unittest.cc 22 // Allocate an object just to get a valid address.
27 type = LookupType(dummy.get());
30 InsertType(dummy.get(), 12, typeid(int));
31 type = LookupType(dummy.get());
35 EraseType(dummy.get());
36 type = LookupType(dummy.get());
45 EraseType(dummy.get());
46 type = LookupType(dummy.get());
55 InsertType(dummy.get(), 12, typeid(int));
56 type = LookupType(dummy.get());
    [all...]
  /external/chromium_org/net/cert/
nss_profile_filter_chromeos.cc 20 PK11_GetFirstSafe(slots_for_cert.get());
23 PK11_GetNextSafe(slots_for_cert.get(), slot_element, PR_FALSE)) {
41 PK11_ReferenceSlot(other.public_slot_.get()) :
44 PK11_ReferenceSlot(other.private_slot_.get()) :
53 PK11_ReferenceSlot(other.public_slot_.get()) :
56 PK11_ReferenceSlot(other.private_slot_.get()) :
68 if (public_slot_.get() != public_slot.get())
70 if (private_slot_.get() != private_slot.get())
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
MetadataParser.java 64 if (TextUtils.isEmpty(arguments.get(ID_FIELD_NAME))
65 || TextUtils.isEmpty(arguments.get(LOCALE_FIELD_NAME))
66 || TextUtils.isEmpty(arguments.get(DESCRIPTION_FIELD_NAME))
67 || TextUtils.isEmpty(arguments.get(UPDATE_FIELD_NAME))
68 || TextUtils.isEmpty(arguments.get(FILESIZE_FIELD_NAME))
69 || TextUtils.isEmpty(arguments.get(CHECKSUM_FIELD_NAME))
70 || TextUtils.isEmpty(arguments.get(REMOTE_FILENAME_FIELD_NAME))
71 || TextUtils.isEmpty(arguments.get(VERSION_FIELD_NAME))
72 || TextUtils.isEmpty(arguments.get(FORMATVERSION_FIELD_NAME))) {
79 arguments.get(ID_FIELD_NAME)
    [all...]

Completed in 717 milliseconds

1 2 3 4 5 67 8 91011>>