HomeSort by relevance Sort by last modified time
    Searched defs:resolve (Results 51 - 75 of 1243) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/av/media/libaaudio/src/binding/
RingBufferParcelable.cpp 131 aaudio_result_t RingBufferParcelable::resolve(SharedMemoryParcelable *memoryParcels, RingBufferDescriptor *descriptor) { function in class:RingBufferParcelable
134 result = mReadCounterParcelable.resolve(memoryParcels,
140 result = mWriteCounterParcelable.resolve(memoryParcels,
146 result = mDataParcelable.resolve(memoryParcels, (void **) &descriptor->dataAddress);
SharedMemoryParcelable.cpp 78 // Resolve the memory now while we still have the FD from the Parcel.
113 aaudio_result_t SharedMemoryParcelable::resolve(int32_t offsetInBytes, int32_t sizeInBytes, function in class:SharedMemoryParcelable
  /libcore/ojluni/src/main/java/java/time/temporal/
TemporalField.java 311 * This method is invoked during the resolve phase of parsing.
322 * The map is mutable and must be mutated to resolve the field and
330 * complete {@code ChronoLocalDate}. If a resolve is successful,
337 * complete {@code LocalDate}. The resolve method will remove all three
350 * If no resolution is possible, the resolve method must return null.
367 * @param resolverStyle the requested type of resolve, not null
369 * changed the map, or no resolve occurred
374 default TemporalAccessor resolve( method in interface:TemporalField
JulianFields.java 291 public ChronoLocalDate resolve( method in class:JulianFields.Field
  /libcore/ojluni/src/main/java/sun/nio/fs/
AbstractPath.java 52 public final Path resolve(String other) { method in class:AbstractPath
53 return resolve(getFileSystem().getPath(other));
61 return (parent == null) ? other : parent.resolve(other);
  /external/annotation-tools/asmx/src/org/objectweb/asm/
Label.java 239 boolean resolve( method in class:Label
  /external/doclava/src/com/google/doclava/
Doclava2.java 45 InfoBuilder.resolve();
72 InfoBuilder.resolve();
82 InfoBuilder.resolve();
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/
AnnotationDeclaration.java 133 public ResolvedAnnotationDeclaration resolve() { method in class:AnnotationDeclaration
VariableDeclarator.java 278 public ResolvedFieldDeclaration resolve() { method in class:VariableDeclarator
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
NameExpr.java 156 public ResolvedValueDeclaration resolve() { method in class:NameExpr
ThisExpr.java 167 public ResolvedTypeDeclaration resolve() { method in class:ThisExpr
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
UnknownType.java 138 public ResolvedType resolve() { method in class:UnknownType
VarType.java 96 public ResolvedType resolve() { method in class:VarType
VoidType.java 133 public ResolvedVoidType resolve() { method in class:VoidType
  /external/skia/src/pathops/
SkOpBuilder.cpp 126 bool SkOpBuilder::resolve(SkPath* result) { function in class:SkOpBuilder
  /external/skqp/src/pathops/
SkOpBuilder.cpp 126 bool SkOpBuilder::resolve(SkPath* result) { function in class:SkOpBuilder
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliAnnotationElementName.java 81 @Nullable @Override public PsiElement resolve() { method in class:SmaliAnnotationElementName
121 return resolve() == element;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/resolver/
Resolver.java 102 public Tag resolve(NodeId kind, String value, boolean implicit) { method in class:Resolver
  /external/tensorflow/tensorflow/contrib/py2tf/pyct/static_analysis/
activity.py 269 def resolve(node, context, parent_scope=None): function
  /external/v8/tools/gcmole/
gcmole.lua 363 local function resolve(name) function
392 resolve(funcname)
396 resolve(name)[scope] = true
  /frameworks/base/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/hp/
ServiceResolveQueue.java 83 mNsdResolveQueue.resolve(mNsdManager, mCurrentRequest.first,
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 70 if (!resolve(pModule))
102 // set them in Module. When reading out the symbol, resolve their symbols
165 bool Linker::resolve(Module& pModule) { function in class:mcld::Linker
  /libcore/luni/src/main/java/libcore/reflect/
TypeVariableImpl.java 79 // resolve() looks up the next level only, if null is returned
102 void resolve() { method in class:TypeVariableImpl
120 resolve(); method
125 resolve(); method
  /libcore/ojluni/src/main/java/java/nio/file/
Path.java 53 * defines the {@link #resolve(Path) resolve} and {@link #resolveSibling(Path)
338 * Resolve the given path against this path.
352 * the path to resolve against this path
358 Path resolve(Path other); method in interface:Path
363 * #resolve(Path) resolve} method. For example, suppose that the name
369 * the path string to resolve against this path
378 Path resolve(String other); method in interface:Path
393 * the path to resolve against this path's paren
    [all...]
  /libcore/tools/upstream/src/main/java/libcore/
Repository.java 55 return p == null ? null : rootPath.resolve(p).toAbsolutePath();
132 super(buildTop.resolve("libcore"), "ojluni");
138 return Paths.get("ojluni/src/main/java").resolve(relPath);
146 Path makefile = rootPath.resolve("openjdk_java_files.bp");
168 super(upstreamRoot.resolve(name), name);
175 Path repositoryRelativePath = Paths.get(sourceDir).resolve(relPath);
176 Path file = rootPath.resolve(repositoryRelativePath);

Completed in 467 milliseconds

1 23 4 5 6 7 8 91011>>