/external/chromium/webkit/glue/ |
webkitclient_impl.cc | 286 const char* extra) { 287 TRACE_EVENT_BEGIN(name, id, extra); 290 "extra", extra ? extra : ""); 294 const char* extra) { 295 TRACE_EVENT_END(name, id, extra);
|
/external/oprofile/libutil++/ |
bfd_support.cpp | 49 extra_images const & extra) 56 string const image_path = extra.find_image_path(name, img_ok, true); 297 string & debug_filename, extra_images const & extra) 319 if (separate_debug_file_exists(first_try, crc32, extra)) 321 else if (separate_debug_file_exists(second_try, crc32, extra)) 323 else if (separate_debug_file_exists(third_try, crc32, extra)) 527 * then we need to do the extra processing in translate_debuginfo_syms.
|
/external/v8/test/mjsunit/bugs/ |
bug-941049.js | 38 f.arguments.extra = 'kallevip'; 42 assertEquals('kallevip', f.arguments.extra); 74 assertEquals('kallevip', args.extra);
|
/external/valgrind/main/exp-sgcheck/tests/ |
bad_percentify.c | 186 Int i, extra; local 203 extra = width - len; 205 ret += extra; 206 for (i = 0; i < extra; i++) 213 ret += extra; 214 for (i = 0; i < extra; i++)
|
/external/valgrind/main/massif/tests/ |
long-time.post.exp | 36 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 48 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 62 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 89 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 100 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 115 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 130 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 141 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 157 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B) 175 n time(B) total(B) useful-heap(B) extra-heap(B) stacks(B [all...] |
/external/wpa_supplicant_8/src/p2p/ |
p2p_pd.c | 49 size_t extra = 0; local 53 extra = wpabuf_len(p2p->wfd_ie_prov_disc_req); 56 buf = wpabuf_alloc(1000 + extra); 91 size_t extra = 0; local 111 extra = wpabuf_len(wfd_ie); 114 buf = wpabuf_alloc(100 + extra);
|
/frameworks/av/media/libstagefright/chromium_http/ |
support.cpp | 440 const KeyedVector<String8, String8> *extra, 449 if (offset != 0 || extra != NULL) { 460 if (extra != NULL) { 461 for (size_t i = 0; i < extra->size(); ++i) { 463 s.append(extra->keyAt(i).string()); 465 s.append(extra->valueAt(i).string());
|
/frameworks/support/v4/java/android/support/v4/app/ |
ShareCompat.java | 38 * Extra helper functionality for sharing data between activities. 60 * Intent extra that stores the name of the calling package for an ACTION_SEND intent. 71 * Intent extra that stores the {@link ComponentName} of the calling activity for 343 private void combineArrayExtra(String extra, ArrayList<String> add) { 344 String[] currentAddresses = mIntent.getStringArrayExtra(extra); 351 mIntent.putExtra(extra, finalAddresses); 354 private void combineArrayExtra(String extra, String[] add) { 357 String[] old = intent.getStringArrayExtra(extra); 362 intent.putExtra(extra, result); 640 * in addition to extra metadata about the app that shared the content [all...] |
/sdk/ninepatch/src/com/android/ninepatch/ |
NinePatchChunk.java | 158 float extra = r.width / data.mHorizontalPatchesSum; local 159 int width = (int) (extra * hRemainder / hWeightSum); 160 hWeightSum -= extra; 177 float extra = r.width / data.mHorizontalPatchesSum; local 178 int width = (int) (extra * hRemainder / hWeightSum); 179 hWeightSum -= extra;
|
/bionic/libc/kernel/common/linux/ |
spinlock.h | 31 #define LOCK_SECTION_START(extra) ".subsection 1\n\t" extra ".ifndef " LOCK_SECTION_NAME "\n\t" LOCK_SECTION_NAME ":\n\t" ".endif\n"
|
/development/ndk/platforms/android-3/include/linux/ |
spinlock.h | 26 #define LOCK_SECTION_START(extra) ".subsection 1\n\t" extra ".ifndef " LOCK_SECTION_NAME "\n\t" LOCK_SECTION_NAME ":\n\t" ".endif\n"
|
/external/chromium/third_party/libjingle/source/talk/base/ |
schanneladapter.cc | 261 size_t extra = 0; local 266 extra += buffer.cbBuffer; 274 extra += buffer.cbBuffer; 283 if (extra) { 284 ASSERT(extra <= impl_->inbuf.size()); 285 size_t consumed = impl_->inbuf.size() - extra; 286 memmove(&impl_->inbuf[0], &impl_->inbuf[consumed], extra); 287 impl_->inbuf.resize(extra);
|
/external/icu4c/extra/scrptrun/ |
Makefile.in | 1 ## Makefile.in for ICU - extra/scrptrun 17 subdir = extra/scrptrun 19 ## Extra files to remove for 'make clean'
|
/external/icu4c/layout/ |
PairPositioningSubtables.cpp | 145 le_uint16 extra = (recordCount - power) * recordSize; 148 const PairValueRecord *trial = (const PairValueRecord *) ((char *) record + extra);
|
/external/icu4c/test/perf/collationperf/ |
Makefile.in | 16 ## Extra files to remove for 'make clean' 58 $(INVOKE) ./$(TARGET) -loop 200 -file $(top_srcdir)/extra/uconv/samples/utf8/utf-8-demo.txt -keygen -shifted
|
/external/libxslt/ |
Android.mk | 13 libxslt/extra.c \
|
/external/mksh/src/ |
Makefile | 86 cleandir: clean-extra 88 clean-extra: .PHONY
|
/external/webkit/Source/WebKit/chromium/public/ |
WebKitClient.h | 209 // An event is identified by the pair (name, id). The extra parameter 211 virtual void traceEventBegin(const char* name, void* id, const char* extra) { } 212 virtual void traceEventEnd(const char* name, void* id, const char* extra) { }
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
HTTPLiveSource.cpp | 124 sp<AMessage> extra; local 129 extra);
|
/frameworks/ex/chips/tests/ |
Android.mk | 27 LOCAL_AAPT_FLAGS += --extra-packages com.android.ex.chips
|
/packages/apps/Gallery2/ |
Android.mk | 20 --extra-packages com.android.camera
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/ |
spinlock.h | 26 #define LOCK_SECTION_START(extra) ".subsection 1\n\t" extra ".ifndef " LOCK_SECTION_NAME "\n\t" LOCK_SECTION_NAME ":\n\t" ".endif\n"
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/ |
spinlock.h | 26 #define LOCK_SECTION_START(extra) ".subsection 1\n\t" extra ".ifndef " LOCK_SECTION_NAME "\n\t" LOCK_SECTION_NAME ":\n\t" ".endif\n"
|
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/ |
spinlock.h | 26 #define LOCK_SECTION_START(extra) ".subsection 1\n\t" extra ".ifndef " LOCK_SECTION_NAME "\n\t" LOCK_SECTION_NAME ":\n\t" ".endif\n"
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/ |
spinlock.h | 26 #define LOCK_SECTION_START(extra) ".subsection 1\n\t" extra ".ifndef " LOCK_SECTION_NAME "\n\t" LOCK_SECTION_NAME ":\n\t" ".endif\n"
|