HomeSort by relevance Sort by last modified time
    Searched defs:OBJ (Results 1 - 25 of 26) sorted by null

1 2

  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
makefile 3 OBJ=test.o rexpr.o
6 test: $(OBJ) $(SRC)
7 cc -g -o texpr $(OBJ)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/
makefile 5 OBJ = astlib.o sstack.o sorlist.o sintstack.o
9 libs : $(OBJ) $(SRC)
  /external/autotest/client/profilers/powertop/src/po/
Makefile 2 OBJ= $(SRC:.po=.mo)
5 translations: $(OBJ)
15 install: $(OBJ) $(INST)
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/genmk/
makefile 7 OBJ=genmk.o
16 genmk: $(OBJ) $(SRC) ../../h/pcctscfg.h
17 $(CC) -o genmk $(OBJ)
  /libcore/ojluni/src/main/native/
Thread.c 36 #define OBJ "Ljava/lang/Object;"
51 {"holdsLock", "(" OBJ ")Z", (void *)&JVM_HoldsLock},
56 #undef OBJ
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
makefile 54 #OBJ_EXT = obj
56 #antlr.exe: antlr.obj scan.obj err.obj bits.obj build.obj fset2.obj \
57 # fset.obj gen.obj globals.obj hash.obj lex.obj main.obj \
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
makefile 28 #OBJ_EXT = obj
30 #dlg.exe : dlg_p.obj dlg_a.obj main.obj err.obj set.obj support.obj \
31 # output.obj relabel.obj automata.obj
    [all...]
  /external/xmlrpcpp/
Makefile 20 OBJ = $(SRC)/XmlRpcClient.o $(SRC)/XmlRpcDispatch.o \
27 $(LIB): $(OBJ)
28 $(AR) $(ARFLAGS) $(LIB) $(OBJ)
  /external/lz4/contrib/djgpp/
Makefile 25 OBJ = $(SRC:.c=.o)
69 $(EXE): $(LOBJ) $(OBJ)
70 $(LD) $(LDFLAGS) $(LOBJ) $(OBJ) -o $(EDIR)/$@
73 rm -f $(OBJ) $(EXE) $(LOBJ) $(LIB) *.tmp $(SDEPS) $(LSDEPS) $(TSDEPS)
112 @echo "OBJ="$(OBJ)
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadLocalTest.java 116 final Object OBJ = new Object();
118 l.set(OBJ);
119 assertTrue("ThreadLocal's initial value is " + OBJ, l.get() == OBJ);
  /external/python/cpython2/PC/os2emx/
Makefile 118 O= .obj
424 OBJ.LIB= $(addprefix $(OUT),$(notdir $(SRC.LIB:.c=$O)))
439 OBJ.PGEN= $(addprefix $(OUT),$(notdir $(SRC.PGEN:.c=$O)))
540 $(PYTHON.LIB): $(OBJ.LIB)
585 $(PGEN.EXE): $(OBJ.PGEN) $(OUT)pgen.def
  /external/v8/src/
