Searched defs:target (Results 376 - 400 of 880) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebKit/qt/Api/
H A Dqwebhistory.cpp494 QDataStream& operator<<(QDataStream& target, const QWebHistory& history) argument
500 target << version;
501 target << history.count() << history.currentItemIndex();
505 items[i].get()->saveState(target, version);
507 return target;
/external/webkit/Source/WebKit/win/
H A DDOMEventsClasses.h139 virtual HRESULT STDMETHODCALLTYPE target(
219 virtual HRESULT STDMETHODCALLTYPE target( function in class:DOMUIEvent
220 /* [retval][out] */ IDOMEventTarget** result) { return DOMEvent::target(result); }
328 virtual HRESULT STDMETHODCALLTYPE target( function in class:DOMKeyboardEvent
329 /* [retval][out] */ IDOMEventTarget** result) { return DOMEvent::target(result); }
476 virtual HRESULT STDMETHODCALLTYPE target( function in class:DOMMouseEvent
477 /* [retval][out] */ IDOMEventTarget** result) { return DOMEvent::target(result); }
651 virtual HRESULT STDMETHODCALLTYPE target( function in class:DOMMutationEvent
652 /* [retval][out] */ IDOMEventTarget** result) { return DOMEvent::target(result); }
751 virtual HRESULT STDMETHODCALLTYPE target( function in class:DOMOverflowEvent
835 virtual HRESULT STDMETHODCALLTYPE target( function in class:DOMWheelEvent
[all...]
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A DPluginTest.cpp121 NPError PluginTest::NPN_GetURL(const char* url, const char* target) argument
123 return browser->geturl(m_npp, url, target);
/external/clang/lib/Basic/
H A DConvertUTF.c122 UTF16* target = *targetStart; local
125 if (target >= targetEnd) {
137 *target++ = UNI_REPLACEMENT_CHAR;
140 *target++ = (UTF16)ch; /* normal case */
146 *target++ = UNI_REPLACEMENT_CHAR;
149 /* target is a character in range 0xFFFF - 0x10FFFF. */
150 if (target + 1 >= targetEnd) {
155 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
156 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START);
160 *targetStart = target;
171 UTF32* target = *targetStart; local
225 UTF8* target = *targetStart; local
295 UTF8* target = *targetStart; local
426 UTF16* target = *targetStart; local
499 UTF32* target = *targetStart; local
[all...]
/external/aac/libSBRdec/src/
H A Denv_dec.cpp224 Therefore you might encounter different output values on your target
368 FIXP_SGL target; /* targeted level for sfb_nrg_prev during fade-down */ local
400 target = (FIXP_SGL)SBR_ENERGY_PAN_OFFSET;
404 target = FL2FXCONST_SGL(0.0f);
408 target <<= 1;
413 if (h_prev_data->sfb_nrg_prev[i] > target)
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DURITest.java1596 private void testRelativize(String base, String target, String expected) argument
1598 assertEquals(expected, new URI(base).relativize(new URI(target)).toString());
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerHandlerImpl.java578 * @param target The processing instruction target.
579 * @param data The text following the target.
584 public void processingInstruction(String target, String data) argument
590 + target + ", " + data);
594 m_contentHandler.processingInstruction(target, data);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToXMLSAXHandler.java577 public void processingInstruction(String target, String data) argument
583 m_saxHandler.processingInstruction(target, data);
588 super.fireEscapingEvent(target, data);
/external/chromium/base/win/
H A Dpe_image.cc114 PBYTE target = reinterpret_cast<PBYTE>(address); local
124 if ((start <= target) && (start + size > target))
/external/chromium/chrome/browser/
H A Dexternal_tab_container_win.h135 const std::string& target);
347 // or link navigations with target blank, etc.
388 const std::string& target) {
386 ForwardMessageToExternalHost(const std::string& message, const std::string& origin, const std::string& target) argument
/external/chromium/chrome/common/
H A Dsandbox_policy.cc670 PROCESS_INFORMATION target = {0}; local
716 policy, &target);
724 ResumeThread(target.hThread);
725 CloseHandle(target.hThread);
726 process = target.hProcess;
731 base::debug::SpawnDebuggerOnProcess(target.dwProcessId);
/external/chromium/net/base/
H A Dmime_util.cc653 // Note that the elements in the source set will be appended to the target
656 void HashSetToVector(base::hash_set<T>* source, std::vector<T>* target) { argument
657 size_t old_target_size = target->size();
658 target->resize(old_target_size + source->size());
662 target->at(old_target_size + i) = *iter;
/external/chromium/net/disk_cache/
H A Dblock_files.cc37 // target is the type of block to use (number of empty blocks), and size is the
39 bool CreateMapBlock(int target, int size, disk_cache::BlockFileHeader* header, argument
41 if (target <= 0 || target > disk_cache::kMaxNumBlocks ||
50 int current = header->hints[target - 1];
57 if (GetMapBlockType(map_block) != target)
61 int index_offset = j * 4 + 4 - target;
67 header->hints[target - 1] = current;
68 header->empty[target - 1]--;
69 DCHECK(header->empty[target
[all...]
/external/chromium/net/http/
H A Dhttp_auth_controller.cc69 switch (handler->target()) {
120 // Record the target of the authentication.
153 HttpAuth::Target target,
157 : target_(target),
520 // target is not known.
152 HttpAuthController( HttpAuth::Target target, const GURL& auth_url, HttpAuthCache* http_auth_cache, HttpAuthHandlerFactory* http_auth_handler_factory) argument
/external/clang/include/clang/Lex/
H A DLiteralSupport.h184 const TargetInfo &target, DiagnosticsEngine *diags = 0)
185 : SM(sm), Features(features), Target(target), Diags(diags),
182 StringLiteralParser(const Token *StringToks, unsigned NumStringToks, const SourceManager &sm, const LangOptions &features, const TargetInfo &target, DiagnosticsEngine *diags = 0) argument
/external/expat/amiga/
H A Dexpat_68k_handler_stubs.c72 void _68k_procinsthandler(void *userdata, const char *target, const char *data) { argument
74 call_68k_code(p->IExec, p->procinsthandler, 3, p->handlerarg, target, data);
/external/expat/lib/
H A Dxmltok_impl.c227 const char *target = ptr; local
240 if (!PREFIX(checkPiTarget)(enc, target, ptr, &tok)) {
264 if (!PREFIX(checkPiTarget)(enc, target, ptr, &tok)) {
/external/freetype/src/sfnt/
H A Dttsbit.c59 /* Blits a bitmap from an input stream into a given target. Supports */
63 /* target :: The target bitmap/pixmap. */
77 /* the target bitmap (unlike the normal TrueType */
82 blit_sbit( FT_Bitmap* target, argument
99 line_incr = target->pitch;
100 line_buff = target->buffer;
103 line_buff -= line_incr * ( target->rows - 1 );
233 /* range :: The target range. */
263 /* range :: The target rang
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedMap.java496 @Override public boolean contains(Object target) { argument
497 if (target instanceof Entry) {
498 Entry<?, ?> entry = (Entry<?, ?>) target;
588 @Override public boolean contains(Object target) { argument
589 return map.containsValue(target);
/external/guava/guava/src/com/google/common/primitives/
H A DInts.java120 * Returns {@code true} if {@code target} is present as an element anywhere in
124 * @param target a primitive {@code int} value
125 * @return {@code true} if {@code array[i] == target} for some value of {@code
128 public static boolean contains(int[] array, int target) { argument
130 if (value == target) {
138 * Returns the index of the first appearance of the value {@code target} in
142 * @param target a primitive {@code int} value
143 * @return the least index {@code i} for which {@code array[i] == target}, or
146 public static int indexOf(int[] array, int target) { argument
147 return indexOf(array, target,
151 indexOf( int[] array, int target, int start, int end) argument
172 indexOf(int[] array, int[] target) argument
200 lastIndexOf(int[] array, int target) argument
205 lastIndexOf( int[] array, int target, int start, int end) argument
498 contains(Object target) argument
504 indexOf(Object target) argument
515 lastIndexOf(Object target) argument
[all...]
H A DLongs.java90 * Returns {@code true} if {@code target} is present as an element anywhere in
94 * @param target a primitive {@code long} value
95 * @return {@code true} if {@code array[i] == target} for some value of {@code
98 public static boolean contains(long[] array, long target) { argument
100 if (value == target) {
108 * Returns the index of the first appearance of the value {@code target} in
112 * @param target a primitive {@code long} value
113 * @return the least index {@code i} for which {@code array[i] == target}, or
116 public static int indexOf(long[] array, long target) { argument
117 return indexOf(array, target,
121 indexOf( long[] array, long target, int start, int end) argument
142 indexOf(long[] array, long[] target) argument
170 lastIndexOf(long[] array, long target) argument
175 lastIndexOf( long[] array, long target, int start, int end) argument
483 contains(Object target) argument
489 indexOf(Object target) argument
500 lastIndexOf(Object target) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractIteratorTester.java272 * We poll the target iterator's next element and pass it to the reference
347 * Returns a new target iterator each time it's called. This is the iterator
395 I target = newTargetIterator();
403 boolean threwException = stimulus.executeAndCompare(reference, target);
442 T reference, T target, IteratorOperation method)
451 targetReturnValue = method.execute(target);
500 * same value from the target
513 * exception from the target.
584 abstract boolean executeAndCompare(ListIterator<E> reference, T target); argument
593 executeAndCompare(ListIterator<E> reference, Iterator<E> target) {
441 internalExecuteAndCompare( T reference, T target, IteratorOperation method) argument
[all...]
/external/icu4c/common/
H A Ducnv_u8.c92 UChar *myTarget = args->target;
143 /* stores a partially calculated target*/
207 /* End of target buffer */
211 args->target = myTarget;
220 UChar *myTarget = args->target;
336 { /* End of target buffer */
340 args->target = myTarget;
351 uint8_t *myTarget = (uint8_t *) args->target;
416 or do we have to be careful about target buffer space? */
455 args->target
754 uint8_t *target; local
[all...]
H A Ducnvbocu.c389 uint8_t *target; local
403 target=(uint8_t *)pArgs->target;
404 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target);
435 *target++=(uint8_t)c;
443 *target++=(uint8_t)PACK_SINGLE_DIFF(diff);
453 targetCapacity=(int32_t)((const uint8_t *)pArgs->targetLimit-target);
471 *target++=(uint8_t)c;
508 *target++=(uint8_t)PACK_SINGLE_DIFF(diff);
529 *target
643 uint8_t *target; local
938 UChar *target; local
1161 UChar *target; local
[all...]
/external/icu4c/i18n/
H A Dcurrpinf.cpp363 Hashtable* target,
377 target->put(UnicodeString(*key), copy, status);
362 copyHash(const Hashtable* source, Hashtable* target, UErrorCode& status) argument

Completed in 510 milliseconds

<<11121314151617181920>>