HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 576 - 600 of 5712) sorted by null

<<21222324252627282930>>

  /external/chromium_org/v8/src/
ic-inl.h 72 // Convert target address to the code object. Code::GetCodeFromTargetAddress
103 InlineCacheHolderFlag IC::GetCodeCacheForObject(Object* object) {
104 if (object->IsJSObject()) return OWN_MAP;
106 // If the object is a value, we use the prototype map for the cache.
107 ASSERT(object->IsString() || object->IsSymbol() ||
108 object->IsNumber() || object->IsBoolean());
114 Object* object
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
FieldSerializer.java 70 while (processingClass != Object.class ) {
124 T object; local
126 object = c.newInstance();
128 throw new SerializerException( "Error creating object of type:" + c, e );
134 Object value;
142 field.set(object, value);
144 throw new SerializerException( "Error reading object", e);
147 return object;
150 public void writeObject(ByteBuffer buffer, Object object) throws IOException
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Frame.java 78 public void setObjectValue(Object object) {
83 if (object instanceof int[]) {
84 setInts((int[])object);
85 } else if (object instanceof float[]) {
86 setFloats((float[])object);
87 } else if (object instanceof ByteBuffer) {
88 setData((ByteBuffer)object);
89 } else if (object instanceof Bitmap) {
90 setBitmap((Bitmap)object);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MissingTokenException.cs 46 private readonly object _inserted;
59 public MissingTokenException(int expecting, IIntStream input, object inserted)
63 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames)
68 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames)
73 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MissingTokenException.cs 48 private readonly object _inserted;
64 public MissingTokenException(int expecting, IIntStream input, object inserted)
69 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames)
75 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames)
81 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException)
  /external/chromium_org/android_webview/native/
aw_quota_manager_bridge_impl.h 40 void Init(JNIEnv* env, jobject object);
41 void DeleteAllData(JNIEnv* env, jobject object);
42 void DeleteOrigin(JNIEnv* env, jobject object, jstring origin);
43 void GetOrigins(JNIEnv* env, jobject object, jint callback_id);
45 jobject object,
  /external/chromium_org/content/renderer/pepper/
