HomeSort by relevance Sort by last modified time
    Searched refs:source (Results 626 - 650 of 6834) sorted by null

<<21222324252627282930>>

  /external/icu4c/common/unicode/
caniter.h 76 * @param source string to get results for
80 CanonicalIterator(const UnicodeString &source, UErrorCode &status);
89 * Gets the NFD form of the current source we are iterating over.
90 * @return gets the source: NOTE: it is the NFD form of source
111 * Set a new source for this iterator. Allows object reuse.
112 * @param newSource the source string to iterate against. This allows the same iterator to be used
113 * while changing the source string, saving object creation.
122 * @param source the string to find permutations for
128 static void U_EXPORT2 permute(UnicodeString &source, UBool skipZeros, Hashtable *result, UErrorCode &status)
163 UnicodeString source; member in class:CanonicalIterator
    [all...]
  /external/icu4c/i18n/unicode/
tblcoll.h 91 * <a href="http://source.icu-project.org/repos/icu/icuhtml/trunk/design/collation/ICU_collation_design.htm">
243 * Creates a collation element iterator for the source string. The caller of
246 * @param source the string over which the CollationElementIterator will
248 * @return the collation element iterator of the source string using this as
253 const UnicodeString& source) const;
256 * Creates a collation element iterator for the source. The caller of this
258 * @param source the CharacterIterator which produces the characters over
260 * @return the collation element iterator of the source using this as the
265 const CharacterIterator& source) const;
272 * @param source the source string
    [all...]
  /external/icu4c/samples/datefmt/
util.cpp 32 UnicodeString escape(const UnicodeString &source) {
36 for (i=0; i<source.length(); ++i) {
37 UChar ch = source[i];
  /external/icu4c/samples/msgfmt/
util.cpp 32 UnicodeString escape(const UnicodeString &source) {
36 for (i=0; i<source.length(); ++i) {
37 UChar ch = source[i];
  /external/icu4c/samples/translit/
util.cpp 32 UnicodeString escape(const UnicodeString &source) {
36 for (i=0; i<source.length(); ++i) {
37 UChar ch = source[i];
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestChatServer.java 5 * 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) {
86 source.setAttribute("name", ((ChatMessage) m).getName());
92 source.getServer().broadcast(m);
TestMessages.java 5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
51 public void messageReceived(HostedConnection source, com.jme3.network.Message message) {
54 source.send(new PongMessage());
60 public void messageReceived(Client source, com.jme3.network.Message message) {
TestThroughput.java 5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
61 public void messageReceived(MessageConnection source, Message msg) {
80 if (source == null) {
81 System.out.println("Received a message from a not fully connected source, msg:" + msg);
83 //System.out.println( "sending:" + msg + " back to client:" + source );
87 source.send(msg);
  /external/openfst/src/bin/
fstcompile.cc 54 const char *source = "standard input"; local
57 source = argv[1];
83 s::CompileFst(*istrm, source, dest, FLAGS_fst_type, FLAGS_arc_type,
  /external/openssl/crypto/des/
FILES0 19 des.c - des(1) source code.
23 destest.c - Source for libdes.a test program.
24 speed.c - Source for libdes.a timing program.
25 rpw.c - Source for libdes.a testing password reading routines.
27 /* libdes.a source code */
30 ecb_enc.c - des_ecb_encrypt() source, this contains the basic DES code.
31 ecb3_enc.c - des_ecb3_encrypt() source.
32 cbc_ckm.c - des_cbc_cksum() source.
33 cbc_enc.c - des_cbc_encrypt() source.
37 cbc3_enc.c - des_3cbc_encrypt() source, don't use this function
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Blit.h 3 // Use of this source code is governed by a BSD-style license that can be
31 // Copy from source surface to dest surface.
33 // source is interpreted as RGBA and destFormat specifies the desired result format. For example, if destFormat = GL_RGB, the alpha channel will be forced to 0.
34 bool formatConvert(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest);
36 // 2x2 box filter sample from source to dest.
37 // Requires that source is RGB(A) and dest has the same format as source.
38 bool boxFilter(IDirect3DSurface9 *source, IDirect3DSurface9 *dest);
72 bool setShader(ShaderId source, const char *profile,
  /external/webkit/Source/WebCore/page/
UserScript.h 4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
41 UserScript(const String& source, const KURL& url,
44 : m_source(source)
53 const String& source() const { return m_source; } function in class:WebCore::UserScript
UserStyleSheet.h 4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
41 UserStyleSheet(const String& source, const KURL& url,
44 : m_source(source)
53 const String& source() const { return m_source; } function in class:WebCore::UserStyleSheet
  /external/webkit/Source/WebCore/platform/text/
BidiContext.h 47 BidiEmbeddingSource source() const { return static_cast<BidiEmbeddingSource>(m_source); } function in class:WebCore::BidiContext
51 BidiContext(unsigned char level, WTF::Unicode::Direction direction, bool override, BidiEmbeddingSource source, BidiContext* parent)
55 , m_source(source)
TextCodecLatin1.cpp 4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
124 const uint8_t* source = reinterpret_cast<const uint8_t*>(bytes); local
129 while (source < end) {
130 if (isASCII(*source)) {
132 if (isAlignedToMachineWord(source)) {
133 while (source < alignedEnd) {
134 MachineWord chunk = *reinterpret_cast_ptr<const MachineWord*>(source);
139 copyASCIIMachineWord(destination, source);
140 source += sizeof(MachineWord)
    [all...]
  /external/webkit/Source/WebCore/storage/
IDBCursor.h 4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
55 static PassRefPtr<IDBCursor> create(PassRefPtr<IDBCursorBackendInterface>, IDBRequest*, IDBAny* source, IDBTransaction*);
66 IDBAny* source() const;
73 IDBCursor(PassRefPtr<IDBCursorBackendInterface>, IDBRequest*, IDBAny* source, IDBTransaction*);
  /external/webkit/Source/WebKit/wx/bindings/python/
webview.i 4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
96 WebDOMString* createWebDOMString(PyObject* source)
98 if (!PyString_Check(source) && !PyUnicode_Check(source)) {
106 if (PyString_Check(source))
107 PyString_AsStringAndSize(source, &tmpPtr, &tmpSize);
109 PyObject* str = PyUnicode_AsUTF8String(source);
  /frameworks/av/media/libstagefright/include/
ID3.h 2 * Copyright (C) 2010 The Android Open Source Project
38 ID3(const sp<DataSource> &source);
81 bool parseV1(const sp<DataSource> &source);
82 bool parseV2(const sp<DataSource> &source);
  /frameworks/base/core/java/android/os/
ParcelUuid.java 2 * Copyright (C) 2009 The Android Open Source Project
112 public ParcelUuid createFromParcel(Parcel source) {
113 long mostSigBits = source.readLong();
114 long leastSigBits = source.readLong();
  /frameworks/base/tools/aapt/
CacheUpdater.h 2 // Copyright 2011 The Android Open Source Project
21 * mirror cache where the source tree is duplicated and filled with processed
36 // Process an image from source out to dest
37 virtual void processImage(String8 source, String8 dest) = 0;
95 // Process an image from source out to dest
96 virtual void processImage(String8 source, String8 dest)
101 preProcessImageToCache(bundle, source, dest);
  /frameworks/base/wifi/java/android/net/wifi/
WifiInfo.java 2 * Copyright (C) 2008 The Android Open Source Project
93 public WifiInfo(WifiInfo source) {
94 if (source != null) {
95 mSupplicantState = source.mSupplicantState;
96 mBSSID = source.mBSSID;
97 mSSID = source.mSSID;
98 mNetworkId = source.mNetworkId;
99 mHiddenSSID = source.mHiddenSSID;
100 mRssi = source.mRssi;
101 mLinkSpeed = source.mLinkSpeed
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/
TransformerFactory.java 114 * <p>Process the <code>Source</code> into a <code>Transformer</code>
115 * <code>Object</code>. The <code>Source</code> is an XSLT document that
123 * @param source <code>Source </code> of XSLT document used to create
125 * Examples of XML <code>Source</code>s include
135 * parsing the <code>Source</code> or it is not possible to create a
141 public abstract Transformer newTransformer(Source source)
146 * of the <code>Source</code> to the <code>Result</code>.
159 * Process the Source into a Templates object, which is
    [all...]
  /libcore/luni/src/main/java/javax/xml/validation/
Validator.java 23 import javax.xml.transform.Source;
42 * Note that while the {@link #validate(javax.xml.transform.Source)} and {@link #validate(javax.xml.transform.Source, javax.xml.transform.Result)}
43 * methods take a {@link Source} instance, the <code>Source</code>
86 * validate(source,null);
91 public void validate(Source source) throws SAXException, IOException {
92 validate(source, null);
101 * the {@link Source}/{@link Result} accepted
    [all...]
  /external/freetype/src/base/
ftglyph.c 97 FT_BitmapGlyph source = (FT_BitmapGlyph)bitmap_source; local
101 target->left = source->left;
102 target->top = source->top;
104 return FT_Bitmap_Copy( library, &source->bitmap, &target->bitmap );
162 FT_Outline* source = &slot->outline; local
174 error = FT_Outline_New( library, source->n_points, source->n_contours,
179 FT_Outline_Copy( source, target );
200 FT_OutlineGlyph source = (FT_OutlineGlyph)outline_source; local
203 FT_Library library = FT_GLYPH( source )->library
    [all...]
  /external/icu4c/common/
ucnv.c 804 * While collecting source units to find the longest match for m:n conversion,
805 * some source units may need to be stored for a partial match.
807 * source units, then they must be "replayed", i.e., fed back into the converter.
841 s=pArgs->source;
869 * Previous m:n conversion stored source units from a partial match
873 realSource=pArgs->source;
879 pArgs->source=replay;
913 pArgs->flush && pArgs->source==pArgs->sourceLimit &&
952 sourceIndex+=(int32_t)(pArgs->source-s);
958 * switch the source to new replay units (cannot occur while replaying
    [all...]

Completed in 714 milliseconds

<<21222324252627282930>>