HomeSort by relevance Sort by last modified time
    Searched defs:target (Results 151 - 175 of 665) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium/base/
timer_unittest.cc 178 DelayTimerTarget target; local
180 TimeDelta::FromMilliseconds(1), &target, &DelayTimerTarget::Signal);
187 ASSERT_FALSE(target.signaled());
193 DelayTimerTarget target; local
195 TimeDelta::FromMilliseconds(1), &target, &DelayTimerTarget::Signal);
203 ASSERT_TRUE(target.signaled());
208 DelayTimerTarget* target)
210 target_(target) {
227 DelayTimerTarget target; local
229 TimeDelta::FromMilliseconds(50), &target, &DelayTimerTarget::Signal)
259 DelayTimerFatalTarget target; local
    [all...]
  /external/chromium/chrome/browser/ui/
browser_navigator.cc 153 // target browser. This must happen first, before GetBrowserForDisposition()
276 // the profile associated with the target browser.
405 // inform the target TabContents, and we may need to update the UI.
414 // If no target TabContents was specified, we need to construct one if we are
415 // supposed to target a new tab; unless it's a singleton that already exists.
443 // ... otherwise if we're loading in the current tab, the target is the
475 // The navigation should insert a new tab into the target Browser.
481 // Now that the |params->target_contents| is safely owned by the target
487 TabContents* target = params->browser->GetTabContentsAt(singleton_index); local
490 target->GetURL() != params->url)
    [all...]
  /external/chromium/net/disk_cache/
block_files_unittest.cc 49 int target = i % kMaxSize; local
50 files.DeleteBlock(address[target], false);
51 EXPECT_TRUE(files.CreateBlock(RANKINGS, 4, &address[target]));
  /external/clang/lib/Basic/
