HomeSort by relevance Sort by last modified time
    Searched defs:owner (Results 1 - 25 of 1309) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/sdk/current/androidx/m2repository/androidx/lifecycle/lifecycle-common-java8/2.0.0-alpha1/
lifecycle-common-java8-2.0.0-alpha1.jar 
  /prebuilts/maven_repo/android/android/arch/lifecycle/common-java8/1.0.0/
common-java8-1.0.0.jar 
  /prebuilts/maven_repo/android/android/arch/lifecycle/common-java8/1.0.0-rc1/
common-java8-1.0.0-rc1.jar 
  /prebuilts/sdk/current/extras/app-toolkit/m2repository/android/arch/lifecycle/common-java8/28.0.0/
common-java8-28.0.0.jar 
  /cts/hostsidetests/devicepolicy/app/AccountCheck/src-owner/com/android/cts/devicepolicy/accountcheck/owner/
AdminReceiver.java 16 package com.android.cts.devicepolicy.accountcheck.owner;
  /external/turbine/java/com/google/turbine/binder/bound/
BoundClass.java 36 ClassSymbol owner(); method in interface:BoundClass
PackageSourceBoundClass.java 55 public ClassSymbol owner() { method in class:PackageSourceBoundClass
56 return base.owner();
SourceBoundClass.java 27 private final ClassSymbol owner; field in class:SourceBoundClass
34 ClassSymbol owner,
39 this.owner = owner;
55 public ClassSymbol owner() { method in class:SourceBoundClass
56 return owner;
  /libcore/ojluni/src/main/java/java/nio/file/attribute/
PosixFileAttributes.java 46 * Returns the owner of the file.
48 * @return the file owner
52 UserPrincipal owner(); method in interface:PosixFileAttributes
55 * Returns the group owner of the file.
57 * @return the file group owner
  /external/annotation-tools/asmx/src/org/objectweb/asm/
Handle.java 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
55 final String owner; field in class:Handle
79 * @param owner
88 public Handle(int tag, String owner, String name, String desc) {
90 this.owner = owner;
117 return owner;
147 return tag == h.tag && owner.equals(h.owner) && name.equals(h.name)
153 return tag + owner.hashCode() * name.hashCode() * desc.hashCode()
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/
FieldInsnNode.java 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
43 * The internal name of the field's owner class (see
46 public String owner; field in class:FieldInsnNode
63 * @param owner the internal name of the field's owner class (see
70 final String owner,
75 this.owner = owner;
91 cv.visitFieldInsn(opcode, owner, name, desc);
MethodInsnNode.java 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
43 * The internal name of the method's owner class (see
46 public String owner; field in class:MethodInsnNode
64 * @param owner the internal name of the method's owner class (see
71 final String owner,
76 this.owner = owner;
92 mv.visitMethodInsn(opcode, owner, name, desc);
  /external/desugar/java/com/google/devtools/build/android/desugar/
FieldInfo.java 22 static FieldInfo create(String owner, String name, String desc) {
23 return new AutoValue_FieldInfo(owner, name, desc);
26 public abstract String owner(); method in class:FieldInfo
MethodInfo.java 22 static MethodInfo create(String owner, String name, String desc) {
23 return new AutoValue_MethodInfo(owner, name, desc);
26 public abstract String owner(); method in class:MethodInfo
  /external/libese/apps/boot/card/src/com/android/verifiedboot/globalstate/owner/
OwnerInterface.java 1 package com.android.verifiedboot.globalstate.owner;
  /external/protobuf/python/google/protobuf/pyext/
extension_dict.h 23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
67 shared_ptr<Message> owner; member in struct:google::protobuf::python::ExtensionDict
repeated_composite_container.h 23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
69 // 'child_messages' are owner by the 'owner'.
71 // When in the released state 'message', 'owner', 'parent', and
80 shared_ptr<Message> owner; member in struct:google::protobuf::python::RepeatedCompositeContainer
repeated_scalar_container.h 23 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
68 shared_ptr<Message> owner; member in struct:google::protobuf::python::RepeatedScalarContainer
113 // Set the owner field of self and any children of self.
  /external/speex/include/speex/
speex_bits.h 54 int owner; /**< Does the struct "own" the "raw" buffer (member "chars") */ member in struct:SpeexBits
  /external/strace/
fcntl.c 78 struct { int type, pid; } owner; local
80 if (umove_or_printaddr(tcp, addr, &owner))
84 printxval(f_owner_types, owner.type, "F_OWNER_???");
85 tprintf(", pid=%d}", owner.pid);
  /external/turbine/java/com/google/turbine/binder/sym/
FieldSymbol.java 25 private final ClassSymbol owner; field in class:FieldSymbol
28 public FieldSymbol(ClassSymbol owner, String name) {
29 this.owner = owner;
34 public ClassSymbol owner() { method in class:FieldSymbol
35 return owner;
50 return Objects.hash(name, owner);
59 return name().equals(other.name()) && owner().equals(other.owner());
64 return owner + "#" + name
    [all...]
MethodSymbol.java 25 private final ClassSymbol owner; field in class:MethodSymbol
28 public MethodSymbol(ClassSymbol owner, String name) {
29 this.owner = owner;
34 public ClassSymbol owner() { method in class:MethodSymbol
35 return owner;
45 return Objects.hash(name, owner);
59 return name().equals(other.name()) && owner().equals(other.owner());
64 return owner + "#" + name
    [all...]
TyVarSymbol.java 26 private final Symbol owner; field in class:TyVarSymbol
29 public TyVarSymbol(Symbol owner, String name) {
30 this.owner = owner;
40 public Symbol owner() { method in class:TyVarSymbol
41 return owner;
51 return Objects.hash(name, owner);
60 return name.equals(other.name()) && owner().equals(other.owner());
65 return owner + "#" + name
    [all...]
  /external/v8/src/inspector/
string-util.cc 116 String16 owner = toString16(string); local
117 return StringBufferImpl::adopt(owner);
  /frameworks/support/lifecycle/integration-tests/testapp/src/androidTest/java/androidx/lifecycle/
ActivityFullLifecycleTest.java 68 CollectingLifecycleOwner owner = activityTestRule.getActivity(); local
69 TestUtils.waitTillResumed(owner, activityTestRule);
72 TestUtils.waitTillDestroyed(owner, activityTestRule);
73 List<Pair<TestEvent, Event>> results = owner.copyCollectedEvents();

Completed in 1022 milliseconds

1 2 3 4 5 6 7 8 91011>>