HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 401 - 425 of 2393) sorted by null

<<11121314151617181920>>

  /external/guava/guava-gwt/src/com/google/common/collect/
EmptyImmutableListMultimap_CustomFieldSerializer.java 31 EmptyImmutableListMultimap instance) {
36 return EmptyImmutableListMultimap.INSTANCE;
40 EmptyImmutableListMultimap instance) {
EmptyImmutableList_CustomFieldSerializer.java 30 EmptyImmutableList instance) {
35 return EmptyImmutableList.INSTANCE;
39 EmptyImmutableList instance) {
EmptyImmutableMap_CustomFieldSerializer.java 31 EmptyImmutableMap instance) {
36 return EmptyImmutableMap.INSTANCE;
40 EmptyImmutableMap instance) {
EmptyImmutableMultiset_CustomFieldSerializer.java 31 EmptyImmutableMultiset instance) {
36 return EmptyImmutableMultiset.INSTANCE;
40 EmptyImmutableMultiset instance) {
EmptyImmutableSetMultimap_CustomFieldSerializer.java 31 EmptyImmutableSetMultimap instance) {
36 return EmptyImmutableSetMultimap.INSTANCE;
40 EmptyImmutableSetMultimap instance) {
EmptyImmutableSet_CustomFieldSerializer.java 30 EmptyImmutableSet instance) {
35 return EmptyImmutableSet.INSTANCE;
39 EmptyImmutableSet instance) {
NaturalOrdering_CustomFieldSerializer.java 30 NaturalOrdering instance) {
35 return NaturalOrdering.INSTANCE;
39 NaturalOrdering instance) {
ReverseNaturalOrdering_CustomFieldSerializer.java 31 ReverseNaturalOrdering instance) {
36 return ReverseNaturalOrdering.INSTANCE;
40 ReverseNaturalOrdering instance) {
UsingToStringOrdering_CustomFieldSerializer.java 30 UsingToStringOrdering instance) {
35 return UsingToStringOrdering.INSTANCE;
39 UsingToStringOrdering instance) {
  /external/llvm/include/llvm/MC/
MCLabel.h 27 // Instance - the instance number of this Directional Local Label
28 unsigned Instance;
32 MCLabel(unsigned instance)
33 : Instance(instance) {}
38 /// getInstance - Get the current instance of this Directional Local Label.
39 unsigned getInstance() const { return Instance; }
41 /// incInstance - Increment the current instance of this Directional Local
43 unsigned incInstance() { return ++Instance; }
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/
Base64FileUrlEncoder.java 30 private static Base64FileUrlEncoder instance = new Base64FileUrlEncoder(); field in class:Base64FileUrlEncoder
37 return instance;
  /external/webrtc/src/system_wrappers/interface/
static_instance.h 40 static T* volatile instance = NULL; local
70 instance = T::CreateInstance();
72 T* old_instance = instance;
73 instance = NULL;
96 // The instance has been destroyed by some other thread. Rollback.
102 if (instance == NULL) {
113 // updated just yet (that's done when the instance is created).
126 // Create instance and let whichever thread finishes first assign its
127 // local copy to the global instance. All other threads reclaim their
131 InterlockedExchangePointer(reinterpret_cast<void* volatile*>(&instance),
    [all...]
  /frameworks/base/location/lib/java/com/android/location/provider/
FusedProvider.java 35 public void onFusedLocationHardwareChange(IFusedLocationHardware instance) {
36 setFusedLocationHardware(new FusedLocationHardware(instance));
45 * @return The IBinder instance associated with the provider.
52 * Sets the FusedLocationHardware instance in the provider..
53 * @param value The instance to set. This can be null in cases where the service connection
  /external/chromium_org/content/renderer/pepper/
host_var_tracker.h 39 // Tracks all live NPObjectVar. This is so we can map between instance +
47 // instance. Returns NULL if there is no NPObjectVar corresponding to the
48 // given NPObject for the given instance. See AddNPObjectVar above.
49 ppapi::NPObjectVar* NPObjectVarForNPObject(PP_Instance instance,
52 // Returns the number of NPObjectVar's associated with the given instance.
53 // Returns 0 if the instance isn't known.
55 PP_Instance instance) const;
58 virtual void DidDeleteInstance(PP_Instance instance) OVERRIDE;
60 virtual int TrackSharedMemoryHandle(PP_Instance instance,
64 PP_Instance instance,
94 PP_Instance instance; member in struct:content::HostVarTracker::SharedMemoryMapEntry
    [all...]
  /external/chromium_org/ppapi/proxy/
net_address_resource.cc 18 PP_Instance instance,
20 : PluginResource(connection, instance) {
27 PP_Instance instance,
29 : PluginResource(connection, instance) {
36 PP_Instance instance,
38 : PluginResource(connection, instance) {
  /external/chromium_org/ppapi/shared_impl/
ppapi_globals.h 70 PP_Instance instance) = 0;
76 virtual void LogWithSource(PP_Instance instance,
85 // associated instance.
94 // Returns the given API object associated with the given instance, or NULL
95 // if the instance is invalid.
96 virtual thunk::PPB_Instance_API* GetInstanceAPI(PP_Instance instance) = 0;
98 PP_Instance instance) = 0;
102 virtual PP_Module GetModuleForInstance(PP_Instance instance) = 0;
121 virtual base::TaskRunner* GetFileTaskRunner(PP_Instance instance) = 0;
127 // TODO(brettw) remove this by passing the instance into the API so we don'
    [all...]
test_globals.cc 33 PP_Instance instance) {
38 PP_Instance instance) {
43 PP_Instance instance) {
47 PP_Module TestGlobals::GetModuleForInstance(PP_Instance instance) {
62 void TestGlobals::LogWithSource(PP_Instance instance,
78 base::TaskRunner* TestGlobals::GetFileTaskRunner(PP_Instance instance) {
  /external/chromium_org/ppapi/tests/
test_console.cc 15 TestConsole::TestConsole(TestingInstance* instance)
16 : TestCase(instance),
33 PP_Instance instance,
37 console_interface_->Log(instance, PP_LOGLEVEL_ERROR,
39 console_interface_->LogWithSource(instance, PP_LOGLEVEL_LOG,
51 PP_Instance pp_instance = instance()->pp_instance();
  /external/chromium_org/ppapi/thunk/
ppb_broker_thunk.cc 18 PP_Resource CreateTrusted(PP_Instance instance) {
19 EnterResourceCreation enter(instance);
22 return enter.functions()->CreateBroker(instance);
47 PP_Instance instance = 0; local
52 instance = enter_resource.resource()->pp_instance();
54 EnterInstanceAPI<PPB_Broker_Instance_API> enter_instance(instance);
  /external/chromium/chrome/common/
json_schema_validator_unittest_base.cc 86 scoped_ptr<ListValue> instance(LoadList("complex_instance.json"));
89 ASSERT_TRUE(instance.get());
91 ExpectValid(TEST_SOURCE, instance.get(), schema.get(), NULL);
92 instance->Remove(instance->GetSize() - 1, NULL);
93 ExpectValid(TEST_SOURCE, instance.get(), schema.get(), NULL);
94 instance->Append(new DictionaryValue());
95 ExpectNotValid(TEST_SOURCE, instance.get(), schema.get(), NULL, "1",
98 instance->Remove(instance->GetSize() - 1, NULL)
    [all...]
json_schema_validator.h 121 // This setting defaults to false: all items in an instance list or object
139 // Validates a JSON value. Returns true if the instance is valid, false
142 bool Validate(Value* instance);
148 // path paramater is the path to |instance| from the root of the instance tree
151 // Validates any instance node against any schema node. This is called for
152 // every node in the instance tree, and it just decides which of the more
154 void Validate(Value* instance, DictionaryValue* schema,
159 void ValidateChoices(Value* instance, ListValue* choices,
163 void ValidateEnum(Value* instance, ListValue* choices
    [all...]
  /external/chromium_org/chrome/common/json_schema/
json_schema_validator_unittest_base.cc 90 scoped_ptr<base::ListValue> instance(LoadList("complex_instance.json"));
93 ASSERT_TRUE(instance.get());
95 ExpectValid(TEST_SOURCE, instance.get(), schema.get(), NULL);
96 instance->Remove(instance->GetSize() - 1, NULL);
97 ExpectValid(TEST_SOURCE, instance.get(), schema.get(), NULL);
98 instance->Append(new base::DictionaryValue());
99 ExpectNotValid(TEST_SOURCE, instance.get(), schema.get(), NULL, "1",
104 instance->Remove(instance->GetSize() - 1, NULL)
    [all...]
json_schema_validator.h 133 // This setting defaults to false: all items in an instance list or object
151 // Validates a JSON value. Returns true if the instance is valid, false
154 bool Validate(const base::Value* instance);
160 // path paramater is the path to |instance| from the root of the instance tree
163 // Validates any instance node against any schema node. This is called for
164 // every node in the instance tree, and it just decides which of the more
166 void Validate(const base::Value* instance,
172 void ValidateChoices(const base::Value* instance,
177 void ValidateEnum(const base::Value* instance,
    [all...]
  /external/chromium_org/chrome/installer/util/
language_selector_unittest.cc 36 installer::LanguageSelector instance; local
37 EXPECT_FALSE(instance.matched_candidate().empty());
46 installer::LanguageSelector instance(
50 EXPECT_EQ(L"fr", instance.matched_candidate());
56 installer::LanguageSelector instance(
60 EXPECT_EQ(L"en-us", instance.matched_candidate());
66 installer::LanguageSelector instance(
70 EXPECT_EQ(L"zh-SG", instance.matched_candidate());
80 installer::LanguageSelector instance(
82 EXPECT_EQ(GetParam(), instance.matched_candidate())
168 installer::LanguageSelector instance; local
    [all...]
  /external/chromium_org/ppapi/cpp/private/
flash_file.cc 38 PP_FileHandle FileModuleLocal::OpenFile(const InstanceHandle& instance,
45 OpenFile(instance.pp_instance(), path.c_str(), mode, &file_handle);
51 bool FileModuleLocal::RenameFile(const InstanceHandle& instance,
57 RenameFile(instance.pp_instance(), path_from.c_str(), path_to.c_str());
63 bool FileModuleLocal::DeleteFileOrDir(const InstanceHandle& instance,
69 DeleteFileOrDir(instance.pp_instance(), path.c_str(),
76 bool FileModuleLocal::CreateDir(const InstanceHandle& instance,
81 CreateDir(instance.pp_instance(), path.c_str());
87 bool FileModuleLocal::QueryFile(const InstanceHandle& instance,
93 QueryFile(instance.pp_instance(), path.c_str(), info)
    [all...]

Completed in 844 milliseconds

<<11121314151617181920>>