Searched defs:Context (Results 101 - 125 of 465) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/
H A Dchild_process_launcher.cc55 class ChildProcessLauncher::Context class in class:content::ChildProcessLauncher
56 : public base::RefCountedThreadSafe<ChildProcessLauncher::Context> {
58 Context() function in class:content::ChildProcessLauncher::Context
95 &Context::LaunchInternal,
106 scoped_refptr<Context> this_object,
119 &ChildProcessLauncher::Context::Notify,
138 friend class base::RefCountedThreadSafe<ChildProcessLauncher::Context>;
141 ~Context() {
152 base::Bind(&ChildProcessLauncher::Context::RecordLaunchHistograms,
171 scoped_refptr<Context> this_objec
[all...]
H A Dplugin_data_remover_impl.cc59 class PluginDataRemoverImpl::Context class in class:content::PluginDataRemoverImpl
63 public base::RefCountedThreadSafe<Context,
66 Context(base::Time begin_time, BrowserContext* browser_context) function in class:content::PluginDataRemoverImpl::Context
79 base::Bind(&Context::InitOnIOThread, this, mime_type));
83 base::Bind(&Context::OnTimeout, this),
177 IPC_BEGIN_MESSAGE_MAP(Context, message)
199 friend class base::DeleteHelper<Context>;
200 virtual ~Context() {}
313 context_ = new Context(begin_time, browser_context_);
/external/chromium_org/ipc/
H A Dipc_channel_proxy.cc25 ChannelProxy::Context::Context( function in class:IPC::ChannelProxy::Context
46 ChannelProxy::Context::~Context() {
49 void ChannelProxy::Context::ClearIPCTaskRunner() {
53 void ChannelProxy::Context::CreateChannel(scoped_ptr<ChannelFactory> factory) {
59 bool ChannelProxy::Context::TryFilters(const Message& message) {
70 FROM_HERE, base::Bind(&Context::OnDispatchBadMessage, this, message));
82 bool ChannelProxy::Context::OnMessageReceived(const Message& message) {
90 bool ChannelProxy::Context
[all...]
/external/chromium_org/mojo/apps/js/bindings/gl/
H A Dcontext.cc34 gin::WrapperInfo Context::kWrapperInfo = { gin::kEmbedderNativeGin };
36 gin::Handle<Context> Context::Create(
41 new Context(isolate, handle, context_lost_callback));
44 void Context::BufferData(GLenum target, const gin::ArrayBufferView& buffer,
50 void Context::CompileShader(const gin::Arguments& args, GLuint shader) {
60 GLuint Context::CreateBuffer() {
66 void Context::DrawElements(GLenum mode, GLsizei count, GLenum type,
73 GLint Context::GetAttribLocation(GLuint program, const std::string& name) {
77 std::string Context
152 Context::Context(v8::Isolate* isolate, function in class:mojo::js::gl::Context
[all...]
/external/chromium_org/win8/test/
H A Dopen_with_dialog_controller.cc46 class OpenWithDialogController::Context { class in class:win8::OpenWithDialogController
48 Context();
49 ~Context();
51 base::WeakPtr<Context> AsWeakPtr();
62 // The Context has been constructed.
92 base::WeakPtrFactory<Context> weak_ptr_factory_;
93 DISALLOW_COPY_AND_ASSIGN(Context);
96 OpenWithDialogController::Context::Context() function in class:win8::OpenWithDialogController::Context
104 OpenWithDialogController::Context
[all...]
H A Dui_automation_client.cc29 class UIAutomationClient::Context { class in class:win8::internal::UIAutomationClient
32 static base::WeakPtr<Context> Create();
58 Context();
59 ~Context();
96 base::WeakPtrFactory<UIAutomationClient::Context> weak_ptr_factory_;
98 DISALLOW_COPY_AND_ASSIGN(Context);
101 class UIAutomationClient::Context::EventHandler
105 BEGIN_COM_MAP(UIAutomationClient::Context::EventHandler)
117 const base::WeakPtr<UIAutomationClient::Context>& context);
128 base::WeakPtr<UIAutomationClient::Context> context
169 UIAutomationClient::Context::Context() : weak_ptr_factory_(this) {} function in class:win8::internal::UIAutomationClient::Context
[all...]
/external/clang/lib/ASTMatchers/Dynamic/
H A DDiagnostics.cpp25 Diagnostics::Context::Context(ConstructMatcherEnum, Diagnostics *Error, function in class:clang::ast_matchers::dynamic::Diagnostics::Context
32 Diagnostics::Context::Context(MatcherArgEnum, Diagnostics *Error, function in class:clang::ast_matchers::dynamic::Diagnostics::Context
41 Diagnostics::Context::~Context() { Error->ContextStack.pop_back(); }
/external/deqp/framework/egl/
H A DtcuEgl.cpp226 Context::Context (const Display& display, EGLConfig config, const EGLint* attribList, EGLenum api) function in class:tcu::egl::Context
238 Context::~Context (void)
253 void Context::makeCurrent (const Surface& draw, const Surface& read)
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtemplate.rb124 template = Context.new( values )
145 Context.define( self, name, parameters ) do | tclass |
211 class Context class
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dindentation.py35 Context = ecmametadatapass.EcmaContext variable
234 is_block=token.metadata.context.type == Context.ARRAY_LITERAL))
263 elif token.metadata.context.type == Context.CASE_BLOCK:
272 elif token.metadata.context.type == Context.LITERAL_ELEMENT:
286 if token.metadata.context.type == Context.VAR:
288 elif token.metadata.context.type != Context.PARAMETERS:
504 token_info.token.metadata.context.type == Context.BLOCK and
/external/chromium_org/base/
H A Dmd5.cc30 struct Context { struct in namespace:__anon2327
157 struct Context *ctx = (struct Context *)context;
173 struct Context *ctx = (struct Context *)context;
223 struct Context *ctx = (struct Context *)context;
/external/chromium_org/chrome/browser/ui/ash/
H A Dash_keyboard_controller_proxy.cc31 typedef virtual_keyboard_private::OnTextInputBoxFocused::Context Context; typedef
37 Context::Type TextInputTypeToGeneratedInputTypeEnum(ui::TextInputType type) {
40 return Context::TYPE_NONE;
42 return Context::TYPE_PASSWORD;
44 return Context::TYPE_EMAIL;
46 return Context::TYPE_NUMBER;
48 return Context::TYPE_TEL;
50 return Context::TYPE_URL;
52 return Context
[all...]
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_dispatcher_host.h71 IndexedDBContextImpl* Context() { return indexed_db_context_.get(); } function in class:content::IndexedDBDispatcherHost
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DExceptionState.h49 enum Context { enum in class:blink::ExceptionState
63 ExceptionState(Context context, const char* propertyName, const char* interfaceName, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
71 ExceptionState(Context context, const char* interfaceName, const v8::Handle<v8::Object>& creationContext, v8::Isolate* isolate)
101 Context context() const { return m_context; }
112 Context m_context;
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Dindentation.py35 Context = ecmametadatapass.EcmaContext variable
235 is_block=token.metadata.context.type == Context.ARRAY_LITERAL))
264 elif token.metadata.context.type == Context.CASE_BLOCK:
273 elif token.metadata.context.type == Context.LITERAL_ELEMENT:
287 if token.metadata.context.type == Context.VAR:
289 elif token.metadata.context.type != Context.PARAMETERS:
496 token_info.token.metadata.context.type == Context.BLOCK and
/external/chromium_org/third_party/libaddressinput/src/cpp/src/util/
H A Dmd5.cc37 struct Context { struct in namespace:__anon12568
165 struct Context *ctx = (struct Context *)context;
181 struct Context *ctx = (struct Context *)context;
231 struct Context *ctx = (struct Context *)context;
/external/chromium_org/third_party/skia/include/core/
H A DSkImageFilter.h64 class Context { class in class:SkImageFilter
66 Context(const SkMatrix& ctm, const SkIRect& clipBounds, Cache* cache) : function in class:SkImageFilter::Context
88 const Context&,
105 bool filterImage(Proxy*, const SkBitmap& src, const Context&,
133 virtual bool filterImageGPU(Proxy*, const SkBitmap& src, const Context&,
185 bool getInputResultGPU(SkImageFilter::Proxy* proxy, const SkBitmap& src, const Context&,
260 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
277 bool applyCropRect(const Context&, const SkBitmap& src, const SkIPoint& srcOffset,
288 bool applyCropRect(const Context&, Proxy* proxy, const SkBitmap& src, SkIPoint* srcOffset,
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe_test_logging.h117 webrtc::testing::bwe::Logging::Context \
173 class Context { class in class:webrtc::testing::bwe::Logging
175 Context(uint32_t name, int64_t timestamp_ms, bool enabled);
176 Context(const std::string& name, int64_t timestamp_ms, bool enabled);
177 Context(const char* name, int64_t timestamp_ms, bool enabled);
178 ~Context();
180 DISALLOW_IMPLICIT_CONSTRUCTORS(Context);
/external/chromium_org/tools/android/file_poller/
H A Dfile_poller.cc26 // Context containing the files to poll and the polling rate.
27 struct Context { struct
86 void acquire_sample(int fd, const Context& context) {
97 void poll_content(const Context& context) {
198 Context context;
/external/chromium_org/tools/cr/cr/base/
H A Dcontext.py105 class Context(cr.config.Config): class in inherits:cr.config.Config
112 def __init__(self, name='Context'):
113 super(Context, self).__init__(name)
243 context = Context()
/external/clang/include/clang/AST/
H A DASTConsumer.h50 virtual void Initialize(ASTContext &Context) {} argument
H A DMangle.h39 /// MangleContext - Context for tracking state which persists across multiple
51 ASTContext &Context; member in class:clang::MangleContext
62 explicit MangleContext(ASTContext &Context, argument
65 : Context(Context), Diags(Diags), Kind(Kind) {}
69 ASTContext &getASTContext() const { return Context; }
163 static ItaniumMangleContext *create(ASTContext &Context,
208 static MicrosoftMangleContext *create(ASTContext &Context,
/external/clang/lib/AST/
H A DTypeLoc.cpp110 void TypeLoc::initializeImpl(ASTContext &Context, TypeLoc TL, argument
118 TLCasted.initializeLocal(Context, Loc); \
315 void ElaboratedTypeLoc::initializeLocal(ASTContext &Context, argument
319 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc);
320 setQualifierLoc(Builder.getWithLocInContext(Context));
323 void DependentNameTypeLoc::initializeLocal(ASTContext &Context, argument
327 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc);
328 setQualifierLoc(Builder.getWithLocInContext(Context));
333 DependentTemplateSpecializationTypeLoc::initializeLocal(ASTContext &Context, argument
338 Builder.MakeTrivial(Context, getTypePt
352 initializeArgLocs(ASTContext &Context, unsigned NumArgs, const TemplateArgument *Args, TemplateArgumentLocInfo *ArgInfos, SourceLocation Loc) argument
[all...]
/external/clang/lib/CodeGen/
H A DCodeGenTBAA.h49 ASTContext &Context; member in class:clang::CodeGen::CodeGenTBAA
H A DCodeGenTypes.h64 ASTContext &Context; member in class:clang::CodeGen::CodeGenTypes
115 ASTContext &getContext() const { return Context; }

Completed in 556 milliseconds

1234567891011>>