/external/guice/core/src/com/google/inject/internal/ |
D | UniqueAnnotations.java | 43 return new Internal() { in create() 49 return Internal.class; in create() 53 return "@" + Internal.class.getName() + "(value=" + value + ")"; in create() 57 return o instanceof Internal in create() 58 && ((Internal) o).value() == value(); in create() 68 @interface Internal {
|
/external/webrtc/talk/app/webrtc/objc/ |
D | RTCPeerConnectionFactory.mm | 32 #import "RTCPeerConnectionFactory+Internal.h" 36 #import "RTCAudioTrack+Internal.h" 37 #import "RTCICEServer+Internal.h" 38 #import "RTCMediaConstraints+Internal.h" 39 #import "RTCMediaSource+Internal.h" 40 #import "RTCMediaStream+Internal.h" 41 #import "RTCMediaStreamTrack+Internal.h" 42 #import "RTCPeerConnection+Internal.h" 44 #import "RTCPeerConnectionInterface+Internal.h" 45 #import "RTCVideoCapturer+Internal.h" [all …]
|
D | RTCDataChannel+Internal.h | 33 @interface RTCDataBuffer (Internal) 41 @interface RTCDataChannelInit (Internal) 47 @interface RTCDataChannel (Internal)
|
D | RTCPeerConnection.mm | 32 #import "RTCPeerConnection+Internal.h" 34 #import "RTCDataChannel+Internal.h" 36 #import "RTCICECandidate+Internal.h" 37 #import "RTCICEServer+Internal.h" 38 #import "RTCMediaConstraints+Internal.h" 39 #import "RTCMediaStream+Internal.h" 40 #import "RTCMediaStreamTrack+Internal.h" 42 #import "RTCSessionDescription+Internal.h" 46 #import "RTCStatsReport+Internal.h" 269 @implementation RTCPeerConnection (Internal) category
|
D | RTCAVFoundationVideoSource.mm | 28 #import "RTCAVFoundationVideoSource+Internal.h" 30 #import "RTCMediaConstraints+Internal.h" 31 #import "RTCMediaSource+Internal.h" 32 #import "RTCPeerConnectionFactory+Internal.h" 33 #import "RTCVideoSource+Internal.h"
|
D | RTCVideoTrack.mm | 32 #import "RTCVideoTrack+Internal.h" 34 #import "RTCMediaStreamTrack+Internal.h" 35 #import "RTCPeerConnectionFactory+Internal.h" 37 #import "RTCMediaSource+Internal.h" 38 #import "RTCVideoSource+Internal.h" 116 @implementation RTCVideoTrack (Internal) category
|
D | RTCMediaStream.mm | 32 #import "RTCMediaStream+Internal.h" 34 #import "RTCAudioTrack+Internal.h" 35 #import "RTCMediaStreamTrack+Internal.h" 36 #import "RTCVideoTrack+Internal.h" 106 @implementation RTCMediaStream (Internal) category
|
/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/ws/ |
D | WebSocketCall.java | 24 import com.squareup.okhttp.internal.Internal; 113 Internal.instance.callEnqueue(call, responseCallback, true); in enqueue() 125 Internal.instance.callEngineReleaseConnection(call); in createWebSocket() 154 Connection connection = Internal.instance.callEngineGetConnection(call); in createWebSocket() 156 if (!Internal.instance.clearOwner(connection)) { in createWebSocket() 160 BufferedSource source = Internal.instance.connectionRawSource(connection); in createWebSocket() 161 BufferedSink sink = Internal.instance.connectionRawSink(connection); in createWebSocket() 167 Internal.instance.connectionSetOwner(connection, webSocket); in createWebSocket() 199 Internal.instance.closeIfOwnedBy(connection, this); in closeConnection()
|
/external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/ |
D | AndroidFileHandle.java | 73 if (type == FileType.Internal) { in read() 84 if (type == FileType.Internal) { in list() 99 if (type == FileType.Internal) { in list() 125 if (type == FileType.Internal) { in list() 150 if (type == FileType.Internal) { in list() 175 if (type == FileType.Internal) { in isDirectory() 186 if (type == FileType.Internal) { in exists() 204 if (type == FileType.Internal) { in length()
|
D | AndroidFiles.java | 50 FileHandle handle = new AndroidFileHandle(type == FileType.Internal ? assets : null, path, type); in getFileHandle() 51 …if (expansionFile != null && type == FileType.Internal) handle = getZipFileHandleIfExists(handle, … in getFileHandle() 76 FileHandle handle = new AndroidFileHandle(assets, path, FileType.Internal); in internal()
|
/external/clang/test/SemaCXX/ |
D | attr-weak.cpp | 34 namespace { class Internal {}; } class 35 template struct Test7<Internal>; 40 __attribute__((weak)) auto Test9 = Internal(); // expected-error {{weak declaration cannot have int…
|
D | attr-selectany.cpp | 35 namespace { class Internal {}; } class 36 __declspec(selectany) auto x8 = Internal(); // expected-error {{'selectany' can only be applied to …
|
/external/clang/test/CodeGenCXX/ |
D | static-member-variable-explicit-specialization.cpp | 74 template<typename T> struct Internal { static int a; }; struct 75 template<typename T> int Internal<T>::a = foo(); 77 int *use_internal_a = &Internal<int>::a;
|
/external/tcpdump/tests/ |
D | eigrp1-v.out | 105 IP Internal routes TLV (0x0102), length: 28 108 IP Internal routes TLV (0x0102), length: 29 111 IP Internal routes TLV (0x0102), length: 28 114 IP Internal routes TLV (0x0102), length: 29 117 IP Internal routes TLV (0x0102), length: 28 120 IP Internal routes TLV (0x0102), length: 29 123 IP Internal routes TLV (0x0102), length: 28 130 IP Internal routes TLV (0x0102), length: 28 133 IP Internal routes TLV (0x0102), length: 29 136 IP Internal routes TLV (0x0102), length: 28 [all …]
|
/external/libgdx/gdx/src/com/badlogic/gdx/files/ |
D | FileHandle.java | 133 if (type == FileType.Classpath || (type == FileType.Internal && !file().exists()) in read() 265 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot write to an internal file: " … in write() 319 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot write to an internal file: " … in writer() 515 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot mkdirs with an internal file:… in mkdirs() 523 case Internal: in exists() 536 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot delete an internal file: " + … in delete() 544 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot delete an internal file: " + … in deleteDirectory() 558 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot delete an internal file: " + … in emptyDirectory() 592 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot move an internal file: " + fi… in moveTo() 601 if (type == FileType.Classpath || (type == FileType.Internal && !file.exists())) { in length()
|
/external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/ |
D | CacheAdapterTest.java | 21 import com.squareup.okhttp.internal.Internal; 93 Internal.instance.setCache(client, new CacheAdapter(responseCache)); in get_httpGet() 116 Internal.instance.setCache(client, new CacheAdapter(responseCache)); in get_httpsGet() 160 Internal.instance.setCache(client, new CacheAdapter(responseCache)); in put_httpGet() 199 Internal.instance.setCache(client, new CacheAdapter(responseCache)); in put_httpPost() 231 Internal.instance.setCache(client, new CacheAdapter(responseCache)); in put_httpsGet()
|
/external/icu/android_icu4j/resources/android/icu/ |
D | ICUConfig.properties | 23 # [Internal Use Only] 45 # [Internal Use Only] 52 # [Internal Use Only] 58 # [Internal Use Only]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/ |
D | ICUConfig.properties | 23 # [Internal Use Only] 45 # [Internal Use Only] 52 # [Internal Use Only] 58 # [Internal Use Only]
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | HttpEngine.java | 34 import com.squareup.okhttp.internal.Internal; 200 Internal.instance.setOwner(connection, this); in HttpEngine() 225 InternalCache responseCache = Internal.instance.internalCache(client); in sendRequest() 249 transport = Internal.instance.newTransport(connection, this); in sendRequest() 282 Internal.instance.recycle(client.getConnectionPool(), connection); in sendRequest() 329 Internal.instance.connectAndSetOwner(client, connection, this, networkRequest); in connect() 338 if (networkRequest.method().equals("GET") || Internal.instance.isReadable(pooled)) { in createNextConnection() 493 if (Internal.instance.recycleCount(connection) > 0) return; in connectFailed() 530 InternalCache responseCache = Internal.instance.internalCache(client); in maybeCache() 577 Internal.instance.closeIfOwnedBy(connection, this); in disconnect() [all …]
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/preloader/ |
D | FileWrapper.java | 111 if (type == FileType.Classpath || (type == FileType.Internal && !file.exists()) in read() 264 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot write to an internal file: " … in write() 320 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot write to an internal file: " … in writer() 464 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot mkdirs with an internal file:… in mkdirs() 472 case Internal: in exists() 485 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot delete an internal file: " + … in delete() 493 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot delete an internal file: " + … in deleteDirectory() 527 …if (type == FileType.Internal) throw new GdxRuntimeException("Cannot move an internal file: " + fi… in moveTo()
|
/external/protobuf/gtest/xcode/gtest.xcodeproj/ |
D | project.pbxproj | 41 …3BF6F2A00E79B5AD000F2EEE /* gtest-type-util.h in Copy Headers Internal */ = {isa = PBXBuildFile; f… 50 …404884A00E2F7BE600CF7658 /* gtest-death-test-internal.h in Copy Headers Internal */ = {isa = PBXBu… 51 …404884A10E2F7BE600CF7658 /* gtest-filepath.h in Copy Headers Internal */ = {isa = PBXBuildFile; fi… 52 …404884A20E2F7BE600CF7658 /* gtest-internal.h in Copy Headers Internal */ = {isa = PBXBuildFile; fi… 53 …404884A30E2F7BE600CF7658 /* gtest-port.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRe… 54 …404884A40E2F7BE600CF7658 /* gtest-string.h in Copy Headers Internal */ = {isa = PBXBuildFile; file… 59 …40899F500FFA7281000B29AE /* gtest-tuple.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileR… 78 …4539C9380EC280E200A70F4C /* gtest-linked_ptr.h in Copy Headers Internal */ = {isa = PBXBuildFile; … 79 …4539C9390EC280E200A70F4C /* gtest-param-util-generated.h in Copy Headers Internal */ = {isa = PBXB… 80 …4539C93A0EC280E200A70F4C /* gtest-param-util.h in Copy Headers Internal */ = {isa = PBXBuildFile; … [all …]
|
/external/google-breakpad/src/testing/gtest/xcode/gtest.xcodeproj/ |
D | project.pbxproj | 41 …3BF6F2A00E79B5AD000F2EEE /* gtest-type-util.h in Copy Headers Internal */ = {isa = PBXBuildFile; f… 50 …404884A00E2F7BE600CF7658 /* gtest-death-test-internal.h in Copy Headers Internal */ = {isa = PBXBu… 51 …404884A10E2F7BE600CF7658 /* gtest-filepath.h in Copy Headers Internal */ = {isa = PBXBuildFile; fi… 52 …404884A20E2F7BE600CF7658 /* gtest-internal.h in Copy Headers Internal */ = {isa = PBXBuildFile; fi… 53 …404884A30E2F7BE600CF7658 /* gtest-port.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRe… 54 …404884A40E2F7BE600CF7658 /* gtest-string.h in Copy Headers Internal */ = {isa = PBXBuildFile; file… 59 …40899F500FFA7281000B29AE /* gtest-tuple.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileR… 78 …4539C9380EC280E200A70F4C /* gtest-linked_ptr.h in Copy Headers Internal */ = {isa = PBXBuildFile; … 79 …4539C9390EC280E200A70F4C /* gtest-param-util-generated.h in Copy Headers Internal */ = {isa = PBXB… 80 …4539C93A0EC280E200A70F4C /* gtest-param-util.h in Copy Headers Internal */ = {isa = PBXBuildFile; … [all …]
|
/external/v8/src/compiler/ |
D | typer.cc | 517 Type* Typer::Visitor::TypeStart(Node* node) { return Type::Internal(zone()); } in TypeStart() 549 return Type::Internal(); // TODO(rossberg): Add int64 bitset type? in TypeInt64Constant() 581 return Type::Internal(zone()); in TypeExternalConstant() 630 return Type::Internal(zone()); in TypeFrameState() 635 return Type::Internal(zone()); in TypeStateValues() 640 return Type::Internal(zone()); in TypeObjectState() 645 return Type::Internal(zone()); in TypeTypedStateValues() 1441 DCHECK(outer->Maybe(Type::Internal())); in WrapContextTypeForInput() 1997 Type* Typer::Visitor::TypeWord64And(Node* node) { return Type::Internal(); } in TypeWord64And() 2000 Type* Typer::Visitor::TypeWord64Or(Node* node) { return Type::Internal(); } in TypeWord64Or() [all …]
|
/external/protobuf/src/google/protobuf/stubs/ |
D | common.cc | 247 struct Mutex::Internal { struct in google::protobuf::Mutex 256 : mInternal(new Internal) { in Mutex() 287 struct Mutex::Internal { struct in google::protobuf::Mutex 292 : mInternal(new Internal) { in Mutex()
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/xcode/gtest.xcodeproj/ |
D | project.pbxproj | 41 …3BF6F2A00E79B5AD000F2EEE /* gtest-type-util.h in Copy Headers Internal */ = {isa = PBXBuildFile; f… 50 …404884A00E2F7BE600CF7658 /* gtest-death-test-internal.h in Copy Headers Internal */ = {isa = PBXBu… 51 …404884A10E2F7BE600CF7658 /* gtest-filepath.h in Copy Headers Internal */ = {isa = PBXBuildFile; fi… 52 …404884A20E2F7BE600CF7658 /* gtest-internal.h in Copy Headers Internal */ = {isa = PBXBuildFile; fi… 53 …404884A30E2F7BE600CF7658 /* gtest-port.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileRe… 54 …404884A40E2F7BE600CF7658 /* gtest-string.h in Copy Headers Internal */ = {isa = PBXBuildFile; file… 59 …40899F500FFA7281000B29AE /* gtest-tuple.h in Copy Headers Internal */ = {isa = PBXBuildFile; fileR… 78 …4539C9380EC280E200A70F4C /* gtest-linked_ptr.h in Copy Headers Internal */ = {isa = PBXBuildFile; … 79 …4539C9390EC280E200A70F4C /* gtest-param-util-generated.h in Copy Headers Internal */ = {isa = PBXB… 80 …4539C93A0EC280E200A70F4C /* gtest-param-util.h in Copy Headers Internal */ = {isa = PBXBuildFile; … [all …]
|