ConvertUTF.c 123 UTF16* target = *targetStart; local
126 if (target >= targetEnd) {
130 if (ch <= UNI_MAX_BMP) { /* Target is a character <= 0xFFFF */
138 *target++ = UNI_REPLACEMENT_CHAR;
141 *target++ = (UTF16)ch; /* normal case */
147 *target++ = UNI_REPLACEMENT_CHAR;
150 /* target is a character in range 0xFFFF - 0x10FFFF. */
151 if (target + 1 >= targetEnd) {
156 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
157 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START)
172 UTF32* target = *targetStart; local
226 UTF8* target = *targetStart; local
296 UTF8* target = *targetStart; local
349 UTF32* target = *targetStart; local
464 UTF16* target = *targetStart; local
    [all...]
  /external/emma/core/java12/com/vladium/util/
Files.java 245 * Renames 'source' to 'target' [intermediate directories are created if necessary]. If
246 * 'target' exists and 'overwrite' is false, the method is a no-op. No exceptions are
253 * @param target target file descriptor [an existing target may get deleted
255 * @param overwrite if 'true', forces an existing target to be deleted
258 * @throws IllegalArgumentException if 'target' is null
260 public static boolean renameFile (final File source, final File target, final boolean overwrite)
264 if (target == null)
265 throw new IllegalArgumentException ("null input: target");
    [all...]
  /external/icu4c/common/
ucnvlat1.c 34 UChar *target; local
42 target=pArgs->target;
43 targetCapacity=(int32_t)(pArgs->targetLimit-pArgs->target);
56 /* target will be full */
68 target[0]=source[0];
69 target[1]=source[1];
70 target[2]=source[2];
71 target[3]=source[3];
72 target[4]=source[4]
136 uint8_t *target, *oldTarget; local
324 uint8_t *target; local
473 UChar *target, *oldTarget; local
610 uint8_t *target; local
    [all...]
ustr_wcs.c 292 UChar* target = NULL; local
432 pTarget = target= dest;
449 count+= pTarget - target;
452 target = uStack;
  /external/icu4c/samples/coll/
coll.cpp 12 "usage: coll [options*] -source source_string -target target_string\n"
24 "-target string Target string for comparison\n"
25 "Example coll -rules \\u0026b\\u003ca -source a -target b\n"
69 {"-target", OptSpec::STRING, &opt_target},
140 UChar target[100]; local
142 u_unescape(opt_target, target, 100);
143 UCollationResult result = ucol_strcoll(collator, source, -1, target, -1);
251 fprintf(stdout, "Comparing source=%s and target=%s\n", opt_source,
255 fprintf(stdout, "source is equals to target\n");
    [all...]
  /external/icu4c/test/intltest/
dadrcoll.cpp 265 SeqElement *target = NULL; local
270 target = new SeqElement();
272 setTestSequence(sequence, *target);
273 sequences.addElement(target, status);
277 target = new SeqElement();
278 hasNext = getNextInSequence(*target);
284 doTest(col, source->source, target->source, relation);
286 sequences.addElement(target, status);
287 source = target;
  /external/icu4c/tools/genrb/
read.c 122 UChar target[3] = { '\0' }; local
123 UChar *pTarget = target;
177 pTarget = target;
192 pTarget = target;
237 pTarget = target;
247 pTarget = target;
283 pTarget = target;
292 pTarget = target;
  /external/iproute2/ip/
iprule.c 335 __u32 target; local
338 if (get_u32(&target, *argv, 0))
339 invarg("invalid target\n", *argv);
340 addattr32(&req.n, sizeof(req), FRA_GOTO, target);
  /external/iptables/iptables/
xshared.h 38 * @so_rev_target: optname to check revision support of target
59 struct xtables_target *target; member in struct:iptables_command_state
  /external/javassist/src/main/javassist/bytecode/
CodeAnalyzer.java 104 int target = index + ci.s16bitAt(index + 1); local
105 checkTarget(index, target, codeLength, stack, stackDepth);
108 int target, index2; local
111 target = index + ci.s16bitAt(index + 1);
112 checkTarget(index, target, codeLength, stack, stackDepth);
115 target = index + ci.s32bitAt(index + 1);
116 checkTarget(index, target, codeLength, stack, stackDepth);
121 target = index + ci.s16bitAt(index + 1);
123 target = index + ci.s32bitAt(index + 1);
125 checkTarget(index, target, codeLength, stack, stackDepth)
    [all...]
InstructionPrinter.java 233 int target = iter.s32bitAt(index + 4) + pos; local
234 buffer.append("\t\t").append(match).append(": ").append(target).append("\n");
253 int target = iter.s32bitAt(index) + pos; local
254 buffer.append("\t\t").append(key).append(": ").append(target).append("\n");
  /external/javassist/src/main/javassist/bytecode/analysis/
SubroutineScanner.java 103 int target = Util.getJumpTarget(pos, iter); local
105 Subroutine s = (Subroutine) subTable.get(new Integer(target));
107 s = new Subroutine(target, pos);
108 subTable.put(new Integer(target), s);
109 scan(target, iter, s);
114 scan(target, iter, sub);
134 int target = iter.s32bitAt(index) + pos; local
135 scan(target, iter, sub);
150 int target = iter.s32bitAt(index) + pos; local
151 scan(target, iter, sub)
    [all...]
  /external/javassist/src/test/test/javassist/proxy/
ProxyCacheGCTest.java 66 // create a target class in the current class loader
105 Object target = proxyClass.newInstance(); local
106 ((ProxyObject)target).setHandler(handler);
  /external/protobuf/src/google/protobuf/
extension_set_unittest.cc 195 uint8* target = reinterpret_cast<uint8*>(string_as_array(&data)); local
196 uint8* end = source.SerializeWithCachedSizesToArray(target);
197 EXPECT_EQ(size, end - target);
239 uint8* target = reinterpret_cast<uint8*>(string_as_array(&data)); local
240 uint8* end = source.SerializeWithCachedSizesToArray(target);
241 EXPECT_EQ(size, end - target);
  /external/skia/gpu/include/
GrContext_impl.h 45 GrDrawTarget* target = this->prepareToDraw(paint, kUnbuffered_DrawCategory); local
60 if (!geo.set(target, layout, vertexCount, indexCount)) {
94 this->doOffscreenAA(target, paint, GrIsPrimTypeLines(primitiveType))) {
97 target->getViewMatrix().mapRect(&b);
99 if (this->setupOffscreenAAPass1(target, false, bounds, &record)) {
105 target->drawNonIndexed(primitiveType, 0, vertexCount);
107 target->drawIndexed(primitiveType, 0, 0, vertexCount, indexCount);
112 this->offscreenAAPass2(target, paint, bounds, &record);
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicString.cpp 256 UChar* target; local
257 location = StringImpl::createUninitialized(buffer.utf16Length, target).releaseRef();
260 if (convertUTF8ToUTF16(&source, source + buffer.length, &target, target + buffer.utf16Length) != conversionOK)
  /external/webkit/Source/JavaScriptCore/wtf/unicode/
UTF8.cpp 134 char* target = *targetStart; local
140 const UChar* oldSource = source; // In case we have to back up because of target overflow.
183 target += bytesToWrite;
184 if (target > targetEnd) {
186 target -= bytesToWrite;
191 case 4: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6;
192 case 3: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6;
193 case 2: *--target = (char)((ch | byteMark) & byteMask); ch >>= 6;
194 case 1: *--target = (char)(ch | firstByteMark[bytesToWrite]);
196 target += bytesToWrite
262 UChar* target = *targetStart; local
    [all...]
  /external/webkit/Source/WebCore/dom/
EventDispatcher.cpp 94 // We need to set the target here because it can go away by the time we actually fire the event.
136 // Assume divergent boundary is the relatedTarget itself (in other words, related target ancestor chain does not cross any shadow DOM boundaries).
166 // The relatedTarget is an ancestor or shadowHost of the target.
170 // Since ancestors does not contain target itself, we must account
171 // for the possibility that target is a shadowHost of relatedTarget
173 // Luckily, in this case the firstDivergentBoundary is target.
180 // Set event's related target to the first encountered shadow DOM boundary in the divergent subtree.
200 Node* target = m_node.get();
201 if (!target)
208 // If there are no boundaries detected, the target and related target can't have a common boundary
248 EventTarget* target = eventTargetRespectingSVGTargetRules(ancestor); local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLAreaElement.cpp 237 String HTMLAreaElement::target() const function in class:WebCore::HTMLAreaElement
  /external/webkit/Source/WebCore/loader/
FormSubmission.h 66 const String& target() const { return m_target; } function in class:WebCore::FormSubmission::Attributes
67 void setTarget(const String& target) { m_target = target; }
96 const String& target() const { return m_target; } function in class:WebCore::FormSubmission
111 FormSubmission(Method, const KURL& action, const String& target, const String& contentType, PassRefPtr<FormState>, PassRefPtr<FormData>, const String& boundary, bool lockHistory, PassRefPtr<Event>);
  /external/webkit/Source/WebKit/chromium/src/
WebDOMEvent.cpp 75 WebNode WebDOMEvent::target() const function in class:WebKit::WebDOMEvent
78 return WebNode(m_private->target()->toNode());
  /external/webkit/Source/WebKit/gtk/tests/
testdomdomwindow.c 76 WebKitDOMEventTarget* target; local
86 target = webkit_dom_event_get_current_target(event);
87 g_assert(target == WEBKIT_DOM_EVENT_TARGET(view));
142 clicked_cb(WebKitDOMEventTarget* target, WebKitDOMEvent* event, DomDomviewFixture* fixture)

Completed in 801 milliseconds

1 2 3 4 5 67 8 91011>>