HomeSort by relevance Sort by last modified time
    Searched refs:descriptor (Results 376 - 400 of 1722) sorted by null

<<11121314151617181920>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/memory_manager/
hmm_alloc.c 18 void *U(alloc)(U(descriptor) *desc, U(size_aau) n) {
hmm_base.c 18 void U(init)(U(descriptor) *desc) {
38 /* Pointer to heap descriptor. */
39 U(descriptor) *desc,
72 /* Pointer to heap descriptor. */
73 U(descriptor) *desc,
139 /* Descriptor of heap that block is in. */
140 U(descriptor) *desc,
165 void U(free)(U(descriptor) *desc, void *payload_ptr) {
286 void U(new_chunk)(U(descriptor) *desc, void *start, U(size_bau) n_baus) {
  /prebuilts/misc/common/swig/include/2.0.11/java/
enumsimple.swg 23 %typemap(directorin, descriptor="I") const enum SWIGTYPE & "$input = (jint)$1;"
48 %typemap(directorin, descriptor="I") enum SWIGTYPE "$input = (jint) $1;"
enumtypeunsafe.swg 23 %typemap(directorin, descriptor="I") const enum SWIGTYPE & "$input = (jint)$1;"
48 %typemap(directorin, descriptor="I") enum SWIGTYPE "$input = (jint) $1;"
  /prebuilts/misc/common/swig/include/2.0.11/python/
pytypemaps.swg 81 { SWIG_PY_POINTER, (char*)"$symname", 0, 0, (void *)($value), &$descriptor }
88 $result = SWIG_NewPointerObj(%new_copy(*$1, $*ltype), $descriptor, SWIG_POINTER_OWN | %newpointer_flags);
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftsystem.h 210 * to store a file descriptor or a `FILE*' in an input stream.
300 * descriptor ::
336 FT_StreamDesc descriptor; member in struct:FT_StreamRec_
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
any.h 37 #include <google/protobuf/descriptor.h>
79 bool InternalIs(const Descriptor* message) const;
  /system/core/fingerprintd/
fingerprintd.cpp 42 android::FingerprintDaemonProxy::descriptor, proxy);
  /packages/apps/Messaging/src/com/android/messaging/ui/
AsyncImageView.java 118 * @param descriptor the request descriptor, or null if no image should be displayed
120 public void setImageResourceId(@Nullable final ImageRequestDescriptor descriptor) {
121 final String requestKey = (descriptor == null) ? null : descriptor.getKey();
132 maybeSetupPlaceholderDrawable(descriptor);
134 descriptor.buildAsyncMediaRequest(getContext(), this);
160 * 3. The descriptor provided us with source width and height.
162 private void maybeSetupPlaceholderDrawable(final ImageRequestDescriptor descriptor) {
163 if (!TextUtils.isEmpty(descriptor.getKey()) && mPlaceholderDrawable != null)
    [all...]
  /external/v8/src/compiler/
instruction-selector.cc 385 size_t AddOperandToStateValueDescriptor(StateValueDescriptor* descriptor,
397 descriptor->fields().push_back(
399 StateValueDescriptor* new_desc = &descriptor->fields().back();
410 descriptor->fields().push_back(
418 descriptor->fields().push_back(StateValueDescriptor::Plain(zone, type));
426 size_t AddInputsToFrameStateDescriptor(FrameStateDescriptor* descriptor,
437 if (descriptor->outer_state()) {
439 descriptor->outer_state(), state->InputAt(kFrameStateOuterStateInput),
449 DCHECK_EQ(descriptor->parameters_count(),
451 DCHECK_EQ(descriptor->locals_count(), StateValuesAccess(locals).size())
506 const CallDescriptor* descriptor; member in struct:v8::internal::compiler::CallBuffer
1559 const CallDescriptor* descriptor = CallDescriptorOf(call->op()); local
1631 const CallDescriptor* descriptor = CallDescriptorOf(node->op()); local
1639 CallBuffer buffer(zone(), descriptor, frame_state_descriptor); local
1699 CallDescriptor const* descriptor = CallDescriptorOf(node->op()); local
1707 CallBuffer buffer(zone(), descriptor, nullptr); local
1769 CallBuffer buffer(zone(), descriptor, frame_state_descriptor); local
1845 FrameStateDescriptor* const descriptor = GetFrameStateDescriptor(frame_state); local
    [all...]
raw-machine-assembler.cc 178 CallDescriptor* descriptor = Linkage::GetRuntimeCallDescriptor( local
180 int return_count = static_cast<int>(descriptor->ReturnCount());
187 return AddNode(common()->Call(descriptor), centry, ref, arity, context);
192 CallDescriptor* descriptor = Linkage::GetRuntimeCallDescriptor( local
194 int return_count = static_cast<int>(descriptor->ReturnCount());
201 return AddNode(common()->Call(descriptor), centry, arg1, ref, arity, context);
207 CallDescriptor* descriptor = Linkage::GetRuntimeCallDescriptor( local
209 int return_count = static_cast<int>(descriptor->ReturnCount());
216 return AddNode(common()->Call(descriptor), centry, arg1, arg2, ref, arity,
223 CallDescriptor* descriptor = Linkage::GetRuntimeCallDescriptor local
239 CallDescriptor* descriptor = Linkage::GetRuntimeCallDescriptor( local
383 const CallDescriptor* descriptor = local
396 const CallDescriptor* descriptor = local
411 const CallDescriptor* descriptor = local
435 const CallDescriptor* descriptor = local
    [all...]
  /art/runtime/lambda/
closure_test.cc 226 void TestPrimitive(const char *descriptor, Args ... args) {
227 const char* shorty = descriptor;
229 SCOPED_TRACE(descriptor);
232 << "test error: descriptor must have same # of types as the # of captured variables";
236 descriptor, // NOLINT [whitespace/blank_line] [2]
254 TestPrimitiveWithClosure(closure_raw.get(), descriptor, shorty, args ...);
267 TestPrimitiveWithClosure(closure_built.get(), descriptor, shorty, args ...);
280 const char* descriptor,
285 EXPECT_STREQ(descriptor, closure->GetCapturedVariablesTypeDescriptor());
  /external/mockito/cglib-and-asm/src/org/mockito/asm/signature/
SignatureWriter.java 123 public void visitBaseType(final char descriptor) {
124 buf.append(descriptor);
  /external/proguard/src/proguard/classfile/util/
MethodLinker.java 43 // The map: [class member name+' '+descriptor - class member info]
66 // Get the class member's name and descriptor.
68 String descriptor = member.getDescriptor(clazz); local
78 // descriptor.
79 String key = name + ' ' + descriptor;
  /external/protobuf/
generate_descriptor_proto.sh 3 # Run this script to regenerate descriptor.pb.{h,cc} after the protocol
31 ./protoc --cpp_out=dllexport_decl=LIBPROTOBUF_EXPORT:. google/protobuf/descriptor.proto && \
  /external/protobuf/src/google/protobuf/compiler/java/
java_lazy_message_field.cc 48 const FieldDescriptor* descriptor,
53 descriptor, messageBitIndex, builderBitIndex, context) {
280 ImmutableLazyMessageOneofFieldGenerator(const FieldDescriptor* descriptor,
285 descriptor, messageBitIndex, builderBitIndex, context) {
287 context->GetOneofGeneratorInfo(descriptor->containing_oneof());
288 SetCommonOneofVariables(descriptor, info, &variables_);
469 const FieldDescriptor* descriptor,
474 descriptor, messageBitIndex, builderBitIndex, context) {
java_message.h 61 explicit MessageGenerator(const Descriptor* descriptor);
84 const Descriptor* descriptor_;
92 explicit ImmutableMessageGenerator(const Descriptor* descriptor,
116 io::Printer* printer, const Descriptor::ExtensionRange* range);
  /frameworks/base/core/jni/android/graphics/
Utils.cpp 120 bool android::isSeekable(int descriptor) {
121 return ::lseek64(descriptor, 0, SEEK_CUR) != -1;
  /external/libchrome/base/
sync_socket_posix.cc 104 const TransitDescriptor& descriptor) {
105 return descriptor.fd;
110 TransitDescriptor* descriptor) {
111 descriptor->fd = handle();
112 descriptor->auto_close = false;
113 return descriptor->fd != kInvalidHandle;
  /frameworks/native/libs/ui/
GraphicBufferAllocator.cpp 98 auto descriptor = mDevice->createDescriptor(); local
99 auto error = descriptor->setDimensions(width, height);
104 error = descriptor->setFormat(static_cast<android_pixel_format_t>(format));
109 error = descriptor->setProducerUsage(
115 error = descriptor->setConsumerUsage(
122 error = mDevice->allocate(descriptor, graphicBufferId, handle);
  /packages/apps/TV/usbtuner/src/com/android/usbtuner/ts/
SectionParser.java 546 for (TsDescriptor descriptor : descriptors) {
547 if (descriptor instanceof ExtendedChannelNameDescriptor) {
549 (ExtendedChannelNameDescriptor) descriptor;
670 // The list of audio tracks sent is located at both AC3 Audio descriptor and ISO 639
671 // Language descriptor.
674 for (TsDescriptor descriptor : descriptors) {
675 if (descriptor instanceof Ac3AudioDescriptor) {
677 (Ac3AudioDescriptor) descriptor;
688 for (TsDescriptor descriptor : descriptors) {
689 if (descriptor instanceof Iso639LanguageDescriptor)
829 TsDescriptor descriptor = null; local
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/mzscheme/
std_pair.i 33 x = (T*) SWIG_MustGetPtr(first,$descriptor(T *),$argnum, 0);
34 y = (U*) SWIG_MustGetPtr(second,$descriptor(U *),$argnum, 0);
51 x = (T*) SWIG_MustGetPtr(first,$descriptor(T *),$argnum, 0);
52 y = (U*) SWIG_MustGetPtr(second,$descriptor(U *),$argnum, 0);
63 Scheme_Object* first = SWIG_NewPointerObj(x,$descriptor(T *), 1);
64 Scheme_Object* second = SWIG_NewPointerObj(y,$descriptor(U *), 1);
75 $descriptor(T *), 0) != -1 &&
77 $descriptor(U *), 0) != -1) {
101 $descriptor(T *), 0) != -1 &&
103 $descriptor(U *), 0) != -1)
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/org.eclipse.tycho.p2.maven.repository/0.20.0/
org.eclipse.tycho.p2.maven.repository-0.20.0.jar 
  /external/javassist/src/main/javassist/bytecode/
ClassFileWriter.java 269 * @param descriptor the field type.
273 public void add(int accessFlags, String name, String descriptor, AttributeWriter aw) {
275 int descIndex = constPool.addUtf8Info(descriptor);
284 * @param descriptor the field type. an index indicating its <code>CONSTANT_Utf8_info</code>.
288 public void add(int accessFlags, int name, int descriptor, AttributeWriter aw) {
292 output.writeShort(descriptor);
338 * @param descriptor the method signature.
344 public void begin(int accessFlags, String name, String descriptor,
347 int descIndex = constPool.addUtf8Info(descriptor);
362 * @param descriptor the field type. an index indicating its <code>CONSTANT_Utf8_info</code>
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar 

Completed in 1244 milliseconds

<<11121314151617181920>>