HomeSort by relevance Sort by last modified time
    Searched defs:Create (Results 126 - 150 of 305) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webrtc/src/system_wrappers/source/
event_posix.cc 25 EventWrapper* EventPosix::Create()
226 _timerEvent = static_cast<EventPosix*>(EventWrapper::Create());
file_impl.cc 24 FileWrapper* FileWrapper::Create()
thread_posix.cc 77 ThreadWrapper* ThreadPosix::Create(ThreadRunFunction func, ThreadObj obj,
102 _event(EventWrapper::Create()),
  /frameworks/compile/slang/
slang_rs_export_foreach.cpp 390 RSExportForEach *RSExportForEach::Create(RSContext *Context,
424 clang::RecordDecl::Create(Ctx, clang::TTK_Struct,
431 clang::FieldDecl::Create(Ctx,
444 // Create an export type iff we have a valid usrData type
448 RSExportType *ET = RSExportType::Create(Context, T.getTypePtr());
466 FE->mInType = RSExportType::Create(Context, T);
474 FE->mOutType = RSExportType::Create(Context, T);
478 FE->mOutType = RSExportType::Create(Context, T);
slang_rs_export_func.cpp 52 RSExportFunc *RSExportFunc::Create(RSContext *Context,
75 clang::RecordDecl::Create(Ctx, clang::TTK_Struct,
92 clang::FieldDecl::Create(Ctx,
111 RSExportType::Create(Context, T.getTypePtr());
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 590 /// The goal of all lexer rules/methods is to create a token object.
592 /// create a single token. NextToken will return this object after
652 /// tree nodes that have payload objects. We need to create a Token object
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeAdaptor.cs 46 * cannot be tracked as they might not use the adaptor to create foo, bar.
61 public virtual object Create(IToken payload) {
64 return Create(payload.Type, payload.Text);
66 object node = adaptor.Create(payload);
82 // walk the tree and emit create and add child events
89 /** <summary>^(A B C): emit create A, create B, add child, ...</summary> */
135 object n = this.Create(child);
140 object n = this.Create(newRoot);
146 public virtual object Create(int tokenType, IToken fromToken)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTreeAdaptor.cs 45 * expensive: we have to create a hashtable with all tree nodes in it.
52 return Create(null);
56 * Create tree node that holds the start and stop tokens associated
195 return BecomeRoot(Create(newRoot), oldRoot);
198 public virtual object Create(int tokenType, IToken fromToken) {
202 ITree t = (ITree)Create(fromToken);
206 public virtual object Create(int tokenType, IToken fromToken, string text) {
208 return Create(tokenType, text);
213 ITree t = (ITree)Create(fromToken);
217 public virtual object Create(int tokenType, string text)
    [all...]
ITreeAdaptor.cs 36 * How to create and navigate trees. Rather than have a separate factory
52 * Create a tree node from Token object; for CommonTree type trees,
54 * common create call.
61 object Create(IToken payload);
178 * Create a node for newRoot make it the root of oldRoot.
189 * calls create(Token child) and then plain becomeRoot(node, node)
190 * because it needs to trap calls to create, but it can't since it delegates
197 * Create a new node derived from a token, with a new token type.
206 object Create(int tokenType, IToken fromToken);
209 * Same as create(tokenType,fromToken) except set the text too
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTreeAdaptor.cs 48 * expensive: we have to create a hashtable with all tree nodes in it.
56 return Create( null );
60 * Create tree node that holds the start and stop tokens associated
239 return BecomeRoot( Create( newRoot ), oldRoot );
242 public virtual object Create( int tokenType, IToken fromToken )
246 object t = Create( fromToken );
250 public virtual object Create( int tokenType, IToken fromToken, string text )
253 return Create( tokenType, text );
258 object result = Create(fromToken);
262 public virtual object Create(IToken fromToken, string text
    [all...]
ITreeAdaptor.cs 37 * How to create and navigate trees. Rather than have a separate factory
54 * Create a tree node from Token object; for CommonTree type trees,
56 * common create call.
63 object Create(IToken payload);
66 * Create a new node derived from a token, with a new token type.
75 object Create(int tokenType, IToken fromToken);
78 * Same as create(tokenType,fromToken) except set the text too.
87 object Create(int tokenType, IToken fromToken, string text);
90 * Same as create(fromToken) except set the text too.
99 object Create(IToken fromToken, string text)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs 47 * cannot be tracked as they might not use the adaptor to create foo, bar.
64 public virtual object Create( IToken payload )
69 return Create( payload.Type, payload.Text );
71 object node = adaptor.Create( payload );
90 // walk the tree and emit create and add child events
97 /** <summary>^(A B C): emit create A, create B, add child, ...</summary> */
174 object n = this.Create( child );
180 object n = this.Create( newRoot );
186 public virtual object Create( int tokenType, IToken fromToken
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeAdaptor`1.cs 40 * Create a tree node from Token object; for CommonTree type trees,
42 * common create call.
49 T Create(IToken payload);
166 * Create a node for newRoot make it the root of oldRoot.
177 * calls create(Token child) and then plain becomeRoot(node, node)
178 * because it needs to trap calls to create, but it can't since it delegates
185 * Create a new node derived from a token, with a new token type.
194 T Create(int tokenType, IToken fromToken);
197 * Same as create(tokenType,fromToken) except set the text too.
206 T Create(int tokenType, IToken fromToken, string text)
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_manager.cc 13 BrowserAccessibility* BrowserAccessibilityFactory::Create() {
14 return BrowserAccessibility::Create();
28 BrowserAccessibilityManager* BrowserAccessibilityManager::Create(
339 // Otherwise, create a new instance.
340 instance = factory_->Create();
browser_accessibility_win_unittest.cc 31 virtual BrowserAccessibility* Create() {
71 // Create WebAccessibility objects for a simple document tree,
100 BrowserAccessibilityManager::Create(
114 BrowserAccessibilityManager::Create(
147 // Create WebAccessibility objects for a simple document tree,
167 BrowserAccessibilityManager::Create(
227 // Create WebAccessibility objects for a simple document tree,
256 BrowserAccessibilityManager::Create(
296 BrowserAccessibilityManager* manager = BrowserAccessibilityManager::Create(
  /external/chromium/chrome/browser/
browsing_data_indexed_db_helper.cc 183 BrowsingDataIndexedDBHelper* BrowsingDataIndexedDBHelper::Create(
gpu_process_host_ui_shim.cc 129 GpuProcessHostUIShim* GpuProcessHostUIShim::Create(int host_id) {
process_singleton_win.cc 53 // since it isn't guaranteed we will get it. It is better to create it
65 // We now own the mutex so we are the only process that can create the
73 Create();
167 return Create() ? PROCESS_NONE : PROFILE_IN_USE;
170 // For windows, there is no need to call Create() since the call is made in
173 bool ProcessSingleton::Create() {
  /external/chromium/chrome/browser/extensions/
extension_process_manager.cc 84 ExtensionProcessManager* ExtensionProcessManager::Create(Profile* profile) {
177 // Don't create multiple background hosts for an extension.
190 host->CreateRenderViewSoon(NULL); // create a RenderViewHost with no view
394 "We shouldn't be trying to create an incognito extension view unless "
410 // background page is shared with incognito, so we don't create another.
458 // incognito window. Watch for new browsers and create the hosts if
  /external/chromium/chrome/browser/notifications/
notification_ui_manager.cc 69 NotificationUIManager* NotificationUIManager::Create(PrefService* local_state) {
70 BalloonCollection* balloons = BalloonCollection::Create();
  /external/chromium/chrome/browser/sync/glue/
http_bridge.cc 32 // Lazily create the context.
62 sync_api::HttpPostProviderInterface* HttpBridgeFactory::Create() {
76 // Create empty, in-memory cookie store.
  /external/chromium/chrome/browser/ui/
input_window_dialog_win.cc 227 InputWindowDialog* InputWindowDialog::Create(HWND parent,
  /external/chromium/chrome/browser/ui/views/frame/
browser_frame_win.cc 37 BrowserFrame* BrowserFrame::Create(BrowserView* browser_view,
  /external/chromium/third_party/libjingle/source/talk/base/
asynctcpsocket.cc 51 AsyncTCPSocket* AsyncTCPSocket::Create(SocketFactory* factory, bool listen) {
  /external/clang/include/clang/AST/
DependentDiagnostic.h 38 static DependentDiagnostic *Create(ASTContext &Context,
48 DependentDiagnostic *DD = Create(Context, Parent, PDiag);
101 static DependentDiagnostic *Create(ASTContext &Context,

Completed in 546 milliseconds

1 2 3 4 56 7 8 91011>>