Home
last modified time | relevance | path

Searched refs:abc (Results 1 – 25 of 1059) sorted by relevance

12345678910>>...43

/external/grpc-grpc/src/python/grpcio_testing/grpc_testing/
D__init__.py16 import abc
24 class UnaryUnaryChannelRpc(six.with_metaclass(abc.ABCMeta)):
30 @abc.abstractmethod
40 @abc.abstractmethod
45 @abc.abstractmethod
58 class UnaryStreamChannelRpc(six.with_metaclass(abc.ABCMeta)):
64 @abc.abstractmethod
74 @abc.abstractmethod
83 @abc.abstractmethod
88 @abc.abstractmethod
[all …]
/external/u-boot/common/
Dandroid_ab.c19 struct android_bootloader_control *abc) in android_boot_control_compute_crc() argument
21 return crc32(0, (void *)abc, offsetof(typeof(*abc), crc32_le)); in android_boot_control_compute_crc()
29 void android_boot_control_default(struct android_bootloader_control *abc) in android_boot_control_default() argument
39 memcpy(abc->slot_suffix, "a\0\0\0", 4); in android_boot_control_default()
40 abc->magic = ANDROID_BOOT_CTRL_MAGIC; in android_boot_control_default()
41 abc->version = ANDROID_BOOT_CTRL_VERSION; in android_boot_control_default()
42 abc->nb_slot = ANDROID_NUM_SLOTS; in android_boot_control_default()
43 memset(abc->reserved0, 0, sizeof(abc->reserved0)); in android_boot_control_default()
44 for (i = 0; i < abc->nb_slot; ++i) { in android_boot_control_default()
45 abc->slot_info[i] = metadata; in android_boot_control_default()
[all …]
/external/mockftpserver/tags/2.3/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy58 assert fileSystem.path(null, "abc") == "abc"
59 assert fileSystem.path("abc", null) == "abc"
61 assert fileSystem.path("", "abc") == "abc"
62 assert fileSystem.path("abc", "") == "abc"
63 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
64 assert fileSystem.path("abc\\", "def") == "abc\\def"
65 assert fileSystem.path("c:/abc/", "def") == "c:\\abc\\def"
66 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
67 assert fileSystem.path("abc", "/def") == "abc\\def"
68 assert fileSystem.path("abc/def", "..") == "abc"
[all …]
DUnixFakeFileSystemTest.groovy42 final FILENAME = 'abc.txt'
53 assert fileSystem.path(null, "abc") == "abc"
54 assert fileSystem.path("abc", null) == "abc"
56 assert fileSystem.path("", "abc") == "abc"
57 assert fileSystem.path("abc", "") == "abc"
58 assert fileSystem.path("abc", "DEF") == "abc/DEF"
59 assert fileSystem.path("abc/", "def") == "abc/def"
60 assert fileSystem.path("/abc/", "def") == "/abc/def"
62 assert fileSystem.path("abc", "/def") == "abc/def"
63 assert fileSystem.path("abc", "def/..") == "abc"
[all …]
/external/mockftpserver/tags/2.0.1/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy60 assert fileSystem.path(null, "abc") == "abc"
61 assert fileSystem.path("abc", null) == "abc"
63 assert fileSystem.path("", "abc") == "abc"
64 assert fileSystem.path("abc", "") == "abc"
65 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
66 assert fileSystem.path("abc\\", "def") == "abc\\def"
67 assert fileSystem.path("c:/abc/", "def") == "c:\\abc\\def"
68 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
69 assert fileSystem.path("abc", "/def") == "abc\\def"
70 assert fileSystem.path("abc/def", "..") == "abc"
[all …]
DUnixFakeFileSystemTest.groovy44 final FILENAME = 'abc.txt'
55 assert fileSystem.path(null, "abc") == "abc"
56 assert fileSystem.path("abc", null) == "abc"
58 assert fileSystem.path("", "abc") == "abc"
59 assert fileSystem.path("abc", "") == "abc"
60 assert fileSystem.path("abc", "DEF") == "abc/DEF"
61 assert fileSystem.path("abc/", "def") == "abc/def"
62 assert fileSystem.path("/abc/", "def") == "/abc/def"
64 assert fileSystem.path("abc", "/def") == "abc/def"
65 assert fileSystem.path("abc", "def/..") == "abc"
[all …]
/external/mockftpserver/tags/2.5/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy58 assert fileSystem.path(null, "abc") == "abc"
59 assert fileSystem.path("abc", null) == "abc"
61 assert fileSystem.path("", "abc") == "abc"
62 assert fileSystem.path("abc", "") == "abc"
63 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
64 assert fileSystem.path("abc\\", "def") == "abc\\def"
65 assert fileSystem.path("c:/abc/", "def") == "c:\\abc\\def"
66 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
67 assert fileSystem.path("abc", "/def") == "abc\\def"
68 assert fileSystem.path("abc/def", "..") == "abc"
[all …]
DUnixFakeFileSystemTest.groovy42 final FILENAME = 'abc.txt'
53 assert fileSystem.path(null, "abc") == "abc"
54 assert fileSystem.path("abc", null) == "abc"
56 assert fileSystem.path("", "abc") == "abc"
57 assert fileSystem.path("abc", "") == "abc"
58 assert fileSystem.path("abc", "DEF") == "abc/DEF"
59 assert fileSystem.path("abc/", "def") == "abc/def"
60 assert fileSystem.path("/abc/", "def") == "/abc/def"
62 assert fileSystem.path("abc", "/def") == "abc/def"
63 assert fileSystem.path("abc", "def/..") == "abc"
[all …]
/external/mockftpserver/tags/2.4/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy58 assert fileSystem.path(null, "abc") == "abc"
59 assert fileSystem.path("abc", null) == "abc"
61 assert fileSystem.path("", "abc") == "abc"
62 assert fileSystem.path("abc", "") == "abc"
63 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
64 assert fileSystem.path("abc\\", "def") == "abc\\def"
65 assert fileSystem.path("c:/abc/", "def") == "c:\\abc\\def"
66 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
67 assert fileSystem.path("abc", "/def") == "abc\\def"
68 assert fileSystem.path("abc/def", "..") == "abc"
[all …]
DUnixFakeFileSystemTest.groovy42 final FILENAME = 'abc.txt'
53 assert fileSystem.path(null, "abc") == "abc"
54 assert fileSystem.path("abc", null) == "abc"
56 assert fileSystem.path("", "abc") == "abc"
57 assert fileSystem.path("abc", "") == "abc"
58 assert fileSystem.path("abc", "DEF") == "abc/DEF"
59 assert fileSystem.path("abc/", "def") == "abc/def"
60 assert fileSystem.path("/abc/", "def") == "/abc/def"
62 assert fileSystem.path("abc", "/def") == "abc/def"
63 assert fileSystem.path("abc", "def/..") == "abc"
[all …]
/external/mockftpserver/tags/2.0.2/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy60 assert fileSystem.path(null, "abc") == "abc"
61 assert fileSystem.path("abc", null) == "abc"
63 assert fileSystem.path("", "abc") == "abc"
64 assert fileSystem.path("abc", "") == "abc"
65 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
66 assert fileSystem.path("abc\\", "def") == "abc\\def"
67 assert fileSystem.path("c:/abc/", "def") == "c:\\abc\\def"
68 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
69 assert fileSystem.path("abc", "/def") == "abc\\def"
70 assert fileSystem.path("abc/def", "..") == "abc"
[all …]
DUnixFakeFileSystemTest.groovy44 final FILENAME = 'abc.txt'
55 assert fileSystem.path(null, "abc") == "abc"
56 assert fileSystem.path("abc", null) == "abc"
58 assert fileSystem.path("", "abc") == "abc"
59 assert fileSystem.path("abc", "") == "abc"
60 assert fileSystem.path("abc", "DEF") == "abc/DEF"
61 assert fileSystem.path("abc/", "def") == "abc/def"
62 assert fileSystem.path("/abc/", "def") == "/abc/def"
64 assert fileSystem.path("abc", "/def") == "abc/def"
65 assert fileSystem.path("abc", "def/..") == "abc"
[all …]
/external/mockftpserver/tags/2.2/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy58 assert fileSystem.path(null, "abc") == "abc"
59 assert fileSystem.path("abc", null) == "abc"
61 assert fileSystem.path("", "abc") == "abc"
62 assert fileSystem.path("abc", "") == "abc"
63 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
64 assert fileSystem.path("abc\\", "def") == "abc\\def"
65 assert fileSystem.path("c:/abc/", "def") == "c:\\abc\\def"
66 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
67 assert fileSystem.path("abc", "/def") == "abc\\def"
68 assert fileSystem.path("abc/def", "..") == "abc"
[all …]
DUnixFakeFileSystemTest.groovy42 final FILENAME = 'abc.txt'
53 assert fileSystem.path(null, "abc") == "abc"
54 assert fileSystem.path("abc", null) == "abc"
56 assert fileSystem.path("", "abc") == "abc"
57 assert fileSystem.path("abc", "") == "abc"
58 assert fileSystem.path("abc", "DEF") == "abc/DEF"
59 assert fileSystem.path("abc/", "def") == "abc/def"
60 assert fileSystem.path("/abc/", "def") == "/abc/def"
62 assert fileSystem.path("abc", "/def") == "abc/def"
63 assert fileSystem.path("abc", "def/..") == "abc"
[all …]
/external/mockftpserver/tags/2.1/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy60 assert fileSystem.path(null, "abc") == "abc"
61 assert fileSystem.path("abc", null) == "abc"
63 assert fileSystem.path("", "abc") == "abc"
64 assert fileSystem.path("abc", "") == "abc"
65 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
66 assert fileSystem.path("abc\\", "def") == "abc\\def"
67 assert fileSystem.path("c:/abc/", "def") == "c:\\abc\\def"
68 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
69 assert fileSystem.path("abc", "/def") == "abc\\def"
70 assert fileSystem.path("abc/def", "..") == "abc"
[all …]
DUnixFakeFileSystemTest.groovy44 final FILENAME = 'abc.txt'
55 assert fileSystem.path(null, "abc") == "abc"
56 assert fileSystem.path("abc", null) == "abc"
58 assert fileSystem.path("", "abc") == "abc"
59 assert fileSystem.path("abc", "") == "abc"
60 assert fileSystem.path("abc", "DEF") == "abc/DEF"
61 assert fileSystem.path("abc/", "def") == "abc/def"
62 assert fileSystem.path("/abc/", "def") == "/abc/def"
64 assert fileSystem.path("abc", "/def") == "abc/def"
65 assert fileSystem.path("abc", "def/..") == "abc"
[all …]
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy58 assert fileSystem.path(null, "abc") == "abc"
59 assert fileSystem.path("abc", null) == "abc"
61 assert fileSystem.path("", "abc") == "abc"
62 assert fileSystem.path("abc", "") == "abc"
63 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
64 assert fileSystem.path("abc\\", "def") == "abc\\def"
65 assert fileSystem.path("c:/abc/", "def") == "c:\\abc\\def"
66 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
67 assert fileSystem.path("abc", "/def") == "abc\\def"
68 assert fileSystem.path("abc/def", "..") == "abc"
[all …]
/external/mockftpserver/tags/2.0-rc1/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy60 assert fileSystem.path(null, "abc") == "abc"
61 assert fileSystem.path("abc", null) == "abc"
63 assert fileSystem.path("", "abc") == "abc"
64 assert fileSystem.path("abc", "") == "abc"
65 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
66 assert fileSystem.path("abc\\", "def") == "abc\\def"
67 assert fileSystem.path("c:/abc/", "def") == "c:/abc/def"
68 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
69 assert fileSystem.path("abc", "/def") == "abc/def"
75 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
[all …]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy60 assert fileSystem.path(null, "abc") == "abc"
61 assert fileSystem.path("abc", null) == "abc"
63 assert fileSystem.path("", "abc") == "abc"
64 assert fileSystem.path("abc", "") == "abc"
65 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
66 assert fileSystem.path("abc\\", "def") == "abc\\def"
67 assert fileSystem.path("c:/abc/", "def") == "c:/abc/def"
68 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
69 assert fileSystem.path("abc", "/def") == "abc/def"
75 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
[all …]
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/filesystem/
DFakeWindowsFileSystemTest.groovy61 assert fileSystem.path(null, "abc") == "abc"
62 assert fileSystem.path("abc", null) == "abc"
64 assert fileSystem.path("", "abc") == "abc"
65 assert fileSystem.path("abc", "") == "abc"
66 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
67 assert fileSystem.path("abc\\", "def") == "abc\\def"
68 assert fileSystem.path("c:/abc/", "def") == "c:/abc/def"
69 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
70 assert fileSystem.path("abc", "/def") == "abc/def"
76 assert fileSystem.normalize("b:/abc") == path("b:","abc")
[all …]
DDefaultFileSystemTest.groovy131 assert "abc" == fileSystem.path(null, "abc")
132 assert "abc" == fileSystem.path("abc", null)
134 assert "abc" == fileSystem.path("", "abc")
135 assert "abc" == fileSystem.path("abc", "")
136 assert "abc" + SEP + "def" == fileSystem.path("abc", "def")
137 assert "abc\\def" == fileSystem.path("abc\\", "def")
138 assert "abc/def" == fileSystem.path("abc/", "def")
139 assert "abc\\def" == fileSystem.path("abc", "\\def")
140 assert "abc/def" == fileSystem.path("abc", "/def")
145 assertEquals("abc", absPath("abc"), fileSystem.normalize("abc"))
[all …]
/external/mockftpserver/tags/2.0/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy60 assert fileSystem.path(null, "abc") == "abc"
61 assert fileSystem.path("abc", null) == "abc"
63 assert fileSystem.path("", "abc") == "abc"
64 assert fileSystem.path("abc", "") == "abc"
65 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
66 assert fileSystem.path("abc\\", "def") == "abc\\def"
67 assert fileSystem.path("c:/abc/", "def") == "c:/abc/def"
68 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
69 assert fileSystem.path("abc", "/def") == "abc/def"
75 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
[all …]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
DWindowsFakeFileSystemTest.groovy60 assert fileSystem.path(null, "abc") == "abc"
61 assert fileSystem.path("abc", null) == "abc"
63 assert fileSystem.path("", "abc") == "abc"
64 assert fileSystem.path("abc", "") == "abc"
65 assert fileSystem.path("abc", "def") == "abc" + SEP + "def"
66 assert fileSystem.path("abc\\", "def") == "abc\\def"
67 assert fileSystem.path("c:/abc/", "def") == "c:/abc/def"
68 assert fileSystem.path("d:\\abc", "\\def") == "d:\\abc\\def"
69 assert fileSystem.path("abc", "/def") == "abc/def"
75 assert fileSystem.normalize("b:/abc") == path("b:", "abc")
[all …]
/external/grpc-grpc/src/python/grpcio/grpc/
D__init__.py16 import abc
35 class Future(six.with_metaclass(abc.ABCMeta)):
42 @abc.abstractmethod
59 @abc.abstractmethod
75 @abc.abstractmethod
89 @abc.abstractmethod
104 @abc.abstractmethod
127 @abc.abstractmethod
149 @abc.abstractmethod
171 @abc.abstractmethod
[all …]
/external/grpc-grpc/src/python/grpcio/grpc/framework/interfaces/face/
Dface.py16 import abc
94 class AbortionError(six.with_metaclass(abc.ABCMeta, Exception)):
147 class RpcContext(six.with_metaclass(abc.ABCMeta)):
150 @abc.abstractmethod
155 @abc.abstractmethod
166 @abc.abstractmethod
176 @abc.abstractmethod
184 @abc.abstractmethod
195 class Call(six.with_metaclass(abc.ABCMeta, RpcContext)):
198 @abc.abstractmethod
[all …]

12345678910>>...43