OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:constantname
(Results
1 - 9
of
9
) sorted by null
/libcore/luni/src/main/java/java/lang/
EnumConstantNotPresentException.java
31
private final String
constantName
;
40
* @param
constantName
44
public EnumConstantNotPresentException(Class<? extends Enum> enumType, String
constantName
) {
45
super("enum constant " + enumType.getName() + "." +
constantName
+ " is missing");
47
this.
constantName
=
constantName
;
66
public String
constantName
() {
67
return
constantName
;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
EnumConstantNotPresentExceptionTest.java
48
* @test java.lang.EnumConstantNotPresentException#
constantName
()
52
assertEquals("FOUR", e.
constantName
());
/frameworks/base/core/java/android/view/
ViewPropertyAnimator.java
656
* @param
constantName
The specifier for the property being animated
659
private void animateProperty(int
constantName
, float toValue) {
660
float fromValue = getValue(
constantName
);
662
animatePropertyBy(
constantName
, fromValue, deltaValue);
670
* @param
constantName
The specifier for the property being animated
673
private void animatePropertyBy(int
constantName
, float byValue) {
674
float fromValue = getValue(
constantName
);
675
animatePropertyBy(
constantName
, fromValue, byValue);
682
* @param
constantName
The specifier for the property being animated
686
private void animatePropertyBy(int
constantName
, float startValue, float byValue)
[
all
...]
/cts/tools/dex-tools/src/dex/reader/
DexEncodedValueImpl.java
164
String
constantName
= stringPool[fieldIdItem.name_idx];
166
return typeName + "!" +
constantName
;
/libcore/luni/src/main/java/org/apache/harmony/lang/annotation/
AnnotationMember.java
301
throw new EnumConstantNotPresentException(ecnpe.enumType(), ecnpe.
constantName
());
/external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorCPP.pm
409
my $
constantName
= $constant->name;
412
my $output = "WEBDOM_" . $
constantName
. " = " . $constantValue;
[
all
...]
CodeGeneratorObjC.pm
737
my $
constantName
= $constant->name;
740
my $output = " DOM_" . $
constantName
. " = " . $constantValue;
[
all
...]
/external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.cpp
73
static CString
constantName
(ExecState* exec, int k, JSValue value)
89
return
constantName
(exec, r, getConstant(r));
[
all
...]
/external/webkit/Source/JavaScriptCore/
ChangeLog-2009-06-16
[
all
...]
Completed in 1082 milliseconds