Searched refs:source (Results 151 - 175 of 2470) sorted by relevance

1234567891011>>

/external/zlib/src/contrib/puff/
H A Dpufftest.c93 unsigned char *source = NULL, *dest; local
117 source = load(name, &len);
118 if (source == NULL) {
125 free(source);
130 free(source);
137 ret = puff(NIL, &destlen, source + skip, &sourcelen);
153 free(source);
156 puff(dest, &destlen, source + skip, &sourcelen);
163 free(source);
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DListener.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
52 public Listener(Listener source){ argument
53 location = source.location.clone();
54 velocity = source.velocity.clone();
55 rotation = source.rotation.clone();
56 volume = source.volume;
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
H A DShader.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
94 * Shader source describes a shader object in OpenGL. Each shader source
103 String source = null; field in class:Shader.ShaderSource
118 // forget source & defines
129 oc.write(source, "source", null);
137 source = ic.readString("source", nul
153 setSource(String source) argument
293 addSource(ShaderType type, String name, String source, String defines) argument
304 addSource(ShaderType type, String source, String defines) argument
308 addSource(ShaderType type, String source) argument
316 addSource(ShaderSource source) argument
[all...]
/external/skia/src/core/
H A DSkBlitter_Sprite.cpp5 * Use of this source code is governed by a BSD-style license that can be
12 SkSpriteBlitter::SkSpriteBlitter(const SkBitmap& source) argument
13 : fSource(&source) {
51 // have wrapped the source bitmap inside a shader
54 const SkBitmap& source,
71 blitter = SkSpriteBlitter::ChooseD16(source, paint, storage,
75 blitter = SkSpriteBlitter::ChooseD32(source, paint, storage,
52 ChooseSprite( const SkBitmap& device, const SkPaint& paint, const SkBitmap& source, int left, int top, void* storage, size_t storageSize) argument
H A DSkSpriteBlitter.h5 * Use of this source code is governed by a BSD-style license that can be
20 SkSpriteBlitter(const SkBitmap& source);
34 static SkSpriteBlitter* ChooseD16(const SkBitmap& source, const SkPaint&,
36 static SkSpriteBlitter* ChooseD32(const SkBitmap& source, const SkPaint&,
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dfst.cpp52 bool FstHeader::Read(istream &strm, const string &source) { argument
56 LOG(ERROR) << "FstHeader::Read: Bad FST header: " << source;
69 LOG(ERROR) << "FstHeader::Read: read failed: " << source;
74 bool FstHeader::Write(ostream &strm, const string &source) const {
85 LOG(ERROR) << "FstHeader::Write: write failed: " << source;
/external/webkit/Source/WebCore/html/
H A DHTMLViewSourceDocument.h4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
51 void processDoctypeToken(const String& source, HTMLToken&);
52 void processTagToken(const String& source, HTMLToken&);
53 void processCommentToken(const String& source, HTMLToken&);
54 void processCharacterToken(const String& source, HTMLToken&);
60 int addRange(const String& source, int start, int end, const String& className, bool isLink = false, bool isAnchor = false);
/external/libvpx/vpx_scale/generic/
H A Dvpxscale.c4 * 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.
39 void (*vp8_horizontal_line_1_2_scale)(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width) = 0;
40 void (*vp8_horizontal_line_3_5_scale)(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width) = 0;
41 void (*vp8_horizontal_line_3_4_scale)(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width) = 0;
42 void (*vp8_horizontal_line_2_3_scale)(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width) = 0;
43 void (*vp8_horizontal_line_4_5_scale)(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width) = 0;
47 void (*vp8_vertical_band_5_4_scale)(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width) = 0;
48 void (*vp8_vertical_band_5_3_scale)(unsigned char *source, unsigne
92 horizontal_line_copy( const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width ) argument
158 scale1d_2t1_i( const unsigned char *source, int source_step, unsigned int source_scale, unsigned int source_length, unsigned char *dest, int dest_step, unsigned int dest_scale, unsigned int dest_length ) argument
214 scale1d_2t1_ps( const unsigned char *source, int source_step, unsigned int source_scale, unsigned int source_length, unsigned char *dest, int dest_step, unsigned int dest_scale, unsigned int dest_length ) argument
261 scale1d_c( const unsigned char *source, int source_step, unsigned int source_scale, unsigned int source_length, unsigned char *dest, int dest_step, unsigned int dest_scale, unsigned int dest_length ) argument
335 Scale2D( unsigned char *source, int source_pitch, unsigned int source_width, unsigned int source_height, unsigned char *dest, int dest_pitch, unsigned int dest_width, unsigned int dest_height, unsigned char *temp_area, unsigned char temp_area_height, unsigned int hscale, unsigned int hratio, unsigned int vscale, unsigned int vratio, unsigned int interlaced ) argument
682 any_ratio_2d_scale( SCALE_VARS *si, const unsigned char *source, int source_pitch, unsigned int source_width, unsigned int source_height, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width, unsigned int dest_height ) argument
[all...]
/external/freetype/src/base/
H A Dftbitmap.c42 const FT_Bitmap *source,
47 FT_Int pitch = source->pitch;
51 if ( source == target )
54 if ( source->buffer == NULL )
56 *target = *source;
63 size = (FT_ULong)( pitch * source->rows );
87 *target = *source;
90 FT_MEM_COPY( target->buffer, source->buffer, size );
376 const FT_Bitmap *source,
389 switch ( source
[all...]
/external/icu4c/tools/genrb/
H A Dprscmnts.cpp35 removeText(UChar *source, int32_t srcLen, argument
43 UnicodeString src(source, srcLen);
55 return dest.extract(source, srcLen, *status);
67 removeCmtText(UChar* source, int32_t srcLen, UErrorCode* status){ argument
68 srcLen = trim(source, srcLen, status);
70 srcLen = removeText(source, srcLen, patString, UREGEX_MULTILINE, "", status);
71 return removeText(source, srcLen, "[ \\r\\n]+", 0, " ", status);// remove new lines;
75 getText(const UChar* source, int32_t srcLen, argument
86 UnicodeString src (source,srcLen);
112 getDescription( const UChar* source, int32_ argument
136 getCount(const UChar* source, int32_t srcLen, UParseCommentsOption option, UErrorCode *status) argument
172 getAt(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, int32_t index, UParseCommentsOption option, UErrorCode* status) argument
213 getTranslate( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
223 getNote(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
[all...]
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dteststreams.py351 The constructor of CommonTokenStream needs a token source. This
369 self.source = MockSource()
375 stream = antlr3.CommonTokenStream(self.source)
383 stream.setTokenSource(self.source)
389 """CommonTokenStream.LT(): EOF (empty source)"""
391 stream = antlr3.CommonTokenStream(self.source)
400 self.source.tokens.append(
404 stream = antlr3.CommonTokenStream(self.source)
413 self.source.tokens.append(
417 self.source
[all...]
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DPipeTest.java51 * @tests java.nio.channels.Pipe#source()
55 SourceChannel source = pipe.source();
56 assertTrue(source.isBlocking());
/external/icu4c/common/unicode/
H A Ducnv_cb.h56 * it would call FromUWriteBytes with an offset of 1 (and advance the source
76 * @param source source bytes to write
87 const char* source,
98 * @param offsetIndex the relative offset index from the current source pointer to be used
115 * @param source pointer to pointer to first UChar to write [on exit: 1 after last UChar processed]
123 const UChar** source,
134 * @param source source string to write
135 * @param length the length of source strin
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Duncompr.c12 Decompresses the source buffer into the destination buffer. sourceLen is
13 the byte length of the source buffer. Upon entry, destLen is the total
26 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
29 const Bytef *source;
35 stream.next_in = (Bytef*)source;
37 /* Check for source > 64K on 16-bit machine: */
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptSourceCode.h4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
44 ScriptSourceCode(const String& source, const KURL& url = KURL(), const TextPosition1& startPosition = TextPosition1::minimumPosition()) argument
45 : m_source(source)
64 const String& source() const { return m_source; } function in class:WebCore::ScriptSourceCode
/external/webkit/Source/WebCore/icu/unicode/
H A Ducnv_cb.h56 * it would call FromUWriteBytes with an offset of 1 (and advance the source
76 * @param source source bytes to write
87 const char* source,
98 * @param offsetIndex the relative offset index from the current source pointer to be used
115 * @param source pointer to pointer to first UChar to write [on exit: 1 after last UChar processed]
123 const UChar** source,
134 * @param source source string to write
135 * @param length the length of source strin
[all...]
/external/webkit/Source/WebCore/webaudio/
H A DBiquadDSPKernel.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
35 void BiquadDSPKernel::process(const float* source, float* destination, size_t framesToProcess) argument
37 ASSERT(source && destination && biquadProcessor());
72 m_biquad.process(source, destination, framesToProcess);
/external/zlib/src/
H A Duncompr.c12 Decompresses the source buffer into the destination buffer. sourceLen is
13 the byte length of the source buffer. Upon entry, destLen is the total
24 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
27 const Bytef *source;
33 stream.next_in = (Bytef*)source;
35 /* Check for source > 64K on 16-bit machine: */
/external/doclava/src/com/google/doclava/
H A DSourcePositionInfo.java85 * Build a SourcePositionInfo from the XML source= notation
87 public static SourcePositionInfo fromXml(String source) { argument
88 if (source != null) {
89 for (int i = 0; i < source.length(); i++) {
90 if (source.charAt(i) == ':') {
91 return new SourcePositionInfo(source.substring(0, i), Integer.parseInt(source
/external/webkit/Source/WebKit/chromium/src/
H A DWebImageCG.cpp4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
52 ImageSource source; local
53 source.setData(PassRefPtr<SharedBuffer>(data).get(), true);
54 if (!source.isSizeAvailable())
60 const size_t frameCount = source.frameCount();
64 const IntSize frameSize = source.frameSizeAtIndex(i);
79 RetainPtr<CGImageRef> frame(AdoptCF, source.createFrameAtIndex(index));
/external/chromium/chrome/browser/chromeos/login/
H A Daccount_screen.cc2 // Use of this source code is governed by a BSD-style license that can be
112 void AccountScreen::LoadingStateChanged(TabContents* source) { argument
113 std::string url = source->GetURL().spec();
115 source->Stop();
119 } else if (check_for_https_ && !source->GetURL().SchemeIsSecure()) {
124 void AccountScreen::NavigationStateChanged(const TabContents* source, argument
126 if (source->render_view_host()) {
127 source->render_view_host()->InsertCSSInWebFrame(
129 source->render_view_host()->ExecuteJavascriptInWebFrame(
/external/chromium/chrome/browser/content_settings/
H A Dstub_settings_observer.cc2 // Use of this source code is governed by a BSD-style license that can be
20 const NotificationSource& source,
23 Source<HostContentSettingsMap> content_settings(source);
19 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument
/external/chromium/chrome/browser/search_engines/
H A Dtemplate_url_scraper_unittest.cc2 // source code is governed by a BSD-style license that can be found in the
37 const NotificationSource& source,
40 Source<TemplateURLModel>(source).ptr() == model_) {
36 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument
/external/chromium/chrome/browser/sidebar/
H A Dsidebar_container.h2 // Use of this source code is governed by a BSD-style license that can be
97 virtual void OpenURLFromTab(TabContents* source, argument
102 virtual void NavigationStateChanged(const TabContents* source, argument
104 virtual void AddNewContents(TabContents* source, argument
111 virtual void LoadingStateChanged(TabContents* source) {} argument
112 virtual void CloseContents(TabContents* source) {} argument
113 virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {} argument
114 virtual bool IsPopup(const TabContents* source) const;
115 virtual void UpdateTargetURL(TabContents* source, const GURL& url) {} argument
/external/icu4c/test/cintltst/
H A Dncnvfbts.h23 static UBool testConvertFromUnicode(const UChar *source, int sourceLen, const uint8_t *expect, int expectLen,
25 static UBool testConvertToUnicode( const uint8_t *source, int sourcelen, const UChar *expect, int expectlen,

Completed in 2347 milliseconds

1234567891011>>