string-stream.h 72 FmtElm(Object* value) : FmtElm(OBJ) { // NOLINT
84 enum Type { INT, DOUBLE, C_STR, LC_STR, OBJ, HANDLE, POINTER };
168 void PrintObject(Object* obj);
  /frameworks/support/slices/core/src/main/java/androidx/slice/
SliceItem.java 72 private static final String OBJ = "obj";
97 public SliceItem(Object obj, @SliceType String format, String subType,
102 mObj = obj;
109 public SliceItem(Object obj, @SliceType String format, String subType,
111 this (obj, format, subType, hints.toArray(new String[hints.size()]));
328 private void writeObj(Bundle dest, Object obj, String type) {
331 dest.putBundle(OBJ, ((IconCompat) obj).toBundle());
334 dest.putParcelable(OBJ, (Parcelable) obj)
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
MessageTest.java 48 final Object OBJ = new Object();
86 assertNull(message.obj);
94 Message message = Message.obtain(mHandler, WHAT, ARG1, ARG2, OBJ);
101 assertEquals(message.obj, expected.obj);
122 Message expected = Message.obtain(mHandler, WHAT, OBJ);
125 assertEquals(OBJ, expected.obj);
137 Message expected = Message.obtain(mHandler, WHAT, ARG1, ARG2, OBJ);
142 assertEquals(OBJ, expected.obj)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pickle.py 134 OBJ = 'o' # build & push class instance
220 def dump(self, obj):
221 """Write a pickled representation of obj to the open file."""
224 self.save(obj)
227 def memoize(self, obj):
244 assert id(obj) not in self.memo
247 self.memo[id(obj)] = memo_len, obj
269 def save(self, obj):
271 pid = self.persistent_id(obj)
    [all...]
  /external/python/cpython2/Lib/
pickle.py 134 OBJ = 'o' # build & push class instance
220 def dump(self, obj):
221 """Write a pickled representation of obj to the open file."""
224 self.save(obj)
227 def memoize(self, obj):
244 assert id(obj) not in self.memo
247 self.memo[id(obj)] = memo_len, obj
269 def save(self, obj):
271 pid = self.persistent_id(obj)
    [all...]
  /external/python/cpython3/Lib/
pickle.py 134 OBJ = b'o' # build & push class instance
262 def _getattribute(obj, name):
266 .format(name, obj))
268 parent = obj
269 obj = getattr(obj, subpath)
272 .format(name, obj))
273 return obj, parent
275 def whichmodule(obj, name):
277 module_name = getattr(obj, '__module__', None
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pickle.py 134 OBJ = 'o' # build & push class instance
220 def dump(self, obj):
221 """Write a pickled representation of obj to the open file."""
224 self.save(obj)
227 def memoize(self, obj):
244 assert id(obj) not in self.memo
247 self.memo[id(obj)] = memo_len, obj
269 def save(self, obj):
271 pid = self.persistent_id(obj)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pickle.py 134 OBJ = 'o' # build & push class instance
220 def dump(self, obj):
221 """Write a pickled representation of obj to the open file."""
224 self.save(obj)
227 def memoize(self, obj):
244 assert id(obj) not in self.memo
247 self.memo[id(obj)] = memo_len, obj
269 def save(self, obj):
271 pid = self.persistent_id(obj)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pickle.py 134 OBJ = 'o' # build & push class instance
220 def dump(self, obj):
221 """Write a pickled representation of obj to the open file."""
224 self.save(obj)
227 def memoize(self, obj):
244 assert id(obj) not in self.memo
247 self.memo[id(obj)] = memo_len, obj
269 def save(self, obj):
271 pid = self.persistent_id(obj)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pickle.py 134 OBJ = 'o' # build & push class instance
220 def dump(self, obj):
221 """Write a pickled representation of obj to the open file."""
224 self.save(obj)
227 def memoize(self, obj):
244 assert id(obj) not in self.memo
247 self.memo[id(obj)] = memo_len, obj
269 def save(self, obj):
271 pid = self.persistent_id(obj)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cPickle.c 65 #define OBJ 'o'
946 fast_save_enter(Picklerobject *self, PyObject *obj)
958 key = PyLong_FromVoidPtr(obj);
966 Py_TYPE(obj)->tp_name, obj);
981 fast_save_leave(Picklerobject *self, PyObject *obj)
984 PyObject *key = PyLong_FromVoidPtr(obj);
1623 PyObject *obj = NULL; local
2043 static char inst = INST, obj = OBJ, build = BUILD; local
3923 PyObject *class, *tup, *obj=0; local
3944 PyObject *tup, *class=0, *obj=0, *module_name, *class_name; local
3985 PyObject *obj; local
4291 PyObject *obj; \/* the object to push *\/ local
5043 PyObject *obj; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cPickle.c 65 #define OBJ 'o'
915 fast_save_enter(Picklerobject *self, PyObject *obj)
927 key = PyLong_FromVoidPtr(obj);
935 Py_TYPE(obj)->tp_name, obj);
950 fast_save_leave(Picklerobject *self, PyObject *obj)
953 PyObject *key = PyLong_FromVoidPtr(obj);
1592 PyObject *obj = NULL; local
2012 static char inst = INST, obj = OBJ, build = BUILD; local
3888 PyObject *class, *tup, *obj=0; local
3909 PyObject *tup, *class=0, *obj=0, *module_name, *class_name; local
3950 PyObject *obj; local
4256 PyObject *obj; \/* the object to push *\/ local
5008 PyObject *obj; local
    [all...]
  /external/python/cpython2/Modules/
cPickle.c 65 #define OBJ 'o'
944 fast_save_enter(Picklerobject *self, PyObject *obj)
956 key = PyLong_FromVoidPtr(obj);
964 Py_TYPE(obj)->tp_name, obj);
979 fast_save_leave(Picklerobject *self, PyObject *obj)
982 PyObject *key = PyLong_FromVoidPtr(obj);
1621 PyObject *obj = NULL; local
2041 static char inst = INST, obj = OBJ, build = BUILD; local
3930 PyObject *class, *tup, *obj=0; local
3955 PyObject *tup, *class=0, *obj=0, *module_name, *class_name; local
3999 PyObject *obj; local
4305 PyObject *obj; \/* the object to push *\/ local
5073 PyObject *obj; local
    [all...]
  /external/python/cpython3/Modules/
_pickle.c 57 OBJ = 'o',
345 _Pickle_FastCall(PyObject *func, PyObject *obj)
349 result = _PyObject_CallArg1(func, obj);
350 Py_DECREF(obj);
474 Pdata_push(Pdata *self, PyObject *obj)
479 self->data[Py_SIZE(self)++] = obj;
2411 PyObject *obj = NULL; local
2646 PyObject *obj = NULL; local
4874 PyObject *obj; local
4921 PyObject *obj; local
5189 PyObject *cls, *args, *obj = NULL; local
5220 PyObject *obj = NULL; local
5276 PyObject *obj; local
5326 PyObject *obj; local
5654 PyObject *obj; \/* the object to push *\/ local
6148 PyObject *obj = NULL; local
    [all...]

Completed in 1211 milliseconds

1 2