HomeSort by relevance Sort by last modified time
    Searched refs:ap (Results 101 - 125 of 708) sorted by null

1 2 3 45 6 7 8 91011>>

  /cts/suite/audio_quality/lib/src/
Log.cpp 43 va_list ap; local
44 va_start(ap, fmt);
45 FileUtil::doVprintf(level < mLogLevel, level, fmt, ap);
46 va_end(ap);
  /development/ndk/sources/android/libportable/arch-x86/
fcntl.c 26 va_list ap; local
29 va_start(ap, cmd);
30 arg = va_arg(ap, void *);
31 va_end(ap);
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p2.cpp 20 void foo(auto int ap, register int rp) {
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_scanf_interceptor_test.cc 33 va_list ap; local
34 va_start(ap, format);
35 scanf_common(ctx, result, allowGnuMalloc, format, ap);
36 va_end(ap);
57 va_list ap; local
58 va_start(ap, n);
59 testScanf2(format, SCANF_ARGS_MAX, /* allowGnuMalloc */ true, n, ap);
60 va_end(ap);
65 va_list ap; local
66 va_start(ap, n)
72 va_list ap; local
    [all...]
  /external/e2fsprogs/lib/et/
vfprintf.c 27 vfprintf(iop, fmt, ap)
30 va_list ap;
38 len = _doprnt(fmt, ap, iop);
45 len = _doprnt(fmt, ap, iop);
  /external/openssh/openbsd-compat/regress/
snprintftest.c 38 va_list ap; local
40 va_start(ap, fmt);
41 ret = vsnprintf(str, count, fmt, ap);
42 va_end(ap);
  /ndk/tests/device/test-stlport_shared-exception/jni/
pdel1.cpp 19 A* ap = new (1, 5) A; local
pdel2.cpp 19 A* ap = new (1, 5) A; local
  /ndk/tests/device/test-stlport_static-exception/jni/
pdel1.cpp 19 A* ap = new (1, 5) A; local
pdel2.cpp 19 A* ap = new (1, 5) A; local
  /system/core/libcutils/
klog.c 53 va_list ap; local
58 va_start(ap, fmt);
59 vsnprintf(buf, LOG_BUF_MAX, fmt, ap);
61 va_end(ap);
  /external/freetype/src/base/
ftdebug.c 56 va_list ap; local
59 va_start( ap, fmt );
60 vfprintf( stderr, fmt, ap );
61 va_end( ap );
70 va_list ap; local
73 va_start( ap, fmt );
74 vfprintf( stderr, fmt, ap );
75 va_end( ap );
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_indexing.cpp 102 float *ap; local
106 if(m) ap=(float*) (((unsigned long)p)-m+nr_bytes);
107 else ap=p;
108 return(ap);
113 short *ap; local
117 if(m) ap=(short*) (((unsigned long)p)-m+nr_bytes);
118 else ap=p;
119 return(ap);
  /packages/apps/Gallery2/jni_mosaic/feature_stab/db_vlvm/
db_utilities_indexing.cpp 102 float *ap; local
106 if(m) ap=(float*) (((unsigned long)p)-m+nr_bytes);
107 else ap=p;
108 return(ap);
113 short *ap; local
117 if(m) ap=(short*) (((unsigned long)p)-m+nr_bytes);
118 else ap=p;
119 return(ap);
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_indexing.cpp 102 float *ap; local
106 if(m) ap=(float*) (((unsigned long)p)-m+nr_bytes);
107 else ap=p;
108 return(ap);
113 short *ap; local
117 if(m) ap=(short*) (((unsigned long)p)-m+nr_bytes);
118 else ap=p;
119 return(ap);
  /external/icu4c/io/
sprintf.c 105 va_list ap; local
108 va_start(ap, patternSpecification);
109 written = u_vsnprintf(buffer, INT32_MAX, patternSpecification, ap);
110 va_end(ap);
120 va_list ap; local
123 va_start(ap, patternSpecification);
124 written = u_vsnprintf_u(buffer, INT32_MAX, patternSpecification, ap);
125 va_end(ap);
133 va_list ap)
135 return u_vsnprintf(buffer, INT32_MAX, patternSpecification, ap);
144 va_list ap; local
160 va_list ap; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/function.objects/func.memfn/
member_function_const.pass.cpp 32 A* ap = &a; local
33 assert(f(ap) == 'a');
46 A* ap = &a; local
47 assert(f(ap, 2) == 'b');
60 A* ap = &a; local
61 assert(f(ap, 2, 3.5) == 'c');
member_function_const_volatile.pass.cpp 32 A* ap = &a; local
33 assert(f(ap) == 'a');
46 A* ap = &a; local
47 assert(f(ap, 2) == 'b');
60 A* ap = &a; local
61 assert(f(ap, 2, 3.5) == 'c');
member_function_volatile.pass.cpp 32 A* ap = &a; local
33 assert(f(ap) == 'a');
46 A* ap = &a; local
47 assert(f(ap, 2) == 'b');
60 A* ap = &a; local
61 assert(f(ap, 2, 3.5) == 'c');
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
auto_pointer.pass.cpp 46 std::auto_ptr<B> ap(p);
47 std::unique_ptr<A> up(std::move(ap));
49 assert(ap.get() == 0);
57 std::auto_ptr<B> ap(p);
59 up = std::move(ap);
61 assert(ap.get() == 0);
auto_pointer01.fail.cpp 46 std::auto_ptr<B> ap(p);
47 std::unique_ptr<A> up(ap);
49 assert(ap.get() == 0);
57 std::auto_ptr<B> ap(p);
59 up = ap;
61 assert(ap.get() == 0);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
UsbAccessoryUriActivity.java 73 final AlertController.AlertParams ap = mAlertParams; local
74 ap.mTitle = mAccessory.getDescription();
75 if (ap.mTitle == null || ap.mTitle.length() == 0) {
76 ap.mTitle = getString(R.string.title_usb_accessory);
78 ap.mMessage = getString(R.string.usb_accessory_uri_prompt, mUri);
79 ap.mPositiveButtonText = getString(R.string.label_view);
80 ap.mNegativeButtonText = getString(android.R.string.cancel);
81 ap.mPositiveButtonListener = this;
82 ap.mNegativeButtonListener = this
    [all...]
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
Cipher_Impl1Test.java 61 AlgorithmParameters ap = AlgorithmParameters.getInstance(algorithm); local
62 ap.init(iv, "RAW");
65 cipher.init(Cipher.ENCRYPT_MODE, cipherKey, ap);
92 AlgorithmParameters ap = AlgorithmParameters.getInstance("DESede"); local
93 ap.init(iv, "RAW");
94 apEncoding = ap.getEncoded("ASN.1");
97 cipher.init(Cipher.ENCRYPT_MODE, cipherKey, ap, sr);
  /frameworks/base/packages/Shell/src/com/android/shell/
BugreportWarningActivity.java 54 final AlertController.AlertParams ap = mAlertParams; local
55 ap.mView = LayoutInflater.from(this).inflate(R.layout.confirm_repeat, null);
56 ap.mPositiveButtonText = getString(android.R.string.ok);
57 ap.mNegativeButtonText = getString(android.R.string.cancel);
58 ap.mPositiveButtonListener = this;
59 ap.mNegativeButtonListener = this;
61 mConfirmRepeat = (CheckBox) ap.mView.findViewById(android.R.id.checkbox);
  /ndk/sources/cxx-stl/llvm-libc++/src/support/win32/
support.cpp 20 va_list ap; local
21 va_start(ap, fmt);
22 int result = vasprintf(sptr, fmt, ap);
23 va_end(ap);
26 int vasprintf( char **sptr, const char *__restrict fmt, va_list ap )
29 int count = vsnprintf( *sptr, 0, fmt, ap );
32 vsprintf( *sptr, fmt, ap );

Completed in 1536 milliseconds

1 2 3 45 6 7 8 91011>>