Searched refs:source (Results 76 - 100 of 2470) sorted by relevance

1234567891011>>

/external/iptables/include/linux/netfilter_ipv4/
H A Dipt_addrtype.h12 u_int16_t source; /* source-type mask */ member in struct:ipt_addrtype_info_v1
19 u_int16_t source; /* source-type mask */ member in struct:ipt_addrtype_info
/external/v8/test/mjsunit/
H A Dglobal-load-from-eval-in-with.js2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
32 function test(obj, source) {
34 eval(source);
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
H A Dsource.js23 Filename: source.js
24 Description: 'Tests RegExp attribute source'
33 var TITLE = 'RegExp: source';
35 writeHeaderToLog('Executing script: source.js');
41 // /xyz/g.source
42 testcases[count++] = new TestCase ( SECTION, "/xyz/g.source",
43 "xyz", /xyz/g.source);
45 // /xyz/.source
46 testcases[count++] = new TestCase ( SECTION, "/xyz/.source",
47 "xyz", /xyz/.source);
[all...]
/external/webkit/Source/WebCore/storage/
H A DIDBCursorWithValue.h4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
37 static PassRefPtr<IDBCursorWithValue> create(PassRefPtr<IDBCursorBackendInterface>, IDBRequest*, IDBAny* source, IDBTransaction*);
44 IDBCursorWithValue(PassRefPtr<IDBCursorBackendInterface>, IDBRequest*, IDBAny* source, IDBTransaction*);
/external/icu4c/common/
H A Ducnv_u16.c51 const UChar *source; local
59 source=pArgs->source;
60 length=(int32_t)(pArgs->sourceLimit-source);
91 if((c=(UChar)cnv->fromUChar32)!=0 && U16_IS_TRAIL(trail=*source) && targetCapacity>=4) {
93 ++source;
124 c=*source++;
129 } else if(U16_IS_SURROGATE_LEAD(c) && count>=2 && U16_IS_TRAIL(trail=*source)) {
130 ++source;
144 c=*source
255 const uint8_t *source; local
650 const UChar *source; local
854 const uint8_t *source; local
1326 const char *source=pArgs->source; local
[all...]
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Drtcpmuxfilter.cc5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright notice,
43 bool RtcpMuxFilter::SetOffer(bool offer_enable, ContentSource source) { argument
47 state_ = (source == CS_LOCAL) ? ST_SENTOFFER : ST_RECEIVEDOFFER;
55 bool RtcpMuxFilter::SetAnswer(bool answer_enable, ContentSource source) { argument
57 if ((state_ == ST_SENTOFFER && source == CS_REMOTE) ||
58 (state_ == ST_RECEIVEDOFFER && source == CS_LOCAL)) {
/external/webkit/Source/WebCore/webaudio/
H A DAudioChannelSplitter.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
56 AudioBus* source = input(0)->bus(); local
57 ASSERT(source);
58 ASSERT_UNUSED(framesToProcess, framesToProcess == source->length());
60 unsigned numberOfSourceChannels = source->numberOfChannels();
68 // Split the channel out if it exists in the source.
70 destination->channel(0)->copyFrom(source->channel(i));
/external/chromium/base/
H A Dfile_descriptor_shuffle.cc2 // Use of this source code is governed by a BSD-style license that can be
29 DCHECK(i->dest != j->dest) << "Both fd " << i->source
30 << " and " << j->source << " map to " << i->dest;
33 const bool is_identity = i->source == i->dest;
36 if (!is_identity && i->dest == j->source) {
48 j->source = temp_fd;
52 if (i->close && i->source == j->dest)
55 if (i->close && i->source == j->source) {
62 if (!delegate->Move(i->source,
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DSilenceTrackImpl.java17 Track source; field in class:SilenceTrackImpl
23 source = ofType;
42 return source.getSampleDescriptionBox();
51 return source.getTrackMetaData();
55 return source.getHandler();
59 return source.isEnabled();
63 return source.isInMovie();
67 return source.isInPreview();
71 return source.isInPoster();
79 return source
[all...]
/external/v8/src/x64/
H A Dlithium-gap-resolver-x64.cc2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
52 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
60 ASSERT(moves_[i].source()->IsConstantOperand());
71 // moves to perform, ignoring any move that is redundant (the source is
88 // which means that a call to PerformMove could change any source operand
97 ASSERT(moves_[index].source() != NULL); // Or else it will look eliminated.
102 // dependencies. Any unperformed, unpending move with a source the same
108 // Though PerformMove can change any source operand in the move graph,
110 // not miss any). Assume there is a non-blocking move with source
166 LOperand* source = moves_[index].source(); local
242 LOperand* source = moves_[index].source(); local
[all...]
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecUTF8.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
169 void TextCodecUTF8::handlePartialSequence(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError) argument
186 if (count - m_partialSequenceSize > end - source) {
190 memcpy(m_partialSequence + m_partialSequenceSize, source, end - source);
191 m_partialSequenceSize += end - source;
200 memcpy(m_partialSequence + m_partialSequenceSize, source, count - m_partialSequenceSize);
201 source += count - m_partialSequenceSize;
223 const uint8_t* source local
[all...]
/external/webkit/Source/JavaScriptCore/wtf/unicode/
H A DUTF8.cpp5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
133 const UChar* source = *sourceStart; local
135 while (source < sourceEnd) {
140 const UChar* oldSource = source; // In case we have to back up because of target overflow.
141 ch = static_cast<unsigned short>(*source++);
144 // If the 16 bits following the high surrogate are in the source buffer...
145 if (source < sourceEnd) {
146 UChar32 ch2 = static_cast<unsigned short>(*source);
150 ++source;
206 isLegalUTF8(const unsigned char* source, int length) argument
261 const char* source = *sourceStart; local
[all...]
/external/chromium/chrome/browser/ui/webui/
H A Dhtml_dialog_tab_contents_delegate.h2 // Use of this source code is governed by a BSD-style license that can be
36 // virtual void MoveContents(TabContents* source, const gfx::Rect& pos);
38 virtual void OpenURLFromTab(TabContents* source,
42 virtual void NavigationStateChanged(const TabContents* source,
44 virtual void AddNewContents(TabContents* source,
51 virtual void LoadingStateChanged(TabContents* source);
52 virtual void CloseContents(TabContents* source);
53 virtual bool IsPopup(const TabContents* source) const;
54 virtual void UpdateTargetURL(TabContents* source, const GURL& url);
H A Dhtml_dialog_tab_contents_delegate.cc2 // Use of this source code is governed by a BSD-style license that can be
32 TabContents* source, const GURL& url, const GURL& referrer,
41 if (source && source->is_crashed() && disposition == CURRENT_TAB &&
52 const TabContents* source, unsigned changed_flags) {
58 TabContents* source, TabContents* new_contents,
70 // params.source_contents = source;
88 void HtmlDialogTabContentsDelegate::LoadingStateChanged(TabContents* source) { argument
92 void HtmlDialogTabContentsDelegate::CloseContents(TabContents* source) { argument
97 bool HtmlDialogTabContentsDelegate::IsPopup(const TabContents* source) cons
31 OpenURLFromTab( TabContents* source, const GURL& url, const GURL& referrer, WindowOpenDisposition disposition, PageTransition::Type transition) argument
51 NavigationStateChanged( const TabContents* source, unsigned changed_flags) argument
57 AddNewContents( TabContents* source, TabContents* new_contents, WindowOpenDisposition disposition, const gfx::Rect& initial_pos, bool user_gesture) argument
103 UpdateTargetURL(TabContents* source, const GURL& url) argument
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DStringSourceProvider.h4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
40 static PassRefPtr<StringSourceProvider> create(const String& source, const String& url, const TextPosition1& startPosition = TextPosition1::minimumPosition()) argument
42 return adoptRef(new StringSourceProvider(source, url, startPosition));
49 const String& source() const { return m_source; } function in class:WebCore::StringSourceProvider
52 StringSourceProvider(const String& source, const String& url, const TextPosition1& startPosition) argument
55 , m_source(source)
63 inline JSC::SourceCode makeSource(const String& source, const String& url = String(), int firstLine = 1) argument
65 return JSC::SourceCode(StringSourceProvider::create(source, url), firstLine);
/external/webkit/Source/WebCore/inspector/front-end/
H A DScriptFormatterWorker.js4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
32 var source = event.data;
33 var formattedSource = beautify(source);
34 var mapping = buildMapping(source, formattedSource);
38 function beautify(source)
40 var ast = parse.parse(source);
50 function buildMapping(source, formattedSource)
59 var position = source.indexOf(match[2], lastPosition);
61 throw "No match found in original source fo
[all...]
/external/webkit/Source/WebKit2/Platform/cg/
H A DCGUtilities.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
33 void paintImage(CGContextRef context, CGImageRef image, CGPoint destination, CGRect source) argument
37 CGContextClipToRect(context, CGRectMake(destination.x, destination.y, source.size.width, source.size.height));
43 CGFloat destX = destination.x - source.origin.x;
44 CGFloat destY = -static_cast<CGFloat>(imageHeight) - destination.y + source.origin.y;
50 void paintBitmapContext(CGContextRef context, CGContextRef bitmapContext, CGPoint destination, CGRect source) argument
53 paintImage(context, image.get(), destination, source);
/external/webkit/Source/JavaScriptCore/wtf/url/src/
H A DURLQueryCanonicalizer.h3 // Redistribution and use in source and binary forms, with or without
7 // * Redistributions of source code must retain the above copyright
69 static bool isRaw8Bit(const InChar* source, int length) argument
71 for (int i = source; i < length; ++i) {
72 if (source[i] & 0xFF != source[i])
79 static void appendRaw8BitQueryString(const InChar* source, int length, URLBuffer<OutChar>* buffer) argument
81 ASSERT(isRaw8Bit(source, length));
83 if (!URLCharacterTypes::isQueryChar(source[i]))
84 appendURLEscapedCharacter(static_cast<unsigned char>(source[
[all...]
/external/libxml2/
H A Dtriostr.c167 Append @p source at the end of @p target.
170 @param source Source string.
174 contain the @p target string and @p source string.
181 TRIO_ARGS2((target, source),
183 TRIO_CONST char *source)
186 assert(source);
188 return (strcat(target, source) != NULL);
194 Append at most @p max characters from @p source to @p target.
198 @param source Source string.
202 contain the @p target string and the @p source strin
180 trio_append(target, source), char *target, TRIO_CONST char *source argument
209 trio_append_max(target, max, source), char *target, size_t max, TRIO_CONST char *source argument
268 trio_copy(target, source), char *target, TRIO_CONST char *source argument
297 trio_copy_max(target, max, source), char *target, size_t max, TRIO_CONST char *source argument
317 TrioDuplicateMax(source, size), TRIO_CONST char *source, size_t size argument
346 trio_duplicate(source), TRIO_CONST char *source argument
365 trio_duplicate_max(source, max), TRIO_CONST char *source, size_t max argument
829 trio_span_function(target, source, Function), char *target, TRIO_CONST char *source, int (*Function) TRIO_PROTO((int)) argument
961 trio_to_long_double(source, endp), TRIO_CONST char *source, char **endp argument
1096 trio_to_double(source, endp), TRIO_CONST char *source, char **endp argument
1119 trio_to_float(source, endp), TRIO_CONST char *source, char **endp argument
1162 trio_to_lower(source), int source argument
1211 trio_to_upper(source), int source argument
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/
H A DPhysicsCollisionEventFactory.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
44 public PhysicsCollisionEvent getEvent(int type, PhysicsCollisionObject source, PhysicsCollisionObject nodeB, long manifoldPointObjectId) { argument
47 event = new PhysicsCollisionEvent(type, source, nodeB, manifoldPointObjectId);
49 event.refactor(type, source, nodeB, manifoldPointObjectId);
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/
H A DPhysicsCollisionEventFactory.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
45 public PhysicsCollisionEvent getEvent(int type, PhysicsCollisionObject source, PhysicsCollisionObject nodeB, ManifoldPoint cp) { argument
48 event = new PhysicsCollisionEvent(type, source, nodeB, cp);
50 event.refactor(type, source, nodeB, cp);
/external/libvpx/vpx_scale/include/generic/
H A Dvpxscale_depricated.h4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
26 extern void (*vp8_horizontal_line_1_2_scale)(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
27 extern void (*vp8_horizontal_line_3_5_scale)(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
28 extern void (*vp8_horizontal_line_4_5_scale)(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
/external/valgrind/main/none/tests/s390x/
H A Dex_clone.c10 char source[40] = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\0"; variable
32 ::"a" (buf2), "a" (source)
55 ::"a" (target), "a" (source)
/external/webkit/Source/JavaScriptCore/wtf/
H A DPossiblyNull.h4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
38 PossiblyNull(const PossiblyNull<T>& source) argument
39 : m_data(source.m_data)
41 source.m_data = 0;
/external/webkit/Source/WebCore/page/
H A DSpeechInputResult.cpp4 * Redistribution and use in source and binary forms, with or without
7 * * Redistributions of source code must retain the above copyright
38 PassRefPtr<SpeechInputResult> SpeechInputResult::create(const SpeechInputResult& source) argument
40 return adoptRef(new SpeechInputResult(source.m_utterance, source.m_confidence));

Completed in 510 milliseconds

1234567891011>>