Home
last modified time | relevance | path

Searched refs:method (Results 1 – 19 of 19) sorted by relevance

/build/soong/third_party/zip/
Dregister.go121 func RegisterDecompressor(method uint16, dcomp Decompressor) {
125 if _, ok := decompressors[method]; ok {
128 decompressors[method] = dcomp
133 func RegisterCompressor(method uint16, comp Compressor) {
137 if _, ok := compressors[method]; ok {
140 compressors[method] = comp
143 func compressor(method uint16) Compressor {
146 return compressors[method]
149 func decompressor(method uint16) Decompressor {
152 return decompressors[method]
Dwriter.go338 func (w *Writer) RegisterCompressor(method uint16, comp Compressor) {
342 w.compressors[method] = comp
345 func (w *Writer) compressor(method uint16) Compressor {
346 comp := w.compressors[method]
348 comp = compressor(method)
Dreader.go121 func (z *Reader) RegisterDecompressor(method uint16, dcomp Decompressor) {
125 z.decompressors[method] = dcomp
128 func (z *Reader) decompressor(method uint16) Decompressor {
129 dcomp := z.decompressors[method]
131 dcomp = decompressor(method)
/build/make/tools/droiddoc/test/stubs/src/com/android/stubs/a/
DA.java30 public void method() { in method() method in A
35 int method() { in method() method in A.Inner
/build/make/tools/droiddoc/test/stubs/src/com/android/stubs/
DParent.java36 void method(); in method() method
46 public int method(boolean b, char c, int i, long l, float f, double d) { in method() method in Parent
DInterfaceEnum.java22 public void method() { } in method() method in InterfaceEnum
/build/make/tools/droiddoc/test/stubs/expected/com/android/stubs/
DParent.java7 public void method(); in method() method
11 public int method(boolean b, char c, int i, long l, float f, double d) { throw new RuntimeExceptio… in method() method in Parent
DInterfaceEnum.java6 public void method() { throw new RuntimeException("Stub!"); } in method() method in InterfaceEnum
/build/make/tools/droiddoc/test/stubs/src/com/android/stubs/b/
DB.java23 Parent method(Parent p) { in method() method in B
/build/make/tools/releasetools/
Dpylintrc217 # Regular expression matching correct method names
218 method-rgx=[a-z_][a-z0-9_]{2,30}$
220 # Naming hint for method names
221 method-name-hint=[a-z_][a-z0-9_]{2,30}$
305 # Maximum number of arguments for function / method
312 # Maximum number of locals for function / method body
315 # Maximum number of return / yield for function / method body
318 # Maximum number of branch for function / method body
321 # Maximum number of statements in function / method body
357 # List of method names used to declare (i.e. assign) instance attributes.
[all …]
/build/make/tools/droiddoc/test/stubs/expected/com/android/stubs/a/
DA.java12 public void method() { throw new RuntimeException("Stub!"); } in method() method in A
/build/soong/android/
Dconfig_bp2build.go92 func (ev ExportedVariables) ExportVariableConfigMethod(name string, method interface{}) blueprint.V…
93 ev.exportedConfigDependingVars.set(name, method)
94 return ev.pctx.VariableConfigMethod(name, method)
/build/blueprint/
Dpackage_ctx.go63 VariableConfigMethod(name string, method interface{}) Variable
373 method interface{}) Variable {
382 methodValue := reflect.ValueOf(method)
/build/soong/zip/
Dzip_test.go59 func fh(name string, contents []byte, method uint16) zip.FileHeader {
62 Method: method,
Dzip.go580 func (z *ZipWriter) addFile(dest, src string, method uint16, emulateJar, srcJar bool) error {
655 Method: method,
/build/make/tools/fs_config/
DREADME.md83 To add new tests, simply add a `test_<xxx>` method to the test class. It will automatically
/build/make/
DUsage.txt86 There is not yet known a convenient method by which to discover the full
/build/soong/docs/
Dperf.md189 a binary search using this method, but you do need to be careful not to split
/build/make/tools/droiddoc/templates-pdk/assets/
Dandroid-developer-docs.css312 /* extra space between end of method name and open-paren */