Searched refs:Constants (Results 1 - 25 of 218) sorted by relevance

123456789

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DConstants.cs42 internal sealed class Constants class in namespace:Antlr.Runtime
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemComment.java43 * @see org.apache.xalan.templates.Constants
49 return Constants.ELEMNAME_COMMENT;
59 return Constants.ELEMNAME_COMMENT_STRING;
112 case Constants.ELEMNAME_TEXTLITERALRESULT :
113 case Constants.ELEMNAME_APPLY_TEMPLATES :
114 case Constants.ELEMNAME_APPLY_IMPORTS :
115 case Constants.ELEMNAME_CALLTEMPLATE :
116 case Constants.ELEMNAME_FOREACH :
117 case Constants.ELEMNAME_VALUEOF :
118 case Constants
[all...]
H A DElemOtherwise.java39 * @see org.apache.xalan.templates.Constants
45 return Constants.ELEMNAME_OTHERWISE;
55 return Constants.ELEMNAME_OTHERWISE_STRING;
H A DElemPI.java95 * @see org.apache.xalan.templates.Constants
101 return Constants.ELEMNAME_PI;
111 return Constants.ELEMNAME_PI_STRING;
141 new Object[]{ Constants.ATTRNAME_NAME, piName });
151 new Object[]{ Constants.ATTRNAME_NAME, piName });
193 case Constants.ELEMNAME_TEXTLITERALRESULT :
194 case Constants.ELEMNAME_APPLY_TEMPLATES :
195 case Constants.ELEMNAME_APPLY_IMPORTS :
196 case Constants.ELEMNAME_CALLTEMPLATE :
197 case Constants
[all...]
H A DElemAttribute.java53 * @see org.apache.xalan.templates.Constants
59 return Constants.ELEMNAME_ATTRIBUTE;
69 return Constants.ELEMNAME_ATTRIBUTE_STRING;
231 case Constants.ELEMNAME_TEXTLITERALRESULT :
232 case Constants.ELEMNAME_APPLY_TEMPLATES :
233 case Constants.ELEMNAME_APPLY_IMPORTS :
234 case Constants.ELEMNAME_CALLTEMPLATE :
235 case Constants.ELEMNAME_FOREACH :
236 case Constants.ELEMNAME_VALUEOF :
237 case Constants
[all...]
H A DElemFallback.java42 * @see org.apache.xalan.templates.Constants
48 return Constants.ELEMNAME_FALLBACK;
58 return Constants.ELEMNAME_FALLBACK_STRING;
95 if (Constants.ELEMNAME_EXTENSIONCALL == parentElemType
96 || Constants.ELEMNAME_UNDEFINED == parentElemType)
H A DElemText.java102 * Constants class.
103 * @see org.apache.xalan.templates.Constants
107 return Constants.ELEMNAME_TEXT;
117 return Constants.ELEMNAME_TEXT_STRING;
136 case Constants.ELEMNAME_TEXTLITERALRESULT :
H A DElemChoose.java45 * @see org.apache.xalan.templates.Constants
51 return Constants.ELEMNAME_CHOOSE;
61 return Constants.ELEMNAME_CHOOSE_STRING;
88 if (Constants.ELEMNAME_WHEN == type)
109 else if (Constants.ELEMNAME_OTHERWISE == type)
141 case Constants.ELEMNAME_WHEN :
142 case Constants.ELEMNAME_OTHERWISE :
H A DElemMessage.java51 private boolean m_terminate = Constants.ATTRVAL_NO; // default value
81 * @see org.apache.xalan.templates.Constants
87 return Constants.ELEMNAME_MESSAGE;
97 return Constants.ELEMNAME_MESSAGE_STRING;
H A DElemUnknown.java38 * @see org.apache.xalan.templates.Constants
44 return Constants.ELEMNAME_UNDEFINED;
61 if (child.getXSLToken() == Constants.ELEMNAME_FALLBACK)
87 if (child.getXSLToken() == Constants.ELEMNAME_FALLBACK)
H A DElemParam.java54 * @see org.apache.xalan.templates.Constants
60 return Constants.ELEMNAME_PARAMVARIABLE;
70 return Constants.ELEMNAME_PARAMVARIABLE_STRING;
96 if (parentToken == Constants.ELEMNAME_TEMPLATE
97 || parentToken == Constants.EXSLT_ELEMNAME_FUNCTION)
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_code.c47 dst->Constants = malloc(sizeof(struct rc_constant) * src->Count);
48 memcpy(dst->Constants, src->Constants, sizeof(struct rc_constant) * src->Count);
55 free(c->Constants);
71 memcpy(newlist, c->Constants, sizeof(struct rc_constant) * c->Count);
73 free(c->Constants);
74 c->Constants = newlist;
77 c->Constants[index] = *constant;
93 if (c->Constants[index].Type == RC_CONSTANT_STATE) {
94 if (c->Constants[inde
[all...]
H A Dradeon_remove_constants.c69 struct rc_constant *constants = c->Program.Constants.Constants;
73 if (!c->Program.Constants.Count) {
78 const_used = malloc(c->Program.Constants.Count);
79 memset(const_used, 0, c->Program.Constants.Count);
93 for (unsigned i = 0; i < c->Program.Constants.Count; i++)
100 remap_table = malloc(c->Program.Constants.Count * sizeof(unsigned));
101 inv_remap_table = malloc(c->Program.Constants.Count * sizeof(unsigned));
104 for (unsigned i = 0; i < c->Program.Constants.Count; i++) {
122 assert( is_identity || new_count < c->Program.Constants
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DTypeUtils.java48 return (Constants.ACC_FINAL & access) != 0;
52 return (Constants.ACC_STATIC & access) != 0;
56 return (Constants.ACC_PROTECTED & access) != 0;
60 return (Constants.ACC_PUBLIC & access) != 0;
64 return (Constants.ACC_ABSTRACT & access) != 0;
68 return (Constants.ACC_INTERFACE & access) != 0;
72 return (Constants.ACC_PRIVATE & access) != 0;
76 return (Constants.ACC_SYNTHETIC & access) != 0;
201 return new Signature(Constants.CONSTRUCTOR_NAME, sb.toString());
246 return Constants
[all...]
H A DCodeEmitter.java44 public static final int ADD = Constants.IADD;
45 public static final int MUL = Constants.IMUL;
46 public static final int XOR = Constants.IXOR;
47 public static final int USHR = Constants.IUSHR;
48 public static final int SUB = Constants.ISUB;
49 public static final int DIV = Constants.IDIV;
50 public static final int NEG = Constants.INEG;
51 public static final int REM = Constants.IREM;
52 public static final int AND = Constants.IAND;
53 public static final int OR = Constants
[all...]
/external/sl4a/Common/src/com/googlecode/android_scripting/
H A DIntentBuilders.java39 intent.setComponent(Constants.TRIGGER_SERVICE_COMPONENT_NAME);
51 final ComponentName componentName = Constants.SL4A_SERVICE_LAUNCHER_COMPONENT_NAME;
54 intent.setAction(Constants.ACTION_LAUNCH_BACKGROUND_SCRIPT);
55 intent.putExtra(Constants.EXTRA_SCRIPT_PATH, script.getAbsolutePath());
67 final ComponentName componentName = Constants.SL4A_SERVICE_LAUNCHER_COMPONENT_NAME;
70 intent.setAction(Constants.ACTION_LAUNCH_FOREGROUND_SCRIPT);
71 intent.putExtra(Constants.EXTRA_SCRIPT_PATH, script.getAbsolutePath());
83 final ComponentName componentName = Constants.SL4A_SERVICE_LAUNCHER_COMPONENT_NAME;
86 intent.setAction(Constants.ACTION_LAUNCH_INTERPRETER);
87 intent.putExtra(Constants
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZConstantPoolValue.cpp32 const std::vector<MachineConstantPoolEntry> &Constants = CP->getConstants(); local
33 for (unsigned I = 0, E = Constants.size(); I != E; ++I) {
34 if (Constants[I].isMachineConstantPoolEntry() &&
35 (Constants[I].getAlignment() & AlignMask) == 0) {
37 static_cast<SystemZConstantPoolValue *>(Constants[I].Val.MachineCPVal);
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/locale/
H A DLocaleReceiver.java24 import com.googlecode.android_scripting.Constants;
36 .getString(Constants.EXTRA_SCRIPT_PATH));
39 if (intent.getBooleanExtra(Constants.EXTRA_LAUNCH_IN_BACKGROUND, false)) {
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DInterfaceMaker.java104 ce.begin_class(Constants.V1_2,
105 Constants.ACC_PUBLIC | Constants.ACC_INTERFACE,
109 Constants.SOURCE_FILE);
113 ce.begin_method(Constants.ACC_PUBLIC | Constants.ACC_ABSTRACT,
H A DMixinEmitter.java36 new Signature("newInstance", MIXIN, new Type[]{ Constants.TYPE_OBJECT_ARRAY });
41 begin_class(Constants.V1_2,
42 Constants.ACC_PUBLIC,
46 Constants.SOURCE_FILE);
50 declare_field(Constants.ACC_PRIVATE, FIELD_NAME, Constants.TYPE_OBJECT_ARRAY, null);
52 CodeEmitter e = begin_method(Constants.ACC_PUBLIC, CSTRUCT_OBJECT_ARRAY, null);
67 e = EmitUtils.begin_method(this, method, Constants.ACC_PUBLIC);
/external/chromium-trace/catapult/netlog_viewer/netlog_viewer/
H A Dmain.js29 var Constants = null; variable
289 Constants = receivedConstants;
291 EventType = Constants.logEventTypes;
293 EventPhase = Constants.logEventPhase;
294 EventSourceType = Constants.logSourceType;
296 ClientInfo = Constants.clientInfo;
297 LoadFlag = Constants.loadFlag;
298 NetError = Constants.netError;
299 QuicError = Constants.quicError;
300 QuicRstStreamError = Constants
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/util/
H A DParallelSorterEmitter.java31 new Signature("newInstance", PARALLEL_SORTER, new Type[]{ Constants.TYPE_OBJECT_ARRAY });
37 begin_class(Constants.V1_2, Constants.ACC_PUBLIC, className, PARALLEL_SORTER, null, Constants.SOURCE_FILE);
50 CodeEmitter e = begin_method(Constants.ACC_PUBLIC, CSTRUCT_OBJECT_ARRAY, null);
55 e.super_putfield("a", Constants.TYPE_OBJECT_ARRAY);
58 declare_field(Constants.ACC_PRIVATE, getFieldName(i), type, null);
71 CodeEmitter e = begin_method(Constants.ACC_PUBLIC, SWAP, null);
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
H A DScriptingLayerServiceLauncher.java26 import com.googlecode.android_scripting.Constants;
40 intent.setComponent(Constants.SL4A_SERVICE_COMPONENT_NAME);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DFieldProviderTransformer.java89 super.declare_field(Constants.PRIVATE_FINAL_STATIC, FIELD_NAMES, Constants.TYPE_STRING_ARRAY, null);
90 super.declare_field(Constants.PRIVATE_FINAL_STATIC, FIELD_TYPES, Constants.TYPE_CLASS_ARRAY, null);
105 e.putstatic(getClassType(), FIELD_NAMES, Constants.TYPE_STRING_ARRAY);
108 e.newarray(Constants.TYPE_CLASS);
117 e.putstatic(getClassType(), FIELD_TYPES, Constants.TYPE_CLASS_ARRAY);
121 CodeEmitter e = super.begin_method(Constants.ACC_PUBLIC, PROVIDER_GET_NAMES, null);
122 e.getstatic(getClassType(), FIELD_NAMES, Constants.TYPE_STRING_ARRAY);
128 CodeEmitter e = super.begin_method(Constants
[all...]
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
H A DActivityResultFacade.java22 import com.googlecode.android_scripting.Constants;
37 + "startActivityForResult(), the resulting intent will contain " + Constants.EXTRA_RESULT
56 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.booleanValue());
68 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.byteValue());
80 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.shortValue());
92 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.charValue());
104 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.intValue());
116 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.longValue());
128 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.floatValue());
140 mResult.putExtra(Constants
[all...]

Completed in 273 milliseconds

123456789