/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/ |
CompilerInstance.h | 200 /// - The diagnostics engine should have already been created by the client. 344 "Compiler instance has no diagnostic client!"); 599 /// Note that this routine also replaces the diagnostic client, 602 /// \param Client If non-NULL, a diagnostic client that will be 606 /// \param ShouldOwnClient If Client is non-NULL, specifies whether 607 /// the diagnostic object should take ownership of the client. 608 void createDiagnostics(DiagnosticConsumer *Client = nullptr, 613 /// If no diagnostic client is provided, this creates a 616 /// releasing the returned DiagnosticsEngine's client eventually [all...] |
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/Frontend/ |
CompilerInstance.h | 200 /// - The diagnostics engine should have already been created by the client. 344 "Compiler instance has no diagnostic client!"); 599 /// Note that this routine also replaces the diagnostic client, 602 /// \param Client If non-NULL, a diagnostic client that will be 606 /// \param ShouldOwnClient If Client is non-NULL, specifies whether 607 /// the diagnostic object should take ownership of the client. 608 void createDiagnostics(DiagnosticConsumer *Client = nullptr, 613 /// If no diagnostic client is provided, this creates a 616 /// releasing the returned DiagnosticsEngine's client eventually [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/ |
CompilerInstance.h | 200 /// - The diagnostics engine should have already been created by the client. 344 "Compiler instance has no diagnostic client!"); 599 /// Note that this routine also replaces the diagnostic client, 602 /// \param Client If non-NULL, a diagnostic client that will be 606 /// \param ShouldOwnClient If Client is non-NULL, specifies whether 607 /// the diagnostic object should take ownership of the client. 608 void createDiagnostics(DiagnosticConsumer *Client = nullptr, 613 /// If no diagnostic client is provided, this creates a 616 /// releasing the returned DiagnosticsEngine's client eventually [all...] |
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/Frontend/ |
CompilerInstance.h | 200 /// - The diagnostics engine should have already been created by the client. 344 "Compiler instance has no diagnostic client!"); 599 /// Note that this routine also replaces the diagnostic client, 602 /// \param Client If non-NULL, a diagnostic client that will be 606 /// \param ShouldOwnClient If Client is non-NULL, specifies whether 607 /// the diagnostic object should take ownership of the client. 608 void createDiagnostics(DiagnosticConsumer *Client = nullptr, 613 /// If no diagnostic client is provided, this creates a 616 /// releasing the returned DiagnosticsEngine's client eventually [all...] |
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/Frontend/ |
CompilerInstance.h | 200 /// - The diagnostics engine should have already been created by the client. 344 "Compiler instance has no diagnostic client!"); 599 /// Note that this routine also replaces the diagnostic client, 602 /// \param Client If non-NULL, a diagnostic client that will be 606 /// \param ShouldOwnClient If Client is non-NULL, specifies whether 607 /// the diagnostic object should take ownership of the client. 608 void createDiagnostics(DiagnosticConsumer *Client = nullptr, 613 /// If no diagnostic client is provided, this creates a 616 /// releasing the returned DiagnosticsEngine's client eventually [all...] |
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/Frontend/ |
CompilerInstance.h | 200 /// - The diagnostics engine should have already been created by the client. 344 "Compiler instance has no diagnostic client!"); 599 /// Note that this routine also replaces the diagnostic client, 602 /// \param Client If non-NULL, a diagnostic client that will be 606 /// \param ShouldOwnClient If Client is non-NULL, specifies whether 607 /// the diagnostic object should take ownership of the client. 608 void createDiagnostics(DiagnosticConsumer *Client = nullptr, 613 /// If no diagnostic client is provided, this creates a 616 /// releasing the returned DiagnosticsEngine's client eventually [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Frontend/ |
CompilerInstance.h | 200 /// - The diagnostics engine should have already been created by the client. 344 "Compiler instance has no diagnostic client!"); 599 /// Note that this routine also replaces the diagnostic client, 602 /// \param Client If non-NULL, a diagnostic client that will be 606 /// \param ShouldOwnClient If Client is non-NULL, specifies whether 607 /// the diagnostic object should take ownership of the client. 608 void createDiagnostics(DiagnosticConsumer *Client = nullptr, 613 /// If no diagnostic client is provided, this creates a 616 /// releasing the returned DiagnosticsEngine's client eventually [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/ |
connection.py | 35 __all__ = [ 'Client', 'Listener', 'Pipe' ] 161 def Client(address, family=None, authkey=None): 355 # ERROR_NO_DATA can occur if a client has already connected, 465 return ConnectionWrapper(Client(*args, **kwds), _xml_dumps, _xml_loads)
|
/prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/ |
connection.py | 35 __all__ = [ 'Client', 'Listener', 'Pipe' ] 161 def Client(address, family=None, authkey=None): 355 # ERROR_NO_DATA can occur if a client has already connected, 465 return ConnectionWrapper(Client(*args, **kwds), _xml_dumps, _xml_loads)
|
/prebuilts/go/darwin-x86/src/cmd/go/ |
http.go | 26 // httpClient is the default HTTP client, but a variable so it can be 33 var impatientInsecureHTTPClient = &http.Client{
|
/prebuilts/go/darwin-x86/src/crypto/tls/ |
example_test.go | 93 client := &http.Client{ 103 resp, err := client.Get(server.URL)
|
/prebuilts/go/darwin-x86/src/net/http/ |
filetransport.go | 27 // c := &http.Client{Transport: t}
|
http_test.go | 93 "net/http.(*Client).Get": true,
|
/prebuilts/go/darwin-x86/src/net/ |
tcpsock_test.go | 133 // Client connection. 175 // The benchmark creates GOMAXPROCS client/server pairs. 176 // Each pair creates 4 goroutines: client reader/writer and server reader/writer. 186 // Setup P client/server connections. 220 // Client writer. 274 // Client reader. 494 client, err := Dial("tcp", ln.Addr().String()) 498 defer client.Close() 510 _, err = io.ReadFull(client, buf[:]) 530 if _, err = io.ReadFull(client, buf[:]); err != nil [all...] |
/prebuilts/go/linux-x86/src/cmd/go/ |
http.go | 26 // httpClient is the default HTTP client, but a variable so it can be 33 var impatientInsecureHTTPClient = &http.Client{
|
/prebuilts/go/linux-x86/src/crypto/tls/ |
example_test.go | 93 client := &http.Client{ 103 resp, err := client.Get(server.URL)
|
/prebuilts/go/linux-x86/src/net/http/ |
filetransport.go | 27 // c := &http.Client{Transport: t}
|
http_test.go | 93 "net/http.(*Client).Get": true,
|
/prebuilts/go/linux-x86/src/net/ |
tcpsock_test.go | 133 // Client connection. 175 // The benchmark creates GOMAXPROCS client/server pairs. 176 // Each pair creates 4 goroutines: client reader/writer and server reader/writer. 186 // Setup P client/server connections. 220 // Client writer. 274 // Client reader. 494 client, err := Dial("tcp", ln.Addr().String()) 498 defer client.Close() 510 _, err = io.ReadFull(client, buf[:]) 530 if _, err = io.ReadFull(client, buf[:]); err != nil [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
connection.py | 35 __all__ = [ 'Client', 'Listener', 'Pipe' ] 161 def Client(address, family=None, authkey=None): 355 # ERROR_NO_DATA can occur if a client has already connected, 465 return ConnectionWrapper(Client(*args, **kwds), _xml_dumps, _xml_loads)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
connection.py | 35 __all__ = [ 'Client', 'Listener', 'Pipe' ] 161 def Client(address, family=None, authkey=None): 355 # ERROR_NO_DATA can occur if a client has already connected, 465 return ConnectionWrapper(Client(*args, **kwds), _xml_dumps, _xml_loads)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
AndroidLaunchController.java | 27 import com.android.ddmlib.Client; 144 private final ArrayList<Client> mUnknownClientsWaitingForDebugger = new ArrayList<Client>(); [all...] |
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/ |
Benchmark.java | 51 /** Which client to run.*/ 53 Client client; field in class:Benchmark 99 HttpClient httpClient = client.create(); 101 // Prepare the client & server 149 client, modifiers, bodyByteCount, headerCount, concurrencyLevel);
|
/external/pdfium/xfa/fwl/ |
cfwl_form.cpp | 75 : FWL_WidgetHit::Client;
|
/frameworks/av/services/audioflinger/ |
PlaybackTracks.h | 26 const sp<Client>& client,
|