HomeSort by relevance Sort by last modified time
    Searched refs:Constants (Results 26 - 50 of 120) sorted by null

12 3 4 5

  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemExtensionScript.java 95 * @see org.apache.xalan.templates.Constants
101 return Constants.ELEMNAME_EXTENSIONSCRIPT;
ElemAttributeSet.java 76 * @see org.apache.xalan.templates.Constants
82 return Constants.ELEMNAME_DEFINEATTRIBUTESET;
92 return Constants.ELEMNAME_ATTRIBUTESET_STRING;
151 case Constants.ELEMNAME_ATTRIBUTE :
ElemExsltFunction.java 46 * Constants class.
47 * @see org.apache.xalan.templates.Constants
51 return Constants.EXSLT_ELEMNAME_FUNCTION;
56 * Constants class.
57 * @see org.apache.xalan.templates.Constants
63 return Constants.EXSLT_ELEMNAME_FUNCTION_STRING;
137 if (!(namespace.equals(Constants.S_EXSLT_FUNCTIONS_URL)))
139 namespace = Constants.S_EXSLT_FUNCTIONS_URL;
ElemIf.java 97 * @see org.apache.xalan.templates.Constants
103 return Constants.ELEMNAME_IF;
113 return Constants.ELEMNAME_IF_STRING;
KeyDeclaration.java 90 return Constants.ELEMNAME_KEY_STRING;
162 * @see org.apache.xalan.templates.Constants
168 return Constants.ELEMNAME_KEY;
ElemCallTemplate.java 88 * @see org.apache.xalan.templates.Constants
94 return Constants.ELEMNAME_CALLTEMPLATE;
104 return Constants.ELEMNAME_CALLTEMPLATE_STRING;
151 if(ete.getXSLToken() == Constants.ELEMNAME_PARAMVARIABLE)
335 if (Constants.ELEMNAME_WITHPARAM == type)
ElemExtensionCall.java 64 * @see org.apache.xalan.templates.Constants
70 return Constants.ELEMNAME_EXTENSIONCALL;
125 if (Constants.ELEMNAME_EXTENSIONDECL == child.getXSLToken())
157 if (child.getXSLToken() == Constants.ELEMNAME_FALLBACK)
183 if (child.getXSLToken() == Constants.ELEMNAME_FALLBACK)
ElemCopy.java 50 * @see org.apache.xalan.templates.Constants
56 return Constants.ELEMNAME_COPY;
66 return Constants.ELEMNAME_COPY_STRING;
ElemSort.java 287 * @see org.apache.xalan.templates.Constants
293 return Constants.ELEMNAME_SORT;
303 return Constants.ELEMNAME_SORT_STRING;
  /libcore/luni/src/main/java/org/apache/xml/utils/
Constants.java 19 * $Id: Constants.java 468655 2006-10-28 07:12:06Z minchau $
24 * Primary constants used by the XSLT Processor
27 public class Constants
  /libcore/luni/src/main/java/org/apache/xpath/functions/
FuncExtElementAvailable.java 23 import org.apache.xalan.templates.Constants;
60 namespace = Constants.S_XSLNAMESPACEURL;
72 if (namespace.equals(Constants.S_XSLNAMESPACEURL)
73 || namespace.equals(Constants.S_BUILTIN_EXTENSIONS_URL))
FuncExtFunctionAvailable.java 23 import org.apache.xalan.templates.Constants;
61 namespace = Constants.S_XSLNAMESPACEURL;
73 if (namespace.equals(Constants.S_XSLNAMESPACEURL))
  /libcore/sqlite-jdbc/src/main/java/SQLite/
Stmt.java 210 * @return column type code, e.g. SQLite.Constants.SQLITE_INTEGER
229 case Constants.SQLITE_INTEGER:
231 case Constants.SQLITE_FLOAT:
233 case Constants.SQLITE_BLOB:
235 case Constants.SQLITE3_TEXT:
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppRfcommListener.java 52 private static final boolean D = Constants.DEBUG;
54 private static final boolean V = Constants.VERBOSE;
92 if (Constants.USE_TCP_DEBUG) {
95 mTcpServerSocket = new ServerSocket(Constants.TCP_DEBUG_PORT, 1);
97 Log.e(TAG, "Error listing on port" + Constants.TCP_DEBUG_PORT);
175 if(!Constants.USE_TCP_SIMPLE_SERVER) {
187 if (Constants.USE_TCP_DEBUG) {
BluetoothOppBatch.java 64 private static final boolean D = Constants.DEBUG;
65 private static final boolean V = Constants.VERBOSE;
113 mStatus = Constants.BATCH_STATUS_PENDING;
175 Constants.updateShareStatus(mContext, info.mId, BluetoothShare.STATUS_CANCELED);
BluetoothOppReceiver.java 57 private static final boolean D = Constants.DEBUG;
58 private static final boolean V = Constants.VERBOSE;
85 Constants.THIS_PACKAGE_NAME);
115 } else if (action.equals(Constants.ACTION_INCOMING_FILE_CONFIRM)) {
136 } else if (action.equals(Constants.ACTION_OPEN) || action.equals(Constants.ACTION_LIST)) {
138 if (action.equals(Constants.ACTION_OPEN)) {
172 } else if (action.equals(Constants.ACTION_OPEN_OUTBOUND_TRANSFER)) {
179 } else if (action.equals(Constants.ACTION_OPEN_INBOUND_TRANSFER)) {
186 } else if (action.equals(Constants.ACTION_HIDE))
    [all...]
BluetoothOppNotification.java 58 private static final boolean D = Constants.DEBUG;
59 private static final boolean V = Constants.VERBOSE;
275 RemoteViews expandedView = new RemoteViews(Constants.THIS_PACKAGE_NAME,
302 Intent intent = new Intent(Constants.ACTION_LIST);
303 intent.setClassName(Constants.THIS_PACKAGE_NAME, BluetoothOppReceiver.class.getName());
375 intent = new Intent(Constants.ACTION_OPEN_OUTBOUND_TRANSFER);
376 intent.setClassName(Constants.THIS_PACKAGE_NAME, BluetoothOppReceiver.class.getName());
379 intent = new Intent(Constants.ACTION_COMPLETE_HIDE);
380 intent.setClassName(Constants.THIS_PACKAGE_NAME, BluetoothOppReceiver.class.getName());
422 intent = new Intent(Constants.ACTION_OPEN_INBOUND_TRANSFER)
    [all...]
BluetoothOppPreference.java 49 private static final boolean D = Constants.DEBUG;
50 private static final boolean V = Constants.VERBOSE;
88 mNamePreference = mContext.getSharedPreferences(Constants.BLUETOOTHOPP_NAME_PREFERENCE,
91 Constants.BLUETOOTHOPP_CHANNEL_PREFERENCE, Context.MODE_PRIVATE);
BluetoothOppTransfer.java 71 private static final boolean D = Constants.DEBUG;
73 private static final boolean V = Constants.VERBOSE;
160 mBatch.mStatus = Constants.BATCH_STATUS_FAILED;
173 mBatch.mStatus = Constants.BATCH_STATUS_FAILED;
219 mBatch.mStatus = Constants.BATCH_STATUS_FINISHED;
231 mBatch.mStatus = Constants.BATCH_STATUS_FAILED;
250 mBatch.mStatus = Constants.BATCH_STATUS_FAILED;
349 Constants.sendIntentIfCompleted(mContext, contentUri, info.mStatus);
389 mBatch.mStatus = Constants.BATCH_STATUS_FAILED;
441 mBatch.mStatus = Constants.BATCH_STATUS_RUNNING
    [all...]
BluetoothOppService.java 72 private static final boolean D = Constants.DEBUG;
73 private static final boolean V = Constants.VERBOSE;
231 updateValues.put(Constants.MEDIA_SCANNED, Constants.MEDIA_SCANNED_SCANNED_OK);
244 updateValues1.put(Constants.MEDIA_SCANNED,
245 Constants.MEDIA_SCANNED_SCANNED_FAILED);
271 } else if (Constants.USE_TCP_DEBUG && !Constants.USE_TCP_SIMPLE_SERVER){
536 cursor.getInt(cursor.getColumnIndexOrThrow(Constants.MEDIA_SCANNED)) != Constants.MEDIA_SCANNED_NOT_SCANNED)
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 202 if (Constants.LOGVV) {
203 Log.v(Constants.TAG, "populating new database");
223 Log.i(Constants.TAG, "Upgrading downloads database from version " + oldV
229 Log.i(Constants.TAG, "Downgrading downloads database from version " + oldV
341 Constants.RETRY_AFTER_X_REDIRECT_COUNT + " INTEGER, " +
345 Constants.OTA_UPDATE + " BOOLEAN, " +
349 Constants.NO_SYSTEM_FILES + " BOOLEAN, " +
353 Constants.FAILED_CONNECTIONS + " INTEGER, " +
363 Constants.ETAG + " TEXT, " +
364 Constants.UID + " INTEGER, "
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java 30 import com.example.android.samplesync.Constants;
72 Constants.AUTHTOKEN_TYPE, true /* notifyAuthFailure */);
94 mAccountManager.invalidateAuthToken(Constants.ACCOUNT_TYPE,
  /packages/apps/Contacts/src/com/android/contacts/
TypePrecedence.java 20 import com.android.contacts.util.Constants;
102 } else if (mimetype.equals(Constants.MIME_SMS_ADDRESS)) {
  /libcore/luni/src/main/java/org/apache/xalan/processor/
ProcessorLRE.java 30 import org.apache.xalan.templates.Constants;
85 handler.getProcessorFor(Constants.S_XSLNAMESPACEURL, "stylesheet",
127 if ((null != attrUri) && attrUri.equals(Constants.S_XSLNAMESPACEURL))
134 "xmlns")) && value.equals(Constants.S_XSLNAMESPACEURL))
219 && (uri.equals(Constants.S_BUILTIN_EXTENSIONS_URL)
220 || uri.equals(Constants.S_BUILTIN_OLD_EXTENSIONS_URL)))
364 if(decl.getURI().equals(Constants.S_XSLNAMESPACEURL))
XSLTElementDef.java 26 import org.apache.xalan.templates.Constants;
62 && (namespace.equals(Constants.S_XSLNAMESPACEURL)
63 || namespace.equals(Constants.S_BUILTIN_EXTENSIONS_URL)
64 || namespace.equals(Constants.S_BUILTIN_OLD_EXTENSIONS_URL)))
92 && (namespace.equals(Constants.S_XSLNAMESPACEURL)
93 || namespace.equals(Constants.S_BUILTIN_EXTENSIONS_URL)
94 || namespace.equals(Constants.S_BUILTIN_OLD_EXTENSIONS_URL)))
484 if (!equalsMayBeNullOrZeroLen(uri, Constants.S_XSLNAMESPACEURL))
610 if (uri.length() > 0 && !equalsMayBeNullOrZeroLen(uri, Constants.S_XSLNAMESPACEURL))

Completed in 827 milliseconds

12 3 4 5