Searched defs:source (Results 251 - 275 of 1325) sorted by relevance

<<11121314151617181920>>

/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-plugins/com/jme3/shader/plugins/
H A DGLSLLoader.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
65 public void setSource(String source){ argument
66 this.shaderSource = source;
123 // // the source and name are the same for variable dependencies
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestChatClient.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
117 public void messageReceived(Client source, Message m) { argument
H A DTestChatServer.java5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
81 public void messageReceived(HostedConnection source, Message m) { argument
86 source.setAttribute("name", ((ChatMessage) m).getName());
92 source.getServer().broadcast(m);
/external/junit/src/junit/framework/
H A DComparisonCompactor.java39 private String compactString(String source) { argument
40 String result= DELTA_START + source.substring(fPrefix, source.length() - fSuffix + 1) + DELTA_END;
/external/llvm/include/llvm/Support/
H A DConvertUTF.h14 * This source code is provided as is by Unicode, Inc. No claims are
37 here, but is handled in a separate source file.
48 and if not, whether the problem was in the source or target buffers.
56 sourceStart - pointer to a pointer to the source buffer.
79 sequence is malformed. When "sourceIllegal" is returned, the source
117 sourceExhausted, /* partial character in source, but hit end */
119 sourceIllegal /* source sequence is illegal/malformed */
156 Boolean isLegalUTF8Sequence(const UTF8 *source, const UTF8 *sourceEnd);
158 Boolean isLegalUTF8String(const UTF8 **source, const UTF8 *sourceEnd);
197 * Convert the first UTF8 sequence in the given source buffe
211 convertUTF8Sequence(const UTF8 **source, const UTF8 *sourceEnd, UTF32 *target, ConversionFlags flags) argument
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
H A DFlatPackageWriterImpl.java88 * @param source the source movie with all qualities
91 public void write(Movie source) throws IOException { argument
96 IsoFile muxed = defaultMp4Builder.build(source);
102 Movie cleanedSource = removeUnknownTracks(source);
168 private Movie removeUnknownTracks(Movie source) { argument
170 for (Track track : source.getTracks()) {
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DDivideTimeScaleTrack.java31 Track source; field in class:DivideTimeScaleTrack
34 public DivideTimeScaleTrack(Track source, int timeScaleDivisor) { argument
35 this.source = source;
40 return source.getSampleDescriptionBox();
52 return source.getSyncSamples();
56 return source.getSampleDependencies();
60 TrackMetaData trackMetaData = (TrackMetaData) source.getTrackMetaData().clone();
61 trackMetaData.setTimescale(source.getTrackMetaData().getTimescale() / this.timeScaleDivisor);
66 return source
[all...]
H A DMultiplyTimeScaleTrack.java37 Track source; field in class:MultiplyTimeScaleTrack
40 public MultiplyTimeScaleTrack(Track source, int timeScaleFactor) { argument
41 this.source = source;
46 return source.getSampleDescriptionBox();
50 return adjustTts(source.getDecodingTimeEntries(), timeScaleFactor);
54 return adjustCtts(source.getCompositionTimeEntries(), timeScaleFactor);
58 return source.getSyncSamples();
62 return source.getSampleDependencies();
66 TrackMetaData trackMetaData = (TrackMetaData) source
96 adjustCtts(List<CompositionTimeToSample.Entry> source, int timeScaleFactor) argument
108 adjustTts(List<TimeToSampleBox.Entry> source, int timeScaleFactor) argument
[all...]
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/openfst/src/include/fst/
H A Dcompat.h67 inline Dest bit_cast(const Source& source) { argument
73 memcpy(&dest, &source, sizeof(dest));
/external/oprofile/pp/
H A Dopannotate_options.cpp39 bool source; member in namespace:options
62 "directories to look for source files", "comma-separated paths"),
64 "source file prefixes to strip", "comma-separated paths"),
79 popt::option(options::source, "source", 's', "output source"),
98 if (!assembly && !source) {
99 cerr << "you must specify at least --source or --assembly\n";
110 "alternative source location with --search-dirs"
139 // we always merge but this have no effect on output since at source
[all...]
/external/quake/quake/src/QW/client/
H A Dgl_ngraph.c65 byte *source; local
71 source = draw_chars + (row<<10) + (col<<3);
76 if (source[nx] != 255)
77 ngraph_texels[y][nx+x] = 0x60 + source[nx];
78 source += 128;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowHtml.java13 public static Spanned fromHtml(String source) { argument
14 if (source == null) {
22 return new SpannedThatActsLikeString(source);
26 String source; field in class:ShadowHtml.SpannedThatActsLikeString
28 private SpannedThatActsLikeString(String source) { argument
29 this.source = source;
59 return source.length();
64 return source.charAt(i);
74 return source;
[all...]
H A DShadowSpannableString.java17 public void __constructor__(CharSequence source) { argument
18 text = source;
/external/skia/legacy/src/animator/
H A DSkMatrixParts.h5 * Use of this source code is governed by a BSD-style license that can be
98 SkDrawRect* source; member in class:SkRectToRect
113 SkPolygon* source; member in class:SkPolyToPoly
/external/skia/legacy/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
/external/skia/src/animator/
H A DSkMatrixParts.h5 * Use of this source code is governed by a BSD-style license that can be
98 SkDrawRect* source; member in class:SkRectToRect
113 SkPolygon* source; member in class:SkPolyToPoly
/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
/external/smack/src/com/kenai/jbosh/
H A DBOSHClientConnEvent.java56 * @param source event source
65 final BOSHClient source,
69 super(source);
96 * @param source client which has become connected
100 final BOSHClient source) {
101 return new BOSHClientConnEvent(source, true, null, null);
108 * @param source client which has been disconnected
112 final BOSHClient source) {
113 return new BOSHClientConnEvent(source, fals
64 BOSHClientConnEvent( final BOSHClient source, final boolean cConnected, final List<ComposableBody> cRequests, final Throwable cCause) argument
99 createConnectionEstablishedEvent( final BOSHClient source) argument
111 createConnectionClosedEvent( final BOSHClient source) argument
126 createConnectionClosedOnErrorEvent( final BOSHClient source, final List<ComposableBody> outstanding, final Throwable cause) argument
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dsymbol-table.cpp103 const string &source) {
102 Read(istream &strm, const string &source) argument
/external/srtp/crypto/math/
H A Dstat.c189 * tests to the random source defined by rs
354 stat_test_rand_source_with_repetition(rand_source_func_t source, unsigned num_trials) { argument
359 err = stat_test_rand_source(source);
/external/v8/src/arm/
H A Dlithium-gap-resolver-arm.cc2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
53 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
65 ASSERT(moves_[i].source()->IsConstantOperand());
76 // moves to perform, ignoring any move that is redundant (the source is
95 // be encountering the starting move again. So by spilling the source of
98 // its destination. All other moves from the spilled source have been
109 ASSERT(moves_[index].source() != NULL); // Or else it will look eliminated.
114 // dependencies. Any unperformed, unpending move with a source the same
122 // and all other moves with the same source a
167 LOperand* source = moves_[index].source(); local
208 LOperand* source = moves_[index].source(); local
[all...]
/external/v8/src/
H A Dlithium.cc2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
135 LOperand* source = move_operands_[i].source(); local
139 if (source->Equals(destination)) {
144 source->PrintTo(stream);
/external/v8/src/mips/
H A Dlithium-gap-resolver-mips.cc2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
54 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
66 ASSERT(moves_[i].source()->IsConstantOperand());
77 // moves to perform, ignoring any move that is redundant (the source is
96 // be encountering the starting move again. So by spilling the source of
99 // its destination. All other moves from the spilled source have been
110 ASSERT(moves_[index].source() != NULL); // Or else it will look eliminated.
115 // dependencies. Any unperformed, unpending move with a source the same
123 // and all other moves with the same source a
168 LOperand* source = moves_[index].source(); local
211 LOperand* source = moves_[index].source(); local
[all...]

Completed in 865 milliseconds

<<11121314151617181920>>