npapi_glue.h 30 // an object.
35 // object. This will handle all Variant types including POD, strings, and
52 // Helper function to create a PP_Var of type object that contains the given
68 NPObject* object);
74 NPObject* object);
78 // Convenience object for converting a PPAPI call that can throw an exception
93 // The object_var parameter is the object to associate any exception with.
109 // function as the exception parameter. If it is set to non-void, this object
175 PPVarFromNPObject(PepperPluginInstanceImpl* instance, NPObject* object);
209 NPObjectAccessorWithIdentifier(NPObject* object,
219 PluginObject* object() { return object_; } function in class:content::NPObjectAccessorWithIdentifier
    [all...]
  /external/chromium_org/ppapi/thunk/
ppb_browser_font_trusted_thunk.cc 44 return enter.object()->Describe(description, metrics);
57 return enter.object()->DrawTextAt(image_data, text, position, color, clip,
66 return enter.object()->MeasureText(text);
75 return enter.object()->CharacterOffsetForPixel(text, pixel_position);
84 return enter.object()->PixelOffsetForCharacter(text, char_offset);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
api_params.c 971 void vegaSetParameterf(VGHandle object,
976 void *ptr = handle_to_pointer(object);
978 if (object == VG_INVALID_HANDLE || !is_aligned(ptr)) {
987 vegaSetParameteri(object, paramType, floor(value));
998 struct vg_paint *p = handle_to_paint(object);
1025 void vegaSetParameteri(VGHandle object,
1030 void *ptr = handle_to_pointer(object);
1032 if (object == VG_INVALID_HANDLE || !is_aligned(ptr)) {
1043 struct vg_paint *paint = handle_to_paint(object);
1059 struct vg_paint *paint = handle_to_paint(object);
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
gas-parser.c 38 gas_parser_do_parse(yasm_object *object, yasm_preproc *pp,
45 parser_gas.object = object;
59 parser_gas.prev_bc = yasm_section_bcs_first(object->cur_section);
105 yasm_symtab_parser_finalize(object->symtab, 1, errwarns);
  /external/guava/guava/src/com/google/common/collect/
ImmutableEnumSet.java 39 * object that no one else has a reference to, allowing us to guarantee
61 @Override public boolean contains(Object object) {
62 return delegate.contains(object);
73 @Override public Object[] toArray() {
81 @Override public boolean equals(Object object) {
82 return object == this || delegate.equals(object);
97 @Override Object writeReplace()
    [all...]
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_joints_motors_RotationalLimitMotor.cpp 49 (JNIEnv *env, jobject object, jlong motorId) {
53 env->ThrowNew(newExc, "The native object does not exist.");
65 (JNIEnv *env, jobject object, jlong motorId, jfloat value) {
69 env->ThrowNew(newExc, "The native object does not exist.");
81 (JNIEnv *env, jobject object, jlong motorId) {
85 env->ThrowNew(newExc, "The native object does not exist.");
97 (JNIEnv *env, jobject object, jlong motorId, jfloat value) {
101 env->ThrowNew(newExc, "The native object does not exist.");
113 (JNIEnv *env, jobject object, jlong motorId) {
117 env->ThrowNew(newExc, "The native object does not exist.")
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
api_params.c 971 void vegaSetParameterf(VGHandle object,
976 void *ptr = handle_to_pointer(object);
978 if (object == VG_INVALID_HANDLE || !is_aligned(ptr)) {
987 vegaSetParameteri(object, paramType, floor(value));
998 struct vg_paint *p = handle_to_paint(object);
1025 void vegaSetParameteri(VGHandle object,
1030 void *ptr = handle_to_pointer(object);
1032 if (object == VG_INVALID_HANDLE || !is_aligned(ptr)) {
1043 struct vg_paint *paint = handle_to_paint(object);
1059 struct vg_paint *paint = handle_to_paint(object);
    [all...]
  /frameworks/base/core/java/android/print/
PrinterId.java 84 public boolean equals(Object object) {
85 if (this == object) {
88 if (object == null) {
91 if (getClass() != object.getClass()) {
94 PrinterId other = (PrinterId) object;
  /libcore/luni/src/main/java/java/text/
Format.java 38 * object may be associated with the pattern "$#,##0.00;($#,##0.00)", which is a
51 * containing multiple values. For instance, a {@code MessageFormat} object
75 public Object clone() {
84 * Formats the specified object using the rules of this format.
86 * @param object
87 * the object to format.
90 * if the object cannot be formatted by this format.
92 public final String format(Object object) {
93 return format(object, new StringBuffer(), new FieldPosition(0)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
Bastion.py 3 A bastion (for another object -- the 'original') is an object that has
7 safe interface to an object implemented in unrestricted mode.
24 the repr() of the original object. This is precomputed when the
43 the same signature (a get() function and a name for the object).
53 name - a human-readable name for the original object
54 (suggestion: use repr(object))
87 def Bastion(object, filter = lambda name: name[:1] != '_',
89 """Create a bastion for an object, using an optional filter.
95 object - the original objec
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Bastion.py 3 A bastion (for another object -- the 'original') is an object that has
7 safe interface to an object implemented in unrestricted mode.
24 the repr() of the original object. This is precomputed when the
43 the same signature (a get() function and a name for the object).
53 name - a human-readable name for the original object
54 (suggestion: use repr(object))
87 def Bastion(object, filter = lambda name: name[:1] != '_',
89 """Create a bastion for an object, using an optional filter.
95 object - the original objec
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderRegion.cpp 185 // RenderFlowThread is a self painting layer (being a positioned object) who is painting its children, the collected objects.
186 // Since we do not want to paint the flow thread content multiple times (for each painting phase of the region object),
382 // Initialize the flow thread reference and create the flow thread object if needed.
478 RenderObject* object = node->renderer(); local
481 if (!flowThread()->objectInFlowRegion(object, this))
484 // If the object has style in region, use that instead of computing a new one.
485 RenderObjectRegionStyleMap::iterator it = m_renderObjectRegionStyle.find(object);
493 objectStyleInRegion = computeStyleInRegion(object);
496 setObjectStyleInRegion(object, objectStyleInRegion, objectRegionStyleCached);
498 computeChildrenStyleInRegion(object);
509 RenderObject* object = const_cast<RenderObject*>(iter->key); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
IDBBindingUtilitiesTest.cpp 108 v8::Local<v8::Object> object = v8::Object::New(); local
109 object->Set(v8::String::NewFromUtf8(v8::Isolate::GetCurrent(), "foo"), v8::String::NewFromUtf8(v8::Isolate::GetCurrent(), "zoo"));
111 ScriptValue scriptValue(object, v8::Isolate::GetCurrent());
119 v8::Local<v8::Object> object = v8::Object::New(); local
120 object->Set(v8::String::NewFromUtf8(v8::Isolate::GetCurrent(), "foo"), v8::Number::New(456));
122 ScriptValue scriptValue(object, v8::Isolate::GetCurrent())
130 v8::Local<v8::Object> object = v8::Object::New(); local
146 v8::Local<v8::Object> object = v8::Object::New(); local
158 v8::Local<v8::Object> object = v8::Object::New(); local
    [all...]
  /external/chromium_org/third_party/opus/src/
depcomp 44 object Object file output by 'PROGRAMS ARGS'.
66 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
67 echo "depcomp: Variables source, object and depmode must be set" 1>&2
72 depfile=${depfile-`echo "$object" |
129 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
166 echo "$object : \\" > "$depfile"
181 ## to the object. Take care to not repeat it in the output.
184 sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
211 echo "$object : \\" > "$depfile
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/unittest/
system_stub.py 16 class Override(object):
52 class AdbCommandsModuleStub(object):
55 class AdbCommandsStub(object):
98 class CloudStorageModuleStub(object):
119 class OpenFunctionStub(object):
120 class FileStub(object):
143 class OsModuleStub(object):
144 class OsPathModuleStub(object):
213 class PerfControlModuleStub(object):
214 class PerfControlStub(object)
    [all...]
  /frameworks/base/media/jni/mediaeditor/
VideoEditorClasses.cpp 1437 jobject object = NULL; local
1541 jobject object = NULL; local
3000 jobject object = NULL; local
    [all...]
  /external/genext2fs/
depcomp 45 object Object file output by `PROGRAMS ARGS'.
61 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
62 echo "depcomp: Variables source, object and depmode must be set" 1>&2
67 depfile=${depfile-`echo "$object" |
94 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
125 echo "$object : \\" > "$depfile"
169 echo "$object : \\" > "$depfile"
201 # current directory. Also, the AIX compiler puts `$object:' at the
202 # start of each line; $object doesn't have directory information
    [all...]
  /external/grub/
depcomp 45 object Object file output by `PROGRAMS ARGS'.
61 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
62 echo "depcomp: Variables source, object and depmode must be set" 1>&2
67 depfile=${depfile-`echo "$object" |
94 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
125 echo "$object : \\" > "$depfile"
169 echo "$object : \\" > "$depfile"
201 # current directory. Also, the AIX compiler puts `$object:' at the
202 # start of each line; $object doesn't have directory information
    [all...]
  /external/libogg/
depcomp 45 object Object file output by `PROGRAMS ARGS'.
61 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
62 echo "depcomp: Variables source, object and depmode must be set" 1>&2
67 depfile=${depfile-`echo "$object" |
94 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
125 echo "$object : \\" > "$depfile"
169 echo "$object : \\" > "$depfile"
201 # current directory. Also, the AIX compiler puts `$object:' at the
202 # start of each line; $object doesn't have directory information
    [all...]

Completed in 1027 milliseconds

<<21222324252627282